From c2ecfaddcc3a47ee60b9b4f9642740a60fe7bb57 Mon Sep 17 00:00:00 2001 From: rleins <> Date: Fri, 19 Dec 2014 23:04:55 +0000 Subject: [PATCH] Sonos: Deleted unused libs git-svn-id: https://svn.fhem.de/fhem/trunk@7269 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/lib/Encode/transliterate_win1251.pm | 55 - fhem/FHEM/lib/Normalize/Text/Music_Fields.pm | 1217 ----- .../Normalize/Text/Music_Fields/A_Dvor_k.comp | 1861 -------- .../Text/Music_Fields/A_Schnittke.comp | 2496 ---------- .../Text/Music_Fields/D_Shostakovich.comp | 2569 ---------- .../Text/Music_Fields/G_Gershwin.comp | 906 ---- .../Normalize/Text/Music_Fields/J_Brahms.comp | 868 ---- .../Text/Music_Fields/L_van_Beethoven.comp | 4227 ----------------- .../Text/Music_Fields/Music_Fields-rus.lst | 218 - 9 files changed, 14417 deletions(-) delete mode 100644 fhem/FHEM/lib/Encode/transliterate_win1251.pm delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields.pm delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Dvor_k.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Schnittke.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/D_Shostakovich.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/G_Gershwin.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/J_Brahms.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/L_van_Beethoven.comp delete mode 100644 fhem/FHEM/lib/Normalize/Text/Music_Fields/Music_Fields-rus.lst diff --git a/fhem/FHEM/lib/Encode/transliterate_win1251.pm b/fhem/FHEM/lib/Encode/transliterate_win1251.pm deleted file mode 100644 index 82ff0af08..000000000 --- a/fhem/FHEM/lib/Encode/transliterate_win1251.pm +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/perl -w -$VERSION = '1.00'; -use strict; -package Encode::transliterate_win1251; - -my $debug; - -# Assume that FROM are 1-char, and have no REx charclass special characters -my $uc = "Я ВЕРТЫУИОПШ Щ АСДФГХЙКЛЗЬ ЦЖ БНМЭЮ Ч ЁЪ"; -my $ul = "YAVERTYUIOPSHSCHASDFGHJKLZ''CZHBNMEYUCHE'"; - -# titlecase and random alternative translations -my $tc = "Я Ш Щ Ж Ю Ю Ю ю Ч Ч Ч ч Я Я я Я Я я Щ Щ щ Ё Ё ё "; -my $tl = "YaShSchZhYuIUIuiuChTchTCHtchIAIaiaJAJajaTCHTchtchJOJojo"; - -# Assume that 1-char parts of TO have no REx charclass special characters - -my $lc = "я вертыуиопш щ асдфгхйклзьцж бнмэю ч ёъ№"; -my $ll = "yavertyuiopshschasdfghjklz'czhbnmeyuche'N"; - -sub prepare_translation { - my ($from, $to) = @_; - die "Mismatch of length:\nfrom: '$from'\nto: '$to'\n" unless length($from) == length $to; - my @from = ($from =~ /(\S\s*)/g); - my (%hash_from, %hash_to); - for my $chunk (@from) { - my $chunk_to = substr($to, 0, length $chunk); - substr($to, 0, length $chunk) = ""; - $chunk =~ s/\s+$//; - $hash_from{$chunk} = $chunk_to; - # Prefer earlier definition for reverse translation - $hash_to{$chunk_to} = $chunk unless exists $hash_to{$chunk_to}; - } - (\%hash_from, \%hash_to) -} - -sub make_translator { - my ($hash) = @_; - die unless keys %$hash; - my @keys2 = grep length > 1, keys %$hash; - my $keys1 = join '', grep length == 1, keys %$hash; - my $rex = ''; - $rex .= (join('|', sort {length $b <=> length $a} @keys2) . '|') - if @keys2; - $rex .= "[\Q$keys1\E]" if length $keys1; - warn "rex = '$rex'\n" if $debug; - eval "sub {s/($rex)/\$hash->{\$1}/g}" or die; -} - -sub cyr_table {"$uc$lc$tc"} -sub lat_table {"$ul$ll$tl"} - -#my $to = make_translator( (prepare_translation("$uc$lc$tc", "$ul$ll$tl"))[0] ); - -1; diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields.pm b/fhem/FHEM/lib/Normalize/Text/Music_Fields.pm deleted file mode 100644 index b042b2e1a..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields.pm +++ /dev/null @@ -1,1217 +0,0 @@ -package Normalize::Text::Music_Fields; # Music_Normalize_Fields -$VERSION = '0.02'; -use strict; -use Config; -#use utf8; # Needed for 5.005... - -my %tr; -my %short; - -sub translate_dots ($) { - my $a = shift; - $a =~ s/^\s+//; - $a =~ s/\s+$//; - $a =~ s/\s+/ /g; - $a =~ s/\b(\w)\.\s*/$1 /g; - $a =~ s/(\w\.)\s*/$1 /g; - lc $a -} - -sub translate_tr ($) { - my $a = shift; - $a = $tr{translate_dots $a} or return; - return $a; -} - -sub strip_years ($) { # strip dates - my ($a) = (shift); - my @rest; - return $a unless $a =~ s/\s+((?:\([-\d,]+\)(\s+|$))+)$//; - @rest = split /\s+/, $1; - return $a, @rest; -} - -sub strip_duplicate_dates { # Remove $d[0] if it matches $d_r - my ($d_r, @d) = @_; - return unless @d; - $d_r = substr $d_r, 1, length($d_r) - 2; # Parens - my $dd = substr $d[0], 1, length($d[0]) - 2; # Parens - my @dates_r = split /,|--|-(?=\d\d\d\d)/, $d_r; - my @dates = split /,|--|-(?=\d\d\d\d)/, $dd; - for my $d (@dates) { - return @d unless grep /^\Q$d\E(-|$)/, @dates_r; - } - return @d[1..$#d]; -} - -sub __split_person ($) { - # Non-conflicting ANDs (0x438 is cyrillic "i", word is cyrillic "per") - split /([,;:]\s+(?:\x{043f}\x{0435}\x{0440}\.\s+)?|\s+(?:[-&\x{0438}ei]|and|et)\s+|\x00)/, shift; -} - -sub _translate_person ($$$); -sub _translate_person ($$$) { - my ($self, $aa, $with_year) = (shift, shift, shift); - my $fail = ($with_year & 2); - $with_year &= 1; - my $ini_a = $aa; - $aa = $aa->[0] if ref $aa; # [value, handler] - $aa =~ s/\s+$//; - load_lists() unless %tr; - # Try early fixing: - my $a1 = translate_tr $aa; - return ref $ini_a ? [$a1, $ini_a->[1]] : $a1 if $a1 and $with_year; - my ($a, @date) = strip_years($aa); - my $tr_a = translate_tr $a; - if (not defined $tr_a and $a =~ /(.*?)\s*,\s*(.*)/s) { # Schumann, Robert - $tr_a = translate_tr "$2 $1"; - } - if (not defined $tr_a) { - return if $fail; - my $ini = $aa; - # Normalize "translated" to "transl." - # echo "ЇҐаҐў®¤" | perl -wnle 'BEGIN{binmode STDIN, q(encoding(cp866))}printf qq(\\x{%04x}), ord $_ for split //' - $aa =~ s/(\s\x{043f}\x{0435}\x{0440})\x{0435}\x{0432}\x{043e}\x{0434}\x{0435}?(\s)/$1.$2/g; - $aa =~ s/(\s+)\x{0432}\s+(?=\x{043f}\x{0435}\x{0440}\.)/;$1/g; # v per. ==> , per. - $aa =~ s/[,;.]\s+(\x{043f}\x{0435}\x{0440}\.)\s*/; $1 /g; # normalize space, punct - $aa =~ s/\b(transl)ated\b/$1./g; - - my @parts = __split_person $aa; - if (@parts <= 1) { # At least normalize spacing: - # Add dots after initials - $aa =~ s/\b(\w)\s+(?=(\w))/ - ($1 ne lc $1 and $2 ne lc $2) ? "$1." : "$1 " /eg; - # Separate initials by spaces unless in a group of initials - $aa =~ s/\b(\w\.)(?!$|[-\s]|\w\.)/$1 /g; - return ref $ini_a ? [$aa, $ini_a->[1]] : $aa; - } - for my $i (0..$#parts) { - next if $i % 2; # Separator - my $val = _translate_person($self, $parts[$i], $with_year | 2); # fail - # Deal with cases (currently, in Russian only, after "transl.") - if (not defined $val and $i - and $parts[$i-1] =~ /^;\s+\x{043f}\x{0435}\x{0440}\.\s+$/ # per - and $parts[$i] =~ /(.*)\x{0430}$/s) { - $val = _translate_person($self, "$1", $with_year | 2); # fail - } - $val ||= _translate_person($self, $parts[$i], $with_year); # cosmetic too - $parts[$i] = $val if defined $val; - } - $tr_a = join '', @parts; - return $ini_a if $tr_a eq $ini; - @date = (); # Already taken into account... - } - my ($short, @date_r) = strip_years($tr_a); # Real date - @date = strip_duplicate_dates($date_r[0], @date) if @date_r == 1 and @date; - $tr_a = $short unless $with_year; - $a = join ' ', $tr_a, @date; - return ref $ini_a ? [$a, $ini_a->[1]] : $a; -} - -sub normalize_person ($$) { - return _translate_person(shift, shift, 1); -} - -for my $field (qw(artist artist_collection)) { - no strict 'refs'; - *{"normalize_$field"} = \&normalize_person; -} - -sub short_person ($$); -sub short_person ($$) { - my ($self, $a) = (shift, shift); - my $ini_a = $a; - $a = $a->[0] if ref $a; # [value, handler] - $a = _translate_person($self, $a, 0); # Normalize, no dates of life - $a =~ s/\s+$//; - ($a, my @date) = strip_years($a); - my @parts; - if (exists $short{$a}) { - $a = $short{$a}; - } elsif (@parts = __split_person $a and @parts > 1) { - for my $i (0..$#parts) { - next if $i % 2; # Separator - $parts[$i] = short_person($self, $parts[$i]); - } - $a = join '', @parts; - } else { - # Drop years of life - shift @date if @date and $date[0] =~ /^\(\d{4}-[-\d,]*\d{4,}[-\d,]*\)$/; - # Add dots after initials - $a =~ s/\b(\w)\s+(?=(\w))/ - ($1 ne lc $1 and $2 ne lc $2) ? "$1." : "$1 " /eg; - # Separate initials by spaces unless in a group of initials - $a =~ s/\b(\w\.)(?!$|[-\s]|\w\.)/$1 /g; - my @a = split /\s+/, $a; - # Skip shorting if there are strange non upcased parts (e.g., "-") or '()') - my @check = @a; - my $von = (@a > 2 and $a[-2] =~ /^[a-z]+$/); - splice @check, $#a - 1, 1 if $von; - # Ignore mid parts (skip if there are non upcased parts (e.g., "-") or '()') - unless (grep lc eq $_, @check or @a <= 1 or $a =~ /\(|[,;]\s/) { - my $i = substr($a[0], 0, 1); - $a[0] = "$i." if $a[0] =~ /^\w\w/ and lc($i) ne $i; - # Keep "from" in L. van Beethoven, M. di Falla, I. von Held, J. du Pre - @a = @a[0,($von ? -2 : ()),-1]; - } - $a = join ' ', @a; - } - $a = join ' ', $a, @date; - return ref $ini_a ? [$a, $ini_a->[1]] : $a; -} - -my %comp; - -sub normalize_file_lines ($$) { # Normalizing speeds up load_composer() - my ($self, $fn) = @_; - open my $f, '<', $fn or die "Can't open file $fn for read"; - local $_; - print "# normalized\n"; - while (<$f>) { - next if /^#\s*normalized\s*$/; - chomp; - $_ = normalize_piece($self, $_) unless /^\s*#/; - print "$_\n"; - } - close $f or die "Can't close file $fn for read"; -} - -sub _significant ($$$) { # Try to extract "actual name" of the piece - my ($tbl, $l, $r) = (shift, shift, shift); - my ($pre, $opus); - if ($tbl->{no_opus_no}) { # Remove year-like comment - ($pre) = ($l =~ /^(.*\S)\s*\(\d{4}\b[^()]*\)$/s); - } else { - ($pre, $opus) = ($l =~ /$r/); - } - $pre = $l unless $pre; - my ($significant) = ($pre =~ /^(.*?\bNo[.]?\s*\d+)/is); # Up to No. NN - ($significant) = ($pre =~ /^(.*?);/s) unless $significant; - ($significant) = $pre unless $significant; - (lc $significant, $opus); -} - -my $def_opus_rx = qr/\b(?:Op(?:us\b|\.)|WoO)\s*\d+[a-d]?(?:[.,;\s]\s*No\.\s*\d+(?:\.\d+)*)?/; - -sub _read_composer_file ($$*$$) { - my($self, $f, $fh, $tbl, $aka) = (shift,shift,shift,shift,shift); - my($normalized, $l, @works, %aka, $opened); - my $opus_rx = $tbl->{opus_rx} || $def_opus_rx; - my $opus_pref = $tbl->{opus_prefix} || 'Op.'; - local $/ = "\n"; # allow customization - if (defined $fh) { - $f |= "composer's file" . (eval {' for ' . $self->name_for_field_normalization} || ''); - } else { - open COMP, "< $f" or die "Can't read $f: $!"; - $fh = \*COMP; - $f = "`$f'"; - $opened = 1; - } - while (defined ($l = <$fh>)) { - next if $l =~ /^\s*(?:##|$)/; - if ($l =~ /^#\s*normalized\s*$/) { - $normalized++; # Very significant optimization (unless mail-header) - } elsif ($l =~ /^#\s*opus_rex\s(.*?)\s*$/) { - $opus_rx = $tbl->{opus_rx} = qr/$1/; - } elsif ($l =~ /^#\s*dup_opus_rex\s(.*?)\s*$/) { - $tbl->{dup_opus_rx} = qr/$1/; - } elsif ($l =~ /^#\s*opus_prefix\s(.*?)\s*$/) { - $opus_pref = $tbl->{opus_prefix} = $1; - } elsif ($l =~ /^#\s*no_opus_no\s*$/) { - $tbl->{no_opus_no} = 1; - } elsif ($l =~ /^#\s*opus_dup\s+(.*?)\s*$/) { - $tbl->{dup_opus}{lc $1} = 1; - } elsif ($l =~ /^#\s*prev_aka\s+(.*?)\s*$/) { - $aka->{$1} = $works[-1]; # recognize also alternative names - } elsif ($l =~ /^#\s*format\s*=\s*(line|mail-header)\s*$/) { - $/ = ($1 eq 'line' ? "\n" : ''); - } elsif ($l =~ /^#[^#]/) { - warn "Unrecognized line of $f: $l" - } elsif ($l !~ /^##/) { # Recursive call to ourselves... - if ($normalized) { - $l =~ s/\s*$//; # chomp... - } elsif ($/) { - $l = normalize_piece($self, $l); - } else { - $l = normalize_piece_mail_header($self, $l, $opus_rx, $opus_pref); - } - push @works, $l; - } - } - not $opened or close $fh or die "Error reading $f: $!"; - @works; -} - -sub read_composer_file ($$;*) { - my($self, $f, $fh) = (shift,shift,shift); - $self = prepare_tag_object_comp($self) unless ref $self; - _read_composer_file($self, $f, $fh,{},{}); -} - -my @path; -@path = ("$ENV{HOME}/.music_fields") - if defined $ENV{HOME} and -d "$ENV{HOME}/.music_fields"; -push @path, '-'; -@path = split /\Q$Config{path_sep}/, $ENV{MUSIC_FIELDS_PATH} - if defined $ENV{MUSIC_FIELDS_PATH}; - -sub set_path { - @path = @_; -} - -(my $myself = __PACKAGE__) =~ s,::,/,g; # 'Normalize/Text/Music_Fields.pm' -my @f = $INC{"$myself.pm"}; -warn("panic: can't find myself"), @f = () unless -r $f[0]; -s(\.pm$)()i or (@f=(), warn "panic: misformed myself") for @f; - -sub get_path () { - map +($_ eq '-' ? @f : $_), @path; -} - -sub load_composer ($$) { - my ($self, $c) = @_; - eval {$c = $self->shorten_person($c)}; - my $ini = $c; - return $comp{$ini} if exists $comp{$ini}; - $c =~ s/[^-\w]/_/g; - $c =~ s/__/_/g; - # XXX See Wikipedia "Opus number" for more complete logic - $comp{$ini}{opus_rx} = $def_opus_rx; - $comp{$ini}{opus_prefix} = 'Op.'; - my @dirs = get_path(); - my @files = grep -r $_, map "$_/$c.comp", @dirs or return 0; - my $f = $files[0]; -# $f = $c =~ tr( ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя\x80-\x9F) -# ( !cLXY|S"Ca<__R~o+23'mP.,1o>...?AAAAAAACEEEEIIIIDNOOOOOx0UUUUYpbaaaaaaaceeeeiiiidnooooo:ouuuuyPy_) -# unless -r $f; - #warn "file looked up is $f"; - return $comp{$ini} unless -r $f; - my $tbl = $comp{$ini}; - my ($normalized); - my @works = _read_composer_file($self, $f, undef, $tbl, \my %aka); - return unless @works; - # Piano Trio No. 8 (Arrangement of the Septet; Op. 20)); Op. 38 (1820--1823) - # so can't m/.*?/ - my $r = qr/^(.*($tbl->{opus_rx}))/s; - # Name "as in Wikipedia:Naming conventions (pieces of music)" - my (%opus, %name, %dup, %dupop); - for my $l (@works) { - my ($significant, $opus) = _significant($tbl, $l, $r); - if ($significant and $name{$significant}) { - $dup{$significant}++; - warn "Duplicate name `$significant': <$l> <$name{$significant}>" - if $ENV{MUSIC_DEBUG_TABLE}; - } - $name{$significant} = $l if $significant; - $opus or next; - $opus = lc $opus; - if ($opus{$opus}) { - $dupop{$opus}++; - warn "Duplicate opus number `$opus': <$l> <$opus{$opus}>" - unless $tbl->{dup_opus_rx} and $opus =~ /$tbl->{dup_opus_rx}/ - or $tbl->{dup_opus}{$opus}; - } - $opus{$opus} = $l; - } - delete $name{$_} for keys %dup; - delete $opus{$_} for keys %dupop; - for my $s (keys %aka) { - my ($n) = _significant($tbl, $s, $r); - warn "Duplicate and/or unnecessary A.K.A. name `$s' for <$aka{$s}>" - if $name{$n}; - $name{$n} = $aka{$s}; - $name{"\0$s"} = "\0$n"; # put into values(), see normalize_person() - } - $tbl->{works} = \@works; - $tbl->{opus} = \%opus if %opus; - $tbl->{name} = \%name if %name; - $tbl; -} - -sub translate_signature ($$$$) { # One should be able to override this - shift; - join '', @_; -} -$Normalize::Text::Music_Fields::translate_signature = \&translate_signature; - -my %alteration = (dur => 'major', moll => 'minor'); -my %mod = (is => 'sharp', es => 'flat', s => 'flat', # since Es means Ees - '#' => 'sharp', b => 'flat'); - -# XXXX German ==> English (nontrivial): H ==> B, His ==> B sharp, B ==> B flat -# XXXX Do not touch B (??? Check "Klavier" etc to detect German???) -my %key = (H => 'B'); - -sub normalize_signature ($$$$) { - my ($self, $key, $mod, $alteration) = @_; - $alteration ||= ($key =~ /[A-Z]/) ? ' major' : ' minor'; - $alteration = lc $alteration; - $alteration =~ s/^-?\s*/ /; - $alteration =~ s/(\w+)/ $alteration{$1} || $1 /e; - $mod =~ s/^-?\s*/ / if $mod; # E-flat, Cb - $mod = lc $mod; - $mod =~ s/(\w+|#)/ $mod{$1} || $1 /e; - $key = uc $key; - $key = $key{$key} || $key; - &$Normalize::Text::Music_Fields::translate_signature($self,$key,$mod,$alteration); -} - -my $post_opus_rex = qr/(?:[\-\/](?=\d)|(?:[,;.]?|\s)\s*(?:\bN(?:[or]|(?=\d))\.?|#|\x{2116}\.?))\s*(?=\d)/; - -sub normalize_opus ($$$) { - my ($self, $op, $no) = (shift, shift, shift); - my $have_no = ( $op =~ s/\b(?:[,;.]?|\s)\s*(?=No\.\s*\d+)/, / ); - $no = '' unless defined $no; - # nr12 n12 12 -12 #12 Numero_Sign 12 - but only if $op has no number already! - $no =~ s/^$post_opus_rex/, No. / unless $have_no; - # Now the tricky part: normalize the stuff in unknown format; - # XXXX Now support only "B. NNN" stuff - $op =~ s/^(\w)(\b|(?=\d))\.?\s*/\U$1. /; - "$op$no" -} - -# 1: prefix ("in" etc.), 2: letter, 3: modifier ("b" etc), 4: alteration: minor etc. -my $signature_rex = qr/(\s*(?:\bin\b|[,;.:]|^|\((?:in\s+)?(?=[-a-zA-Z#\s]+\)))\s*)([a-h])(\s*[b#]|(?:\s+|-)(?:flat|sharp)|[ie]s|(?<=e)s|)((?:(?:\s+|-)(?:major|minor|dur|moll))?)\)?(?=\s*[-;":]|$)/i; - -# All these should match in -# mp3info2 -D -a beethoven -t "# 28" "" -# (should give the same results): "wind in C" "tattoo" "WoO 20" -# "sonata in F#" "piano in F#" "op78" "Op. 10-2" "Op. 10, #2" "sonata #22" "WoO 205-1" - -sub find_person ($) { - my $self = shift; - eval {$self->name_for_field_normalization} || eval {$self->composer} - || $self->artist; -} - -# See test_normalize_piece() -sub _normalize_piece ($$$$) { - my ($self, $n, $improve_opus, $by_opus) = (shift, shift, shift, shift); - my $ini_n = $n; - $n = $n->[0] if ref $n; # [value, handler] - return $ini_n unless $n; - $n =~ s/^\s+//; - $n =~ s/\s+$//; - return $ini_n unless $n; - $n =~ s/\s{2,}/ /g; - - # Opus numbers - $n =~ s/\bOp(us\s+(?=\d)|[.\s]\s*|\.?(?=\d))/Op. /gi; # XXXX posth.??? - $n =~ s/\bN(?:[or]|(?=\d))\.?\s*(?=\d)/No. /gi; # nr12 n12 - $n =~ s/(?{opus_rx} || $def_opus_rx; - - # XXXX Is this `?' for good? - $n =~ s/(?<=[^(.,;\s])(\s*[.,;])?\s*\b(?=$opus_rx)/; /gi - if $improve_opus; # punctuation before Op. - - # punctuation between Op. and No (as in Wikipedia for most expanded listings) - # $n =~ s/\b((Op\.|WoO)\s+\d+[a-d]?)(?:[,;.]?|\s)\s*(?=No\.\s*\d+)/$1, /gi; - $n =~ s/($opus_rx)($post_opus_rex\d+)?/ normalize_opus($self, $1, $2) /gie; - - # Tricky part: normalize "In b#"; allow just b# after punctuation too - $n =~ s/$signature_rex/ - ((not $1 or 'i' eq substr($1,0,1)) ? '' : ' ') . "in " - . normalize_signature($self,"$2","$3","$4")/ie; - my $canon; - { - $tbl or last; - # Convert Op. 23-3 to Op. and No -# my ($o, $no) = ($n =~ /\b(Op\.\s+\d+[a-d]?[-\/]\d+[a-d]?)((?:[,;.]?|\s)\s*(?:No\.\s*\d+))?/); -# $n =~ s/\b(Op\.\s+\d+[a-d]?)[-\/](\d+[a-d]?)/$1, No. $2/i -# if $o and not $no and $o !~ /^$opus_rx$/; - $tbl->{works} or last; - # XXX See Wikipedia "Opus number" for more complete logic - my ($opus) = ($n =~ /^.*($opus_rx)/); # at the end (one not in comments!) - if ($opus and $by_opus) { - $canon = $tbl->{opus}{lc $opus} or last; - } else { # $significant: Up to the first "No. NNN.N", or to the first ";" - my ($significant, $pre, $no, $post) = - ($n =~ /^((.*?)\bNo\b[.]?\s*(\d+(?:\.\d+)*))\s*(.*)/is); - ($significant) = ($n =~ /^(.*?);/s) unless $significant; - $significant ||= $n; - $canon = $tbl->{name}{lc $significant}; # Try exact match - if (not $canon) { # Try harder: match word-for-word - my ($ton, $rx_pre, $rx_post) = ('') x 3; - my $nn = $n; - if ($nn =~ s/\b(in\s+[A-H](?:\s+(?:flat|sharp))?\s+(?:minor|major))\b//) { - $ton = $1; - ($significant, $pre, $no, $post) = # Redo with $nn - ($nn =~ /^((.*?)\bNo\b[.]?\s*(\d+(?:\.\d+)*))\s*(.*)/is); - ($significant) = ($nn =~ /^(.*?);/s) unless $significant; - $significant ||= $nn; - $ton = '.*\b' . (quotemeta $ton) . '\b'; - } - $pre = $significant unless defined $pre; # Same with No removed - # my @parts2 = split '\W+', $post; - if ($pre and $pre =~ /\w/) { - $rx_pre = '\b' . join('\b.*\b', split /\W+/, $pre) . '\b'; - } - if ($post and $post =~ /\w/) { - $rx_post = '.*' . join '\b.*\b', split /\W+/, $post; - } - # warn "<$no> <$n> <$nn> <$ton> <$rx_pre> <$rx_post>"; - $no = '.*\bNo\.\s*' . (quotemeta $no) . '\b(?!\.\d)' if $no; - $no = '' unless defined $no; - last unless "$rx_pre$no$ton$rx_post"; - my $sep = $tbl->{no_opus_no} ? '' : '.*;'; - my $rx = qr/$rx_pre$no$ton$rx_post$sep/is; - my @matches = grep /$rx/, values %{$tbl->{name}}; - if (@matches == 1) { - $canon = $matches[0]; - } elsif (!@matches) { - last; - } else { # Many matches; maybe the shortest is substr of the rest? - my ($l, $s, $diff) = 1e100; - $l > length and ($s = $_, $l = length) for @matches; - $s eq substr $_, 0, $l or ($diff = 1, last) for @matches; - last if $diff; - $canon = $s; - } - $canon = $tbl->{name}{$canon} if $canon =~ s/^\0//s; # short name - } - } -# if ($canon) { -# my (%w, %w1); -# for my $w (split /[-.,;\s]+/, $canon) { -# $w{lc $w}++; -# } -# for my $w (split /[-.,;\s]+/, $n) { -# $w1{lc $w}++ unless $w{lc $w}; -# } -# if (%w1) { -# warn "Unknown words in title: `", join("` '", sort keys %w1), "'" -# unless $ENV{MUSIC_TRANSLATE_FIELDS_SKIP_WARNINGS}; -# last -# } -# } - $n = $canon; # XXXX Simple try (need to compare word-for-word) - } - return ref $ini_n ? [$n, $ini_n->[1]] : $n; -} - -sub normalize_piece ($$) { - _normalize_piece(shift, shift, 'improve opus', 'by opus'); -} - -sub opus_parser ($) { - my $tag = shift; - my $c = find_person $tag; - my $tbl = ($c and load_composer($tag, $c)); - my $opus_rx = $tbl->{opus_rx} || $def_opus_rx; - my $opus_pre = $tbl->{opus_prefix} || 'Op.'; - ($opus_rx, $opus_pre, $c) -} - -sub full_opus ($$;$$) { - my ($tag, $short, $opus_rx, $opus_pref) = (shift, shift, shift, shift); - ($opus_rx, $opus_pref) = opus_parser($tag) unless $opus_rx; - - $short = "$opus_pref $short" if $short =~ /^\d/ and not $short =~ /$opus_rx/; - $short =~ s/^($opus_rx)($post_opus_rex\d+)?/ normalize_opus($tag, $1, $2) /gie; - $short -} - -# Currently used Title-* fields: RAW, Opus, Dates, Key, Name, Related-Name, -# Alternative-Name, Punct, Type, Count, For, Type-After-Name, In-Movements -# Related-On, Comment, Related-After, Name-By-First-Row -## [When new added, change also the "merging" logic in merge_info().] -sub normalize_mail_header_line ($$;$$) { - my ($tag, $in, $opus_rx, $opus_pref) = (shift, shift, shift, shift); - my ($t, $v) = $in =~ /^([-\w]+):\s*(.*)$/s or die; - $v = "($v)" if $t eq 'Title-Dates'; - $v = full_opus $tag, $v, $opus_rx, $opus_pref - if $t eq 'Title-Opus' and $v =~ /(^\d|[\-\/])/; - $v = "; $v" if $t eq 'Title-Opus'; - $v = qq("$v") if $t =~ /^Title(-Related)?-Name$/; - $v = qq(["$v"]) if $t =~ /^Title-Name-By-First-Row$/; - $v = qq(; "$v") if $t eq 'Title-Alternative-Name'; - $v =~ s/^(in\s+)?/in /i if $t =~ 'Title-Key'; - $v = "No. $v" if $t eq 'Title-No'; - $v = "for $v" if $t eq 'Title-For'; - $v = "on $v" if $t eq 'Title-Related-On'; - $v = "(lyrics by $v)" if $t eq 'Title-Lyrics-By'; - $v = ", $v" if $t eq 'Title-Type-After-Name'; - $v; -} - -## perl -wple "BEGIN {print q(# format = mail-header)} s/#\s*normalized\s*$//; $_ = qq(Title: $_) unless /^\s*(#|$)/; $_ = qq(\n$_) if $p and not /^##/; $_ .= qq(\n) unless $p = /^##/" Normalize::Text::Music_Fields-G_Gershwin.comp >Music_Fields-G_Gershwin.comp-mail -sub normalize_piece_mail_header ($$;$$) { - my ($tag, $in, $opus_rx, $opus_pref) = (shift, shift, shift, shift); - return $1 if $in =~ /^Title:\s*(.*?)\s*$/m; - my @pieces = map normalize_mail_header_line($tag, $_, $opus_rx, $opus_pref), - grep /^Title-[-\w]+:\s/, split /\n/, $in; - for my $i (1 .. @pieces - 1) { - $pieces[$i-1] .= ' ' - unless $pieces[$i-1] =~ /[\(\[\{]$/ or $pieces[$i] =~ /^[\)\]\}.,;:?!]/; - } - return join '', @pieces; -} - -sub shorten_opus ($$$$) { # $mp3, $str, $pre - my ($tag, $op, $pref, $rx) = (shift, shift, shift, shift); - my ($out, $cut) = ($op, ''); - if ($out =~ s/^\Q$pref\E\s*(?=\d)//) { - if ($out =~ $rx) { # back up if shortened version causes confusion - $out = $op; - } else { - $cut = $pref; - } - } - my $out1 = $out; - if ($out =~ s/(\d[a-i]?),\s+No\.\s*(?=\d)/$1-/) { - my $o = full_opus($tag, $out, $rx, $pref); - if ($op ne $o or $out =~ /^$rx$/) { # check again - $out = $out1; - unless ($out eq $op) { # Extra sanity check - $o = full_opus($tag, $out, $rx, $pref); - $out = $op unless $op eq $o; - } - } - } - $out -} - -my $main_instr = join '|', qw(Piano Violin Viola Cello Horn String Wind Harp - Instrument Clarinet Alto); -my $for_instr = join '|', qw(Mandolin Harpsichord chorus soprano alt bass - basses tenor mezzo-soprano \(mezzo\)soprano baritone contralto hand - soli soloists woodwinds celesta accordion instrumentalists large small - double violoncello clarinet oboe english french bassoon trombone organ - flute voice orchestra military band chamber symphonic symphony electric - percussion double-bass vibraphone pantomime instrumental ensemble tape - timpani bells keyboard guitar triple percussionist counter-tenor alto - counter-alto male female children's boys' mixed a capella cappella choir - basssoli chamberorchestra metronome triangle harmonium trumpet); -my $multiplets = join '|', qw(solo duo duet trio quartet quintet sextet septet octet); -my $pieces = join '|', qw(Serenada Serenade Romance Song Notturno Aria Mass - Allemande Chorus Allegretto Rondo Opera Fantasia Polonaise Contredanse - Prelude Andante Cadenza Bagatelle Cantata Aria Joke Waltz Waltzes Minuet - Lдndler March Rondino Variations Equali Fugue Piece Symphony Sonata - Concerto Sonatina Dance Mignon Fantasy Scherzo Polka Moderato Fragment - Transcription Orchestration Suite Music Reduction Passacaglia Arrangement - accompaniment choral score Operetta Ballet oratorio Choruses Intermezzo - Overture Dialogue Epilogue Aphorism Monologue Gallop Interlude - Re-orchestration Reorchestration Cycle Potpourri Nocturne Capriccio - Mazurek Mazurka Impromptu Humoresque Ballade Ballads Gavotte Requiem - Fanfares Motet Rhapsodies Rhapsody Intermezzi Poem Marches Theme - Melody); - -my $numb_rx = qr/one|two|three|four|five|six|seven|eight|nine/i; - -my $count_rx = qr/ \d+ - | (?:$numb_rx)(?:teen)? - | ten|eleven|twelve|thirteen|fifteen|eighteen - | (?:twenty|thirty|fourty|fifty|sixty|seventy|eighty|ninety) - (?: (?:\s+ | -) (?:$numb_rx) )? /ix; - -#no utf8; # `use' is needed by 5.005 - -my $for_rx = qr/ (?:\s+|^) - for - (?: (?:\s+|(?<=\/)) \(? - (?:and|or|&|vocal\s+soloist|$main_instr|$for_instr|prepared\s+piano|magnetic\s+tape|stage\s+orchestra|jazz\s+ensemble|(?:vocal\s+)?(?:$multiplets)|$count_rx|[23456789]|[12345]\d|GroЯe Fuge) - (?:s|\(s\))? \)? - [,\/]? - )+ - /ix; - -my $piece_rx = qr/ (?: (?:Transcription|Orchestration|Reduction|Arrangement|Suite|Instrumentation|Re-?orchestration) - \s+ of - (?: \s+ (?: $main_instr | the | $count_rx ) )? - \s+ )? # Mod - (?: - (?: $main_instr | Vocal | secular | sacred - | Double | Triple | Easy | Trio | Symphonic ) - \s+ )? # Prefix - (?:Concerto\s+grosso | $multiplets - | Ecossaise? - | (?:[123456]-part\s+)? (?:riddle\s+)? Canon - | (?:sets\s+of\s+)? (?: chorale\s+preludes? | $pieces ) - (?: s? \s* (?:\band\b|&) \s* (?:$pieces))? - | Incidental\s+music | electronic\s+composition - | chorale\s+prelude - | Musical\s+greetings? | choral\s+score | vocal\s+quartet - | (?:heroic|comic|tragic|historical)\s+opera - | scenic\s+composition | symphonic\s+poem ) # Main type - (?: s? \s+ in \s+ (?:$numb_rx) \s+ act )? - /ix; - -#use utf8; # needed by 5.005 - -my $name_rx = qr/ (?: [A-Z]\w* \.? \s+)* [A-Z][-\'\w]+ /x; - -my $rel_piece_rx = # Two Pieces for Erwin Dressel's Opera "Armer Columbus" - qr/ \b - (?:to|from|of|a\s+fter|for|on(?:\s+motives\s+of)?) - (?: - \s+ (?: \s+ music \s+ to)? (?: the | $name_rx\'s ) # Erwin Dressel's - (?: \s+ (?: (?:(?:silent|animated)\s+)? film | spectacle | comedy - | TV[-\s]+production | music\s+to\s+the\s+film - | play | (?:Chamber-?\s*)? opera | stage \s+ revue | novel))?)? \b - /ix; - - -sub strip_known_from_end ($$$) { - my ($tag, $in, $try_key, @tail) = (shift, shift, shift); - # E.g., when the second name is based on the first line of lyrics: - unshift @tail, "Title-Lyrics-By: $1" if $in =~ s/\s+\(lyrics\s+by\s+([^()]+)\)$//; - unshift @tail, "Title-Alternative-Name: $4" - while $in =~ s/^(.*?".*?".*)(\s*[.:,;])?\s+(?(2)|(?=\())(\()?"([^\"]+)"(?(3)\)|)$/$1/; - - # Too much recognized as this if ??? - while ( $in =~ s/ \s* ( $rel_piece_rx | (?!$) [.:,;]? ) - (?: \s+ - ( (\[)? ["\x{201E}]([^\"\x{201C}\x{201E}]+)["\x{201C}] (?(3) \] | ) - | \(["\x{201E}]([^\"\x{201C}\x{201E}]+)["\x{201C}]\) )) $ - //xo ) { - if (length $1 <= 1) { - unshift @tail, "Title-Name: $+"; - } else { - unshift @tail, "Title-Related-Name: $+" if $2; - unshift @tail, "Title-Related-How: $1"; - } - } - unshift @tail, "Title-Related-By: after $1" - if $in =~ s/ \s* after \s+ ($name_rx) $//xo; - - unshift @tail, "Title-Related-On: $+" # Variation and Fugue - if $in =~ s/ ( \b variations? (?: \s+ and \s+ $piece_rx)? (?:$for_rx)? ) - \s+ on \s+ # on a Hungarian melody - (an? \s+ (?: (?: $name_rx | original ) \s+)? $piece_rx - (?: \s+ by \s+ $name_rx)? )$/$1/xio; # XXXX Why $+ needed? - - unshift @tail, "Title-In-Movements: $1" - if $in =~ s/\s*(in\s+(a\s+single|$numb_rx|\d)\s+(movement|episode)s?)$//; - - unshift @tail, "Title-Key: " . normalize_signature($tag, "$2", "$3", "$4") - if $in =~ s/\s*$signature_rex$//; - if ($in =~ s/\s*([.,;:])?\s+No\.\s*(\d+[a-d]?(\.\d+)?)$//i) { - unshift @tail, "Title-No: $2"; - unshift @tail, "Title-Punct: $1" if $1; - } - - unshift @tail, "Title-Key: " . normalize_signature($tag, "$2", "$3", "$4") - if $try_key and $in =~ s/[:;,]?\s*$signature_rex$//; - - my $f; - ($f = $1) =~ s/^\s*for\s*//, unshift @tail, "Title-For: $f" - if $in =~ s/($for_rx)$//io; # XXXX: foo arranged for piano ??? - - if ($in =~ s/\s*([.,;:])?\s+No.\s*(\d+[a-d]?(\.\d+)?)$//i) { # Repeat - unshift @tail, "Title-No: $2"; - unshift @tail, "Title-Punct: $1" if $1; - } - - ($in, @tail); -} - -sub parse_piece ($$$$$$$); # Predeclaration for recursive call without () -sub parse_piece ($$$$$$$) { - my ($after_name, $at_end, $at_start, $tag, $in, $opus_pref, $opus_rx, @tail) - = (shift, shift, shift, shift, shift, shift, shift); - if ($at_end) { - unshift @tail, "Title-Dates: $2" - if $in =~ s/(.*\S)\s*\(([^()]*\b\d{4}\b[^()]*)\)$/$1/ # $1 makes greedy - or $at_end and not $at_start and - $in =~ s/^()\s*\(([^()]*\b\d{4}\b[^()]*)\)$/$1/; # $1 makes greedy - unshift @tail, "Title-Opus: " . shorten_opus($tag, "$2", $opus_pref, $opus_rx) - while $in =~ s/(.*);\s+($opus_rx)\s*$/$1/; - unshift @tail, "Title-Key: " . normalize_signature($tag, "$2", "$3", "$4") - if $in =~ s/\s*$signature_rex$//; - } - ($in, my @r) = strip_known_from_end($tag, $in, 'look for key'); - unshift @tail, @r; - - # Now recognize comment as everything after a key (except, maybe, name) - if ($in =~ /^(.*\S)\s*$signature_rex\s*(?:"([^\"]+)"\s*)?(?:([.,:;])\s)?(.*)$/) { - $in = $1; - my $k = normalize_signature($tag, "$3", "$4", "$5"); - my($n,$rest) = ($6, $8); - if (length $rest) {{ # Localize match - unshift @tail, - 'Title-'. ($8 =~ /^[^\s\w]$/ ? 'Punct' : 'Comment'). ": $rest"; - }} - unshift @tail, "Title-Punct: $7" if $7; - my $alt = ($in =~ /".*"/ ? '-Alternative' : ''); - unshift @tail, "Title$alt-Name: $n" if defined $n and length $n; - unshift @tail, "Title-Key: $k"; - } - - # Now repeat looking for known fields - ($in, @r) = strip_known_from_end($tag, $in, not 'look for key'); - unshift @tail, @r; - - if ($at_start) { # and (@tail or not $at_end) - unshift @tail, "Title-Type: $1" if $in =~ s/^($piece_rx s?)\s*$//iox; - unshift @tail, "Title-Count: $1" , "Title-Type: $2" - if $in =~ s/^($count_rx)\s+( $piece_rx s?)\s*$//iox; - unshift @tail, "Title-Count: $1" - if $in =~ s/^($count_rx)\s*$//iox; - } - if (not @tail and $at_start and $at_end) { - unshift @tail, "Title: $in"; - } elsif (not length $in) { # Do nothing - } elsif ($in =~ /^\s*[-,:;.()\[\]{}]\s*$/) { - unshift @tail, "Title-Punct: $in"; - } elsif ($after_name and $in =~ /^(by|after)((\s+and)?\s+[A-Z][-\'\w]+)+\s*$/) { - unshift @tail, "Title-Related-By: $in"; - } elsif ($after_name and $in =~ /^([-,;:])\s+($piece_rx s?)\s*$/iox) { - unshift @tail, "Title-Type-After-Name: $2"; - } elsif ($at_start and $in =~ /^"([^\"]+)"\s*$/iox) { - unshift @tail, "Title-Name: $1"; - } else { - if ($at_start and $in =~ /^"([^\"]+)"[,.;:]\s*(\S.*?)\s*$/) { - my $name = $1; # Pretend we are at start: - my @rest = parse_piece 'after_name', ($at_end and not @tail), 'start', - $tag, "$2", $opus_pref, $opus_rx; - unshift @rest, "Title-Punct: ," - unless $rest[0] =~ s/^Title-Type:/Title-Type-After-Name:/; - return("Title-Name: $name", @rest, @tail) - unless (join "\n", '', @rest) =~ /\nTitle-RAW:/; - } - unshift @tail, "Title-RAW: $in"; - } - @tail; -} - -my %html_esc = qw( amp & lt < gt > ); - -sub naive_format ($$$) { # Used to find glaring errors in conversion only - my ($tag, $in, $opus_rx, $opus, @out) = (shift,shift,shift); - $in =~ s/^($opus_rx)\n/$1: /; - my @in = split /\s*\n\s*/, $in; - if ($in[0] =~ s/^($opus_rx)[:,]\s*/Title-RAW: /) { - ($opus = $1) =~ s/^Opus\b/Op./; - } - for my $l (@in) { - if ($l =~ s/^Title-Bold:\s*//) { - push @out, qq("$l"); - } elsif ($l =~ s/^Title-Opus:\s*//) { - push @out, '; ' . full_opus $tag, "$l"; - } elsif ($l =~ s/^Title-Dates:\s*//) { - push @out, "($l)"; - } elsif ($l =~ s/^X-\w[-\w]*:\s*//) { # Do nothing - } elsif ($l =~ s/^Title-(RAW|Comment):\s*//) { - push @out, $l if length $l; - } else { - warn "Naive formatting: Unknown line format `$l'" - } - } - if (defined $opus) { - my @year; - @year = $1 if @out and $out[-1] =~ s/\s*(\([^()]*\b\d{4}\b[^()]*\))$//; - pop @out unless @out and length $out[-1]; - push @out, "; $opus", @year; - } - for my $n (1..$#out) { - $out[$n] =~ s/^(?![.,;:])/ /; - } - join '', @out -} - -# Convert from line-format to mail-header format: -## perl -MNormalize::Text::Music_Fields -wlne "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print q(# format = mail-header)} print Normalize::Text::Music_Fields::emit_as_mail_header($tag,$_, 0,$pre)" gershwin Music_Fields-G_Gershwin.comp-line >Music_Fields-G_Gershwin.comp-mail1 -# (inverse transformation:) Dump pieces listed in mail-header format -## perl -MNormalize::Text::Music_Fields -wle "print for Normalize::Text::Music_Fields::read_composer_file(shift, shift)" gershwin Music_Fields-G_Gershwin.comp-mail > o -# -## perl -MNormalize::Text::Music_Fields -00wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print q(# format = mail-header)} print Normalize::Text::Music_Fields::emit_as_mail_header($tag,$_, q(bold,xml,opus),$pre)" shostakovich o-xslt-better >Music_Fields-D_Shostakovich.comp-mail1 -## perl -MNormalize::Text::Music_Fields -wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print qq(# format = mail-header\n)} print Normalize::Text::Music_Fields::emit_as_mail_header($tag,$_, q(opus), $pre)" schnittke o-schnittke-better >Music_Fields-A_Schnittke.comp-mail2 -sub emit_as_mail_header ($$$$) { # $mp3, $str, $has_bold_parts_etc, $pre [R/W] - my ($tag, $in, $preformatted) = (shift, shift, shift); - $in =~ s/#\s*normalized\s*$//; - #return "\n" if $in =~ /^\s*$/; - my @out; - unless ($in =~ /^\s*(#|$)/) { - return "\n\n" if $preformatted and $in =~ /^<\?xml\b/; - my $ini = my $ini_raw = $in; - $in =~ s/&(amp|lt|gt);/$html_esc{$1}/g if $preformatted =~ /\bxml\b/; - $in =~ s/&#x([\da-f]+);/chr hex $1/gei if $preformatted =~ /\bxml\b/; - - my ($opus_rx, $opus_pre) = opus_parser($tag); - - my $have_op = ($in =~ /^$opus_rx:/); - # When $use_only_opus, all the text but Opus-No is ignored; bad for update - my $use_only_opus = ($preformatted =~ /\bonly_by_opus\b/); - $in = _normalize_piece($tag, $in, !$have_op, $use_only_opus) - unless $preformatted =~ /\bbold\b/; - - $ini = naive_format($tag, $in, $opus_rx) if $preformatted =~ /\b(opus|bold)\b/; - my @op; - my $prefix = ($preformatted =~ /\bbold\b/ ? 'Title-RAW: ' : ''); - if ($in =~ s/^($opus_rx)(?:[:,](?:[ \t]+|(?=\n))|\n\s*)/$prefix/) { - my $op = $1; - my $o_pre = $opus_pre; - $o_pre = 'Opus' if $op =~ /^Opus\b/; - @op = "Title-Opus: " . shorten_opus($tag, $op, $o_pre, $opus_rx); - } elsif ($preformatted =~ /\bopus\b/) { - warn "Expected to start with `Opus NUMBER: ': <<<$in>>>"; - } - if ($preformatted =~ /\bbold\b/) { - my @parts = split /\s*\n\s*/, $in; - my ($after_for, $after_name); - for my $n (0..$#parts) { - my $p = $parts[$n]; - $p =~ s/\s+$//; - if ($p =~ s/^Title-Bold:\s*//) { - my $rel = $after_for ? '-Related' : ''; - push @out, "Title$rel-Name: $p"; - $after_for = 0, $after_name = 1; - next; - } elsif ($p =~ /^Title-RAW:\s*$/) { # Do nothing - next; - } elsif ($after_for = - ($n != $#parts and $parts[$n+1] =~ /^Title-Bold:\s*/ - and $parts[$n] =~ /^Title-RAW:\s*/ - # Title-RAW: Two Pieces for Erwin Dressel's Opera "Armer Columbus" - and $p =~ s/ \s* ( $rel_piece_rx \s*$ )//ixo)) { - my $how = $1; - $p =~ s/^Title-RAW:\s+// - or warn "Expected to start with Title-RAW: <<<$p>>>"; - push @out, - parse_piece $after_name,!'end', !$n, $tag, $p, $opus_pre, $opus_rx; - push @out, "Title-Related-How: $how"; - } elsif ($p =~ s/^Title-Opus:\s+// ) { - push @out, 'Title-Opus: ' . full_opus $tag, $p, $opus_rx, $opus_pre; - $after_name = 0; - } elsif ($p =~ /^(Title-(Opus|Comment|Dates)|X-Title-Opus-Alt):\s+/ ) { # Keep intact - push @out, $p; - $after_name = 0; - } else { - $p =~ s/^Title-RAW:\s+// or warn "Expected to start with `Title-RAW: ': <<<$p>>>"; - push @out, parse_piece $after_name, $n==$#parts, !$n, $tag, $p, $opus_pre, $opus_rx; - $after_name = 0; - } - } - } else { - @out = parse_piece 0, 'at_end', 'at_start', $tag, $in, $opus_pre, $opus_rx; - } - my @y; - unshift @y, pop @out while $out[-1] =~ /^Title-Dates:\s/; - push @out, @op, @y; - $out[0] =~ s/^Title:/Title-RAW:/ if @out > 1; # Opus 1: foo - $in = join "\n", @out, ($preformatted =~ /\bbold\b/ ? ('','') : ()); # \n\n - - my $res = normalize_piece_mail_header($tag, $in, $opus_rx, $opus_pre); - warn "# Mismatch:\n# in = $ini\n# out = $res\n#rawin= $ini_raw\n" unless $res eq $ini; - } - $in = "\n$in" if $in !~ /^\s*##/ and $_[0] and not $preformatted =~ /\bbold\b/; - $in .= qq(\n) unless $preformatted =~ /\bbold\b/ or $_[0] = ($in =~ /^##/); - $in; # Caller appends extra \n -} - -## perl -MNormalize::Text::Music_Fields -wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print qq(# format = mail-header\n)} next unless s/^\s*\+\+\s*//; print Normalize::Text::Music_Fields::merge_info($tag,$_, q(opus))" brahms o-brahms-op-no1-xslt -sub merge_info ($$$;$$) { # $update not fully implemented - my ($tag, $in, $preformatted, $soft, $update) = (shift, shift, shift, shift, shift); - my $parsed = emit_as_mail_header($tag, $in, $preformatted, my $pre); - my $op_n = ($parsed =~ /^Title-Opus: (.*)/m and $1); - die "Can't find opus number in `$in'" unless defined $op_n; - my $op_no = full_opus $tag, $op_n; - - $parsed =~ s/^Title-Punct:\s*-\nTitle-Name:/Title-Name-By-First-Row:/; - $soft ||= qr(^(?!)); # Never match - warn "Opus [$op_n]: Type `$1' interpreted as Title-Name\n" - if $op_n =~ $soft and $parsed =~ s/^Title-Type:/Title-Name:/m - and $parsed =~ /^Title-Name:\s*(.*)/; - warn("Too many fields in `$parsed', skipping"), return '' - if $parsed =~ /^(?=.)(?!Title-(?:Opus|RAW|Name(?:-By-First-Row)?|Key|Dates):)/m; - - my $name = normalize_piece $tag, $op_no; # expand opus+no to the full name - - if ($name eq $op_no) { # No current information - my ($opus_rx, $opus_pre) = opus_parser($tag); - die "No subopus number in `$op_no' (from `$in')" - unless $op_no =~ /^($opus_rx)\s*[.,:;]\s*No/; - my $op = $1; - $name = normalize_piece $tag, $op; # Expands opus to the full name - $update = 0; - } elsif (not $update) { - die "Opus `$op_no' already known: `$name'"; - } - - my $parsed_op = emit_as_mail_header($tag, $name, 'only_by_opus', my $pre1); - warn("Prior knowledge not found for `$in'\n"), - return $parsed if $parsed_op =~ /^Title:/; # Not found, or not parsable - - unless ($update) { # Handling "a group name" - $parsed_op =~ s/^Title-Count:.*\n//; # Four ballades for piano - if ($parsed_op =~ /^Title-Type:\s*(.*)\n/) { # Strip the plural - my $type = $1; - $type =~ s/^ Sets \s+ of \s+/Set of /x - or $type =~ s/^ ($piece_rx) (?:s | es) $/$1/x; # Strip the plural - $parsed_op =~ s/^.*/Title-Type: $type/; - } - $parsed_op =~ s/^Title-Opus:.*/Title-Opus: $op_n/m - or die "Can't find Opus: `$parsed_op'"; - } - if ($parsed =~ /^Title-Dates:\s*(.*)/m) { - my $d = $1; # (?check_persons" -sub check_persons ($) { - my $self = shift; - my %seen; - $seen{$_}++ for values %tr; - for my $l (keys %seen) { - my $s = short_person($self, $l); - my $ll = normalize_person($self, $s); - warn "`$l' => `$s' => `$ll'" unless $ll eq $l; - } - %seen = (); - $seen{$_}++ for values %short; - for my $s (values %seen) { - my $l = normalize_person($self, $s); - my $ss = short_person($self, $l); - warn "`$s' => `$l' => `$ss'" unless $ss eq $s; - } -} - -my %aliases; - -sub load_lists () { - my @dirs = get_path(); - my @lists = map <$_/*.lst>, @dirs; - #warn "dirs=`@dirs', lists=`@lists'\n"; - warn("panic: can't find name lists in `@dirs'"), return 0 unless @lists; - - for my $f (@lists) { - local $/ = "\n"; - open F, "< $f" or warn("Can't open `$f' for read: $!"), next; - my @in = ; - close F or warn("Can't close `$f' for read: $!"), next; - my $charset; - for (@in) { - next if /^\s*$/; - if ( /^ \s* \# \s* (?:charset|encoding) \s* = \s* ("?) (.*?) \1 \s* $/ix) { - $charset = $2; - require Encode; - next; - } - $_ = Encode::decode($charset, $_) if $charset; # Make empty to disable - s/^\s+//, s/\s+$//, s/\s+/ /g; - next if /^##/; - if (/^ \# \s* (alias|fix|shortname_for) \s+ (.*?) \s* => \s* (.*)/x) { - if ($1 eq 'alias') { - $aliases{$2} = [split /\s*,\s*/, $3]; - } elsif ($1 eq 'fix') { - my ($old, $ok) = ($2, $3); - $tr{translate_dots $old} = $tr{translate_dots $ok} || $ok; - #print "translating `",translate_dots $old,"' to `",translate_dots $ok,"'\n"; - } elsif ($1 eq 'shortname_for') { - my ($long, $short) = ($2, $3); - $tr{translate_dots $short} = $long; - ($long) = strip_years($long); - $short{$long} = $short; - } - next; - } - if (/^ \# \s* fix_firstname \s+ (.*\s(\S+))$/x) { - $tr{translate_dots $1} = $tr{translate_dots $2}; - next; - } - if (/^ \# \s* keep \s+ (.*?) \s* $/x) { - $tr{translate_dots $1} = $1; - next; - } - if (/^ \# \s* shortname \s+ (.*?) \s* $/x) { - my $in = $1; - my $full = __PACKAGE__->_translate_person($in, 0); - unless (defined $full and $full ne $in) { - my @parts = split /\s+/, $in; - $full = __PACKAGE__->_translate_person($parts[-1], 0); - warn("Can't find translation for `@parts'"), next - unless defined $full and $full ne $parts[-1]; - # Add the normalization - my $f = __PACKAGE__->normalize_person($parts[-1]); - $tr{translate_dots $in} = $f; - } - $short{$full} = $in; - ($full) = strip_years($full); - $short{$full} = $in; - next; - } - warn("Do not understand directive: `$_'"), next if /^#/; - #warn "Doing `$_'"; - my ($pre, $post) = /^(.*?)\s*(\(.*\))?$/; - my @f = split ' ', $pre or warn("`$pre' won't split"), die; - my $last = pop @f; - my @last = $last; - - # no utf8; # `use' is needed by 5.005 - (my $ascii = $last) =~ - tr( ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя\x80-\x9F) - ( !cLXY|S"Ca<__R~o+23'mP.,1o>...?AAAAAAACEEEEIIIIDNOOOOOx0UUUUYpbaaaaaaaceeeeiiiidnooooo:ouuuuyPy_); - push @last, $ascii unless $ascii eq $last; - my $a = $aliases{$last[0]} ? $aliases{$last[0]} : []; - $a = [$a] unless ref $a; - push @last, @$a; - for my $last (@last) { - my @comp = (@f, $last); - $tr{"\L@comp"} ||= $_; - $tr{lc $last} ||= $_; # Two Bach's - if (@f) { - $tr{"\L$f[0] $last"} ||= $_; # With the first of pre-names only - my @ini = map substr($_, 0, 1), @f; - $tr{"\L$ini[0] $last"} ||= $_; # One initial - $tr{"\L@ini $last"} ||= $_; # All initials - } - } - } - } -} - -#$tr{lc 'Tchaikovsky, Piotyr Ilyich'} = $tr{lc 'Tchaikovsky'}; - -sub prepare_tag_object_comp ($;$) { - my ($comp, $piece) = @_; - require MP3::Tag; - my $tag = MP3::Tag->new_fake('settable'); - - for my $elt ( qw( title track artist album comment year genre - title_track artist_collection person ) ) { - no strict 'refs'; - MP3::Tag->config("translate_$elt", \&{"Normalize::Text::Music_Fields::normalize_$elt"}) - if defined &{"Normalize::Text::Music_Fields::normalize_$elt"}; - # This is needed to expand albums, since pieces file is named so... - MP3::Tag->config("short_person", \&Normalize::Text::Music_Fields::short_person) - if defined &Normalize::Text::Music_Fields::short_person; - } - $tag->config('parse_data', ['mi', $comp, '%a'], ($piece ? ['mi', $piece, '%l'] : () )); - $tag; -} - -## perl -MNormalize::Text::Music_Fields -e Normalize::Text::Music_Fields::test_normalize_piece -sub test_normalize_piece { - for (split /\n/, <album, "\n"; - } -} - -for my $elt ( qw( title track artist album comment year genre - title_track artist_collection person ) ) { - no strict 'refs'; # backward compatibility layer: - *{"translate_$elt"} = \&{"normalize_$elt"} if defined &{"normalize_$elt"}; -} - -1; - -=head1 NAME - -Normalize::Text::Music_Fields - normalize names of people's and (musical) works. - -=head1 SYNOPSIS - - $name = $obj->Normalize::Text::Music_Fields::normalize_person($name); - $work = $obj->Normalize::Text::Music_Fields::normalize_piece($work); - # $obj should have methods `name_for_field_normalization', 'shorted_person' - -=head1 DESCRIPTION - -Databases of names and of works-per-name are taken from plain-text -files (optionally in mail-header format). Names are stored in F<*.lst> files. -Works are stored in F<.comp> files named after the shortened name -of the composer. - -The directories of these files are looked in the environment variable -C (if defined, split the same way as C), or in -C<$ENV{HOME}/.music_fields>, and C<-> (and C<-> is replaced by the directory -named as the module file with F<.pm> dropped). At runtime, one can -replace the list by calling function Normalize::Text::Music_Fields::set_path() -with the list of directories as the argument. - -(Since parsed files are cached, replacing the directory list should be done -as early as possible.) - -Files may be managed with utility subroutines provided with the module: - - # Translate from one-per-line to mail-header format: - perl -wple "BEGIN {print q(# format = mail-header)} s/#\s*normalized\s*$//; $_ = qq(Title: $_) unless /^\s*(#|$)/; $_ = qq(\n$_) if $p and not /^##/; $_ .= qq(\n) unless $p = /^##/" Normalize::Text::Music_Fields-G_Gershwin.comp >Music_Fields-G_Gershwin.comp-mail - - # (inverse transformation:) Dump pieces listed in mail-header format - perl -MNormalize::Text::Music_Fields -wle "print for Normalize::Text::Music_Fields::read_composer_file(shift, shift)" gershwin Music_Fields-G_Gershwin.comp-mail > o - - # Normalize data in 1-line-per piece format - perl -MNormalize::Text::Music_Fields -wle "Normalize::Text::Music_Fields::prepare_tag_object_comp(shift)->Normalize::Text::Music_Fields::normalize_file_lines(shift)" - - # Create a mail-header file from a semi-processed (with "bold" fields) - # mail-header file (with xml escapes, preceded by opus number) - perl -MNormalize::Text::Music_Fields -00wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print q(# format = mail-header)} print Normalize::Text::Music_Fields::emit_as_mail_header($tag,$_, q(bold,xml,opus),$pre)" shostakovich o-xslt-better >Music_Fields-D_Shostakovich.comp-mail1 - - # Likewise, from work-per-line with opus-numbers: - perl -MNormalize::Text::Music_Fields -wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print qq(# format = mail-header\n)} print Normalize::Text::Music_Fields::emit_as_mail_header($tag,$_, q(opus), $pre)" schnittke o-schnittke-better >Music_Fields-A_Schnittke.comp-mail2 - - # A primitive tool for merging additional info into the database: - perl -MNormalize::Text::Music_Fields -wnle "BEGIN {$tag = Normalize::Text::Music_Fields::prepare_tag_object_comp(shift @ARGV); print qq(# format = mail-header\n)} next unless s/^\s*\+\+\s*//; print Normalize::Text::Music_Fields::merge_info($tag,$_, q(opus,xml), qr(^(58|70|76|116|118|119)($|-)))" brahms o-brahms-op-no1-xslt - - # Minimal consistency check of persons database. - perl -MNormalize::Text::Music_Fields -wle "BEGIN{binmode $_, ':encoding(cp866)' for \*STDIN, \*STDOUT, \*STDERR} print Normalize::Text::Music_Fields->check_persons" - - # Minimal testing code: - perl -MNormalize::Text::Music_Fields -e Normalize::Text::Music_Fields::test_normalize_piece - -It may be easier to type these examples if one uses C, which -exports the mentioned subroutines to the main namespace (available in -F directory of a distribution of C). E.g., the last -example becomes: - - perl -Mmanage_M_N_F -e test_normalize_piece - - -=cut - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Dvor_k.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Dvor_k.comp deleted file mode 100644 index 767237126..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Dvor_k.comp +++ /dev/null @@ -1,1861 +0,0 @@ -# format = mail-header - - -# opus_rex \b(?:[Bb](?:\b|(?=\d))\.?|Op(?:us\b|\.))\s*\d+[a-d]?(?:[.,;\s]\s*No\.\s*\d+(?:\.\d+)*)? - -# opus_dup Op. 11 - -# opus_dup Op. 112 - -# opus_dup Op. 114 - -# opus_dup Op. 115 - -# opus_dup Op. 12 - -# opus_dup Op. 14 - -# opus_dup Op. 19a - -# opus_dup Op. 19b - -# opus_dup Op. 25 - -# opus_dup Op. 30 - -# opus_dup Op. 32 - -# opus_dup Op. 37 - -# opus_dup Op. 40 - -# opus_dup Op. 46 - -# opus_dup Op. 49 - -# opus_dup Op. 50 - -# opus_dup Op. 53 - -# opus_dup Op. 54 - -# opus_dup Op. 59 - -# opus_dup Op. 62 - -# opus_dup Op. 64 - -# opus_dup Op. 68, No. 5 - -# opus_dup Op. 71 - -# opus_dup Op. 72 - -# opus_dup Op. 79 - -# opus_dup Op. 8 - -# opus_dup Op. 84 - -# opus_dup Op. 86 - -# opus_dup Op. 94 - -# opus_dup Op. 99 - - - - - - -Title-Name: Forget-me-not Polka -Title-For: piano -Title-Opus: B. 1 -Title-Dates: 1856 - - - -Title-Type: Mass -Title-Key: B flat major -Title-Comment: [lost] -Title-Opus: B. 2 -Title-Dates: 1859 - - - -Title-Type: Polka -Title-Key: E major -Title-For: piano -Title-Opus: B. 3 -Title-Dates: 1860 - - - -Title-Name: The Woman Harpist -Title-Comment: [lost] -Title-Opus: B. 4 -Title-Dates: 1860 - - - -Title-Type: Polka -Title-Comment: [lost] -Title-Opus: B. 5 -Title-Dates: 1860 - - - -Title-Type: Gallop -Title-Comment: [lost] -Title-Opus: B. 6 -Title-Dates: 1860 - - - -Title-Type: String Quintet -Title-No: 1 -Title-Key: A minor -X-Title-Opus-Alt: B. 7 -Title-Opus: Op. 1 -Title-Dates: 1861 - - - -Title-Type: String Quartet -Title-No: 1 -Title-Key: A major -X-Title-Opus-Alt: B. 8 -Title-Opus: Op. 2 -Title-Dates: 1862 - - - -Title-Type: Symphony -Title-No: 1 -Title-Key: C minor -Title-Name: The Bells of Zlonice -Title-Opus: B. 9 -Title-Dates: 1865 - - - -Title-Type: Cello Concerto -Title-Key: A major -Title-Comment: [orchestrated by Jarmil Burghauser] -Title-Opus: B. 10 -Title-Dates: 1865 - - - -Title-Name: Cypresses -Title-Comment: [18 songs on poems by G. Pfleger-Moravsky] -Title-Opus: B. 11 -Title-Dates: 1865 - - - -Title-Type: Symphony -Title-No: 2 -Title-Key: B flat major -X-Title-Opus-Alt: B. 12 -Title-Opus: Op. 4 -Title-Dates: 1865 - - - -Title-Count: Two -Title-Type: Songs -Title-For: baritone -Title-Opus: B. 13 -Title-Dates: 1865 - - - -Title-Type: Clarinet Quintet -Title-Key: B flat minor -Title-Comment: [lost] -Title-Opus: B. 14 -Title-Dates: 1866 - - - -Title-Count: Seven -Title-Type: Interludes -Title-For: orchestra -Title-Opus: B. 15 -Title-Dates: 1867 - - - -Title-Type: Serenade -Title-For: flute, violin, viola, and triangle -Title-Opus: B. 15bis -Title-Dates: 1867 - - - -Title-Name: Alfred -Title-RAW: , heroic opera in 3 acts -Title-Opus: B. 16 -Title-Dates: 1870 - - - -Title-RAW: Tragic Overture -Title-Related-How: from -Title-Related-Name: Alfred -Title-Opus: B. 16a -Title-Dates: 1870 - - - -Title-Type: String Quartet -Title-No: 2 -Title-Key: B flat major -Title-Opus: B. 17 -Title-Dates: 1869 - - - -Title-Type: String Quartet -Title-No: 3 -Title-Key: D major -Title-Opus: B. 18 -Title-Dates: 1870 - - - -Title-Type: String Quartet -Title-No: 4 -Title-Key: E minor -Title-Opus: B. 19 -Title-Dates: 1870 - - - -Title-Type: Cello Sonata -Title-Key: F minor -Title-Comment: [lost] -Title-Opus: B. 20 -Title-Dates: 1871 - - - -Title-Name: The King and the Charcoalburner -Title-Type-After-Name: comic opera -Title-Comment: [1st version] -X-Title-Opus-Alt: B. 21 -Title-Opus: Op. 12 -Title-Dates: 1871 - - - -Title-RAW: Concert Overture -Title-Key: F major -Title-Comment: [from 1st version of "The King and the Charcoalburner"] -X-Title-Opus-Alt: B. 21a -Title-Opus: Op. 12 -Title-Dates: 1871 - - - -Title-Type: Potpourri -Title-Related-How: from -Title-Related-Name: The King and the Charcoalburner I -Title-Opus: B. 22 -Title-Dates: 1872 - - - -Title-RAW: Songs on words by Eliska Krбsnohorskб -Title-Opus: B. 23 -Title-Dates: 1871 - - - -Title-Name: Sirotek the Orphan -Title-Comment: [after a ballad by K. J. Erben] -Title-Opus: B. 24 -Title-Dates: 1871 - - - -Title-Name: Rosemary -Title-Comment: [after a poem by K. J. Erben] -Title-Opus: B. 24a -Title-Dates: 1871 - - - -Title-Type: Piano Trio -Title-Comment: [lost] -X-Title-Opus-Alt: B. 25 -Title-Opus: Op. 13, No. 1 -Title-Dates: 1871 - - - -Title-Type: Piano Trio -Title-Comment: [lost] -X-Title-Opus-Alt: B. 26 -Title-Opus: Op. 13, No. 2 -Title-Dates: 1872 - - - -Title-Name: The Heirs of the White Mountain -Title-Comment: [hymn after a poem by V. Halйk] -Title-Opus: B. 27 -Title-Dates: 1872 - - - -Title-Type: Piano Quintet -Title-No: 1 -Title-Key: A major -X-Title-Opus-Alt: B. 28 -Title-Opus: Op. 5 -Title-Dates: 1872 - - - -Title-RAW: Four Songs on Serbian Folk Poems -X-Title-Opus-Alt: B. 29 -Title-Opus: Op. 6 -Title-Dates: 1872 - - - -Title-Type: Songs -Title-Related-How: from the -Title-Related-Name: Dvur Krбlove -Title-Punct: ( -Title-Name: Queen's Court -Title-RAW: ) Manuscript -X-Title-Opus-Alt: B. 30 -Title-Opus: Op. 7 -Title-Dates: 1872 - - - -Title-Count: Three -Title-Type: Nocturnes -Title-Comment: [incomplete, except for No. 2 "May Night"] -Title-Opus: B. 31 -Title-Dates: 1872 - - - -Title-Name: Silhouettes -Title-For: piano -X-Title-Opus-Alt: B. 32 -Title-Opus: Op. 8 -Title-Dates: 1872 - - - -Title-Type: Violin Sonata -Title-Key: A minor -Title-Comment: [lost] -Title-Opus: B. 33 -Title-Dates: 1873 - - - -Title-Type: Symphony -Title-No: 3 -Title-Key: E flat major -X-Title-Opus-Alt: B. 34 -Title-Opus: Op. 10 -Title-Dates: 1873 - - - -Title-Name: Romeo and Juliet -Title-RAW: Overture -Title-Comment: [lost] -Title-Opus: B. 35 -Title-Dates: 1873 - - - -Title-RAW: Octet Serenade -Title-Comment: [lost] -Title-Opus: B. 36 -Title-Dates: 1873 - - - -Title-Type: String Quartet -Title-No: 5 -Title-Key: F minor -X-Title-Opus-Alt: B. 37 -Title-Opus: Op. 9 -Title-Dates: 1873 - - - -Title-Type: Romance -Title-Key: F minor -Title-For: violin and piano -X-Title-Opus-Alt: B. 38 -Title-Opus: Op. 11 -Title-Dates: 1877 - - - -Title-Type: Romance -Title-Key: F minor -Title-For: violin and orchestra -Title-Comment: [arrangement of B. 38] -X-Title-Opus-Alt: B. 39 -Title-Opus: Op. 11 -Title-Dates: 1877 - - - -Title-Type: String Quartet -Title-No: 6 -Title-Key: A minor -X-Title-Opus-Alt: B. 40 -Title-Opus: Op. 12 -Title-Dates: 1873 - - - -Title-RAW: Andante appassionato -Title-Key: A minor -Title-For: string quartet -Title-Opus: B. 40a -Title-Dates: 1873 - - - -Title-Type: Symphony -Title-No: 4 -Title-Key: D minor -X-Title-Opus-Alt: B. 41 -Title-Opus: Op. 13 -Title-Dates: 1874 - - - -Title-Name: The King and the Charcoalbuner -Title-Comment: [2nd version of B. 21] -X-Title-Opus-Alt: B. 42 -Title-Opus: Op. 14 -Title-Dates: 1874 - - - -Title-RAW: Porpourri on The King and the Charcoalburner -Title-Comment: [2nd version of B. 22] -Title-Opus: B. 43 -Title-Dates: 1875 - - - -Title-RAW: Symphonic Poem (Rhapsody) -Title-Key: A minor -X-Title-Opus-Alt: B. 44 -Title-Opus: Op. 14 -Title-Dates: 1874 - - - -Title-Type: String Quartet -Title-No: 7 -Title-Key: A minor -X-Title-Opus-Alt: B. 45 -Title-Opus: Op. 16 -Title-Dates: 1874 - - - -Title-Name: The Stubborn Lovers -Title-Type-After-Name: comic opera -X-Title-Opus-Alt: B. 46 -Title-Opus: Op. 17 -Title-Dates: 1874 - - - -Title-Type: Nocturne -Title-Key: B major -Title-For: strings -X-Title-Opus-Alt: B. 47 -Title-Opus: Op. 40 -Title-Dates: 1883 - - - -Title-Type: Nocturne -Title-Key: B major -Title-For: violin and piano -X-Title-Opus-Alt: B. 48a -Title-Opus: Op. 40 -Title-Dates: 1883 - - - -Title-Type: Nocturne -Title-Key: B major -Title-For: piano four hands -X-Title-Opus-Alt: B. 48b -Title-Opus: Op. 40 -Title-Dates: 1875 - - - -Title-Type: String Quintet -Title-No: 2 -Title-Key: G major -Title-Comment: [formerly Op. 18] -X-Title-Opus-Alt: B. 49 -Title-Opus: Op. 77 -Title-Dates: 1875 - - - -Title-RAW: Moravian Duets -X-Title-Opus-Alt: B. 50 -Title-Opus: Op. 20 -Title-Dates: 1875 - - - -Title-Type: Piano Trio -Title-No: 1 -Title-Key: B flat major -X-Title-Opus-Alt: B. 51 -Title-Opus: Op. 21 -Title-Dates: 1875 - - - -Title-Type: Serenade -Title-For: Strings -Title-Key: E major -X-Title-Opus-Alt: B. 52 -Title-Opus: Op. 22 -Title-Dates: 1875 - - - -Title-Type: Piano Quartet -Title-No: 1 -Title-Key: D major -X-Title-Opus-Alt: B. 53 -Title-Opus: Op. 23 -Title-Dates: 1875 - - - -Title-Type: Symphony -Title-No: 5 -Title-Key: F major -Title-Comment: [formerly Op. 24] -X-Title-Opus-Alt: B. 54 -Title-Opus: Op. 76 -Title-Dates: 1875 - - - -Title-Name: Vanda -Title-Type-After-Name: tragic opera -X-Title-Opus-Alt: B. 55 -Title-Opus: Op. 25 -Title-Dates: 1875 - - - -Title-Type: Piano Trio -Title-No: 2 -Title-Key: G minor -X-Title-Opus-Alt: B. 56 -Title-Opus: Op. 26 -Title-Dates: 1876 - - - -Title-Type: String Quartet -Title-No: 8 -Title-Key: E major -Title-Comment: [formerly Op. 27] -X-Title-Opus-Alt: B. 57 -Title-Opus: Op. 80 -Title-Dates: 1876 - - - -Title-Count: Two -Title-Type: Minuets -Title-For: piano -X-Title-Opus-Alt: B. 58 -Title-Opus: Op. 28 -Title-Dates: 1876 - - - -Title-Count: Four -Title-Type: Choruses -Title-For: mixed choir -X-Title-Opus-Alt: B. 59 -Title-Opus: Op. 29 -Title-Dates: 1876 - - - -Title-RAW: Moravian Duets -X-Title-Opus-Alt: B. 60 -Title-Opus: Op. 32 -Title-Dates: 1876 - - - -Title-Name: Evening Songs -Title-Comment: [after poems by V. Hбlek] -X-Title-Opus-Alt: B. 61 -Title-Opus: Op. 31 -Title-Dates: 1876 - - - -Title-RAW: Moravian Duets -X-Title-Opus-Alt: B. 62 -Title-Opus: Op. 32 -Title-Dates: 1876 - - - -Title-Type: Piano Concerto -Title-Key: G minor -X-Title-Opus-Alt: B. 63 -Title-Opus: Op. 33 -Title-Dates: 1876 - - - -Title-RAW: Dumka -Title-Key: D minor -Title-For: piano -X-Title-Opus-Alt: B. 64 -Title-Opus: Op. 35 -Title-Dates: 1876 - - - -Title-RAW: Theme and Variations -Title-For: piano -X-Title-Opus-Alt: B. 65 -Title-Opus: Op. 36 -Title-Dates: 1876 - - - -Title-RAW: Choral Songs -Title-For: male voices -Title-Opus: B. 66 -Title-Dates: 1877 - - - -Title-Name: The Cunning Peasant -Title-Type-After-Name: comic opera -X-Title-Opus-Alt: B. 67 -Title-Opus: Op. 37 -Title-Dates: 1877 - - - -Title-Type: Overture -Title-Related-How: to -Title-Related-Name: The Cunning Peasant -X-Title-Opus-Alt: B. 67a -Title-Opus: Op. 37 -Title-Dates: 1877 - - - -Title-RAW: Ave Maria -X-Title-Opus-Alt: B. 68 -Title-Opus: Op. 19b -Title-Dates: 1877 - - - -Title-RAW: Moravian Duets -X-Title-Opus-Alt: B. 69 -Title-Opus: Op. 38 -Title-Dates: 1877 - - - -Title-Type: Symphonic Variations -Title-Comment: [formerly Op. 28] -X-Title-Opus-Alt: B. 70 -Title-Opus: Op. 78 -Title-Dates: 1877 - - - -Title-RAW: Stabat Mater -X-Title-Opus-Alt: B. 71 -Title-Opus: Op. 58 -Title-Dates: 1877 - - - -Title-Name: Bouquet of Czech Folksongs -Title-Opus: B. 72 -Title-Dates: 1877 - - - -Title-Name: Song of a Czech -Title-Opus: B. 73 -Title-Dates: 1877 - - - -Title-RAW: Scottish Dances -Title-For: piano -X-Title-Opus-Alt: B. 74 -Title-Opus: Op. 41 -Title-Dates: 1877 - - - -Title-Type: String Quartet -Title-No: 9 -Title-Key: D minor -Title-Comment: [dedicated to Johannes Brahms] -X-Title-Opus-Alt: B. 75 -Title-Opus: Op. 34 -Title-Dates: 1877 - - - -Title-Name: From a Bouquet of Czech Folksongs -X-Title-Opus-Alt: B. 76 -Title-Opus: Op. 43 -Title-Dates: 1878 - - - -Title-Type: Serenade -Title-Key: D minor -Title-For: Wind Instruments -X-Title-Opus-Alt: B. 77 -Title-Opus: Op. 44 -Title-Dates: 1878 - - - -Title-RAW: Slavonic Dances for piano four hands, 1st series -X-Title-Opus-Alt: B. 78 -Title-Opus: Op. 46 -Title-Dates: 1878 - - - -Title-Type: Bagatelles -Title-For: two violins, cello, and harmonium/piano -X-Title-Opus-Alt: B. 79 -Title-Opus: Op. 47 -Title-Dates: 1878 - - - -Title-Type: String Sextet -Title-Key: A major -X-Title-Opus-Alt: B. 80 -Title-Opus: Op. 48 -Title-Dates: 1878 - - - -Title-Type: Capriccio -Title-For: violin and piano -X-Title-Opus-Alt: B. 81 -Title-Opus: Op. 24 -Title-Dates: 1878 - - - -Title-Name: Hymnus ad Laudus in festo Sanctae Trinitatis -Title-Opus: B. 82 -Title-Dates: 1878 - - - -Title-RAW: Slavonic Dances -Title-For: orchestra -Title-Comment: [orchestration of B. 78] -X-Title-Opus-Alt: B. 83 -Title-Opus: Op. 46 -Title-Dates: 1878 - - - -Title-RAW: Three Modern Greek Songs -X-Title-Opus-Alt: B. 84a -Title-Opus: Op. 50 -Title-Dates: 1878 - - - -Title-RAW: Three Modern Greek Songs -X-Title-Opus-Alt: B. 84b -Title-Opus: Op. 50 -Title-Dates: 1878 - - - -Title-RAW: Furiants -Title-For: piano -X-Title-Opus-Alt: B. 85 -Title-Opus: Op. 42 -Title-Dates: 1878 - - - -Title-RAW: Slavonic Rhapsodies -X-Title-Opus-Alt: B. 86 -Title-Opus: Op. 45 -Title-Dates: 1878 - - - -Title-RAW: Choral Songs -Title-For: male voices -X-Title-Opus-Alt: B. 87 -Title-Opus: Op. 27 -Title-Dates: 1878 - - - -Title-RAW: Festival March -Title-For: orchestra -X-Title-Opus-Alt: B. 88 -Title-Opus: Op. 54 -Title-Dates: 1879 - - - -Title-Type: Mazurek -Title-For: violin and piano -X-Title-Opus-Alt: B. 89 -Title-Opus: Op. 49 -Title-Dates: 1879 - - - -Title-Type: Mazurek -Title-For: violin and orchestra -X-Title-Opus-Alt: B. 90 -Title-Opus: Op. 49 -Title-Dates: 1879 - - - -Title-RAW: Psalm 149 -Title-For: choir and orchestra -Title-Comment: [1st version] -X-Title-Opus-Alt: B. 91 -Title-Opus: Op. 79 -Title-Dates: 1879 - - - -Title-Type: String Quartet -Title-No: 10 -Title-Key: E flat major -X-Title-Opus-Alt: B. 92 -Title-Opus: Op. 51 -Title-Dates: 1879 - - - -Title-RAW: Czech Suite -Title-Key: D major -Title-For: orchestra -X-Title-Opus-Alt: B. 93 -Title-Opus: Op. 39 -Title-Dates: 1879 - - - -Title-Type: Polonaise -Title-Key: A major -Title-For: cello and piano -Title-Opus: B. 94 -Title-Dates: 1879 - - - -Title-Name: Ave maris stella -X-Title-Opus-Alt: B. 95a -Title-Opus: Op. 19b -Title-Dates: 1879 - - - -Title-Name: O sanctissima dulcis Virgo Maria! -Title-RAW: for alto, baritone, and organ -X-Title-Opus-Alt: B. 95b -Title-Opus: Op. 19a -Title-Dates: 1879 - - - -Title-Name: O sanctissima dulcis Virgo Maria -Title-Comment: [version of B. 95b, substituting soprano for baritone] -X-Title-Opus-Alt: B. 95b bis -Title-Opus: Op. 19a -Title-Dates: 1879 - - - -Title-Type: Violin Concerto -Title-Key: A minor -X-Title-Opus-Alt: B. 96 -Title-Opus: Op. 53 -Title-Dates: 1880 - - - -Title-Name: Vanda -Title-RAW: , concert overture -X-Title-Opus-Alt: B. 97 -Title-Opus: Op. 25 -Title-Dates: 1879 - - - -Title-Name: Silhouettes -Title-For: piano -X-Title-Opus-Alt: B. 98 -Title-Opus: Op. 8 -Title-Dates: 1879 - - - -Title-RAW: Prague Waltzes -Title-For: orchestra -Title-Opus: B. 99 -Title-Dates: 1879 - - - -Title-Type: Polonaise -Title-Key: E flat major -Title-For: orchestra -Title-Opus: B. 100 -Title-Dates: 1879 - - - -Title-Type: Waltzes -Title-For: piano -Title-Comment: [Orchestrated by Burghauser  ] -X-Title-Opus-Alt: B. 101 -Title-Opus: Op. 54 -Title-Dates: 1880 - - - -Title-Name: The Heirs of the White Mountain -Title-Comment: [after a poem by V. Halйk] -X-Title-Opus-Alt: B. 102 -Title-Opus: Op. 30 -Title-Dates: 1880 - - - -Title-RAW: Eclogues -Title-For: piano -X-Title-Opus-Alt: B. 103 -Title-Opus: Op. (56) -Title-Dates: 1880 - - - -Title-RAW: Gypsy Songs -Title-Comment: [after poems by A. Heyduk] -X-Title-Opus-Alt: B. 104 -Title-Opus: Op. 55 -Title-Dates: 1880 - - - -Title-Count: Two -Title-Type: Waltzes -Title-For: strings -X-Title-Opus-Alt: B. 105 -Title-Opus: Op. 54 -Title-Dates: 1880 - - - -Title-Type: Violin Sonata -Title-Key: F major -X-Title-Opus-Alt: B. 106 -Title-Opus: Op. 57 -Title-Dates: 1880 - - - -Title-RAW: Moravian Duets -X-Title-Opus-Alt: B. 107 -Title-Opus: Op. 32 -Title-Dates: 1880 - - - -Title-Type: Violin Concerto -Title-Key: A minor -Title-Comment: [final version of B. 96] -X-Title-Opus-Alt: B. 108 -Title-Opus: Op. 53 -Title-Dates: 1880 - - - -Title-RAW: Album Leaves -Title-For: piano -Title-Opus: B. 109 -Title-Dates: 1880 - - - -Title-Type: Piano Pieces -X-Title-Opus-Alt: B. 110 -Title-Opus: Op. 52 -Title-Dates: 1880 - - - -Title-Type: Mazurkas -Title-For: piano -X-Title-Opus-Alt: B. 111 -Title-Opus: Op. 56 -Title-Dates: 1880 - - - -Title-Type: Symphony -Title-No: 6 -Title-Key: D major -X-Title-Opus-Alt: B. 112 -Title-Opus: Op. 60 -Title-Dates: 1879 - - - -Title-Name: Child's Song -Title-Opus: B. 113 -Title-Dates: 1880 - - - -Title-Type: Polka -Title-For: orchestra -Title-Name: For the Prague Students -X-Title-Opus-Alt: B. 114 -Title-Opus: Op. 53A/1 -Title-Dates: 1880 - - - -Title-Name: Ballad of King Matthias -Title-Comment: [from 2nd version of The King and the Charcoalburner, B. 42] -X-Title-Opus-Alt: B. 115 -Title-Opus: Op. 14 -Title-Dates: 1881 - - - -Title-Type: Moderato -Title-Key: A major -Title-For: piano -Title-Opus: B. 116 -Title-Dates: 1881 - - - -Title-Name: Legends -Title-For: piano four hands -X-Title-Opus-Alt: B. 117 -Title-Opus: Op. 59 -Title-Dates: 1881 - - - -Title-Name: There on our roof ... -Title-Comment: [Moravian folk song] -Title-Opus: B. 118 -Title-Dates: 1881 - - - -Title-Type: Gallop -Title-Key: E major -Title-For: orchestra -X-Title-Opus-Alt: B. 119 -Title-Opus: Op. 53A/2 -Title-Dates: 1881 - - - -Title-RAW: String Quartet Fragment -Title-Key: F major -Title-Opus: B. 120 -Title-Dates: 1881 - - - -Title-Type: String Quartet -Title-No: 11 -Title-Key: C major -X-Title-Opus-Alt: B. 121 -Title-Opus: Op. 61 -Title-Dates: 1881 - - - -Title-Name: Legends -Title-For: orchestra -Title-Comment: [orchestration of B. 117] -X-Title-Opus-Alt: B. 122 -Title-Opus: Op. 59 -Title-Dates: 1881 - - - -Title-RAW: Songs on Poems by Pfleger-Moravsky -Title-Opus: B. 123, No. 4 -Title-Dates: 1881 - - - -Title-Name: Josef Kajetбn Tyl -Title-Comment: [incidental music for the play by F. F. Samberk] -X-Title-Opus-Alt: B. 125 -Title-Opus: Op. 62 -Title-Dates: 1881 - - - -Title-Name: My Home -Title-Type-After-Name: overture -Title-Related-How: to -Title-Related-Name: Josef Kajetбn Tyl -X-Title-Opus-Alt: B. 125a -Title-Opus: Op. 62 -Title-Dates: 1882 - - - -Title-Name: In Nature's Realm -Title-Comment: [after poems by V. Hбlek] -X-Title-Opus-Alt: B. 126 -Title-Opus: Op. 63 -Title-Dates: 1882 - - - -Title-Name: Dmitrij -Title-RAW: historical opera -X-Title-Opus-Alt: B. 127 -Title-Opus: Op. 64 -Title-Dates: 1882 - - - -Title-Name: Dmitrij -Title-Type-After-Name: overture -X-Title-Opus-Alt: B. 127a -Title-Opus: Op. 64 -Title-Dates: 1882 - - - -Title-RAW: Two Evening Songs -Title-Comment: [after poems by V. Hбlek] -X-Title-Opus-Alt: B. 128 -Title-Opus: Op. 3 -Title-Dates: 1882 - - - -Title-Type: Impromptu -Title-Key: D minor -Title-For: piano -Title-Opus: B. 129 -Title-Dates: 1883 - - - -Title-Type: Piano Trio -Title-No: 3 -Title-Key: F minor -X-Title-Opus-Alt: B. 130 -Title-Opus: Op. 65 -Title-Dates: 1883 - - - -Title-RAW: Scherzo capriccioso -Title-For: orchestra -X-Title-Opus-Alt: B. 131 -Title-Opus: Op. 66 -Title-Dates: 1883 - - - -Title-Name: Hussite -Title-RAW: Overture -X-Title-Opus-Alt: B. 132 -Title-Opus: Op. 67 -Title-Dates: 1883 - - - -Title-Name: From the Bohemian Forest -Title-For: piano four hands -Title-Comment: [Orchestrated by Henk de Vlieger] -X-Title-Opus-Alt: B. 133 -Title-Opus: Op. 68 -Title-Dates: 1883 - - - -Title-Name: The Heirs of the White Mountain -Title-Comment: [revision of B. 102] -X-Title-Opus-Alt: B. 134 -Title-Opus: Op. 30 -Title-Dates: 1883 - - - -Title-Name: The Specter's Bride -Title-RAW: , dramatic cantata -X-Title-Opus-Alt: B. 135 -Title-Opus: Op. 69 -Title-Dates: 1884 - - - -Title-RAW: Dumka -Title-Key: C minor -Title-For: piano -X-Title-Opus-Alt: B. 136 -Title-Opus: Op. 12, No. 1 -Title-Dates: 1884 - - - -Title-RAW: Furiant -Title-Key: G minor -Title-For: piano -X-Title-Opus-Alt: B. 137 -Title-Opus: Op. 12, No. 2 -Title-Dates: 1879 - - - -Title-Type: Humoresque -Title-Key: F sharp major -Title-For: piano -Title-Opus: B. 138 -Title-Dates: 1884 - - - -Title-Type: Ballade -Title-Key: D minor -Title-For: piano -X-Title-Opus-Alt: B. 139 -Title-Opus: Op. 15, No. 1 -Title-Dates: 1884 - - - -Title-Name: The Wild Duck -Title-RAW: , folk song -Title-Opus: B. 140 -Title-Dates: 1884 - - - -Title-Type: Symphony -Title-No: 7 -Title-Key: D minor -X-Title-Opus-Alt: B. 141 -Title-Opus: Op. 70 -Title-Dates: 1885 - - - -Title-RAW: Two Czech Folk Poems -Title-Opus: B. 142 -Title-Dates: 1885 - - - -Title-Name: Hymn of the Czech Peasants -Title-Opus: B. 143 -Title-Dates: 1885 - - - -Title-Name: Saint Ludmila -Title-Type-After-Name: oratorio -X-Title-Opus-Alt: B. 144 -Title-Opus: Op. 71 -Title-Dates: 1886 - - - -Title-RAW: Slavonic Dances for piano four hands, 2nd series -X-Title-Opus-Alt: B. 145 -Title-Opus: Op. 72 -Title-Dates: 1886 - - - -Title-Name: In Folk Tone -Title-Comment: [collection of Slavonic and Czech folksongs] -X-Title-Opus-Alt: B. 146 -Title-Opus: Op. 73 -Title-Dates: 1886 - - - -Title-RAW: Slavonic Dances -Title-For: orchestra -Title-Comment: [orchestration of B. 145] -X-Title-Opus-Alt: B. 147 -Title-Opus: Op. 72 -Title-Dates: 1887 - - - -Title-RAW: Terzetto -Title-Key: C major -Title-For: two violins and 1 viola -X-Title-Opus-Alt: B. 148 -Title-Opus: Op. 74 -Title-Dates: 1887 - - - -Title-RAW: Miniatures -Title-For: two violins and violas -X-Title-Opus-Alt: B. 149 -Title-Opus: Op. 75a -Title-Dates: 1887 - - - -Title-RAW: Romantic Pieces -Title-For: violin and piano -X-Title-Opus-Alt: B. 150 -Title-Opus: Op. 75 -Title-Dates: 1887 - - - -Title-Name: The King and the Charcoalburner -Title-Comment: [3rd version of B. 21] -X-Title-Opus-Alt: B. 151 -Title-Opus: Op. 14 -Title-Dates: 1887 - - - -Title-Name: Cypresses -Title-Comment: [arrangements of a dozen pieces from B. 11 (Nos. 2-4, 6-9, 12, 14, 16-18)] -Title-Opus: B. 152 -Title-Dates: 1887 - - - -Title-Type: Mass -Title-Key: D major -Title-Comment: [1st version] -X-Title-Opus-Alt: B. 153 -Title-Opus: Op. 86 -Title-Dates: 1887 - - - -Title-RAW: Psalm 149 -Title-For: choir and orchestra -Title-Comment: [2nd version of B. 91] -X-Title-Opus-Alt: B. 154 -Title-Opus: Op. 79 -Title-Dates: 1887 - - - -Title-Type: Piano Quintet -Title-No: 2 -Title-Key: A major -X-Title-Opus-Alt: B. 155 -Title-Opus: Op. 81 -Title-Dates: 1887 - - - -Title-Name: Two Little Pearls -Title-For: piano -Title-Opus: B. 156 -Title-Dates: 1887 - - - -Title-RAW: Four Songs on Poems by O. Malybrok-Stieler -X-Title-Opus-Alt: B. 157 -Title-Opus: Op. 82 -Title-Dates: 1888 - - - -Title-RAW: Album Leaf -Title-For: piano -Title-Opus: B. 158 -Title-Dates: 1888 - - - -Title-Name: The Jacobin -Title-Type-After-Name: opera -X-Title-Opus-Alt: B. 159 -Title-Opus: Op. 84 -Title-Dates: 1888 - - - -Title-Name: Love Songs -Title-Comment: [revision of Cypresses, B. 11] -X-Title-Opus-Alt: B. 160 -Title-Opus: Op. 83 -Title-Dates: 1888 - - - -Title-Name: Poetic Tone Poems -Title-For: piano -X-Title-Opus-Alt: B. 161 -Title-Opus: Op. 85 -Title-Dates: 1889 - - - -Title-Type: Piano Quartet -Title-No: 2 -Title-Key: E flat major -X-Title-Opus-Alt: B. 162 -Title-Opus: Op. 87 -Title-Dates: 1889 - - - -Title-Type: Symphony -Title-No: 8 -Title-Key: G major -X-Title-Opus-Alt: B. 163 -Title-Opus: Op. 88 -Title-Dates: 1889 - - - -Title-Type: Gavotte -Title-For: three violins -Title-Opus: B. 164 -Title-Dates: 1890 - - - -Title-Type: Requiem -X-Title-Opus-Alt: B. 165 -Title-Opus: Op. 89 -Title-Dates: 1890 - - - -Title-Type: Piano Trio -Title-No: 4 -Title-Key: E minor -Title-Name: Dumky -X-Title-Opus-Alt: B. 166 -Title-Opus: Op. 90 -Title-Dates: 1891 - - - -Title-Type: Fanfares -Title-For: four trumpets and timpani -Title-Opus: B. 167 -Title-Dates: 1891 - - - -Title-Name: In Nature's Realm -Title-RAW: , concert overture -X-Title-Opus-Alt: B. 168 -Title-Opus: Op. 91 -Title-Dates: 1891 - - - -Title-Name: Carnival Overture -X-Title-Opus-Alt: B. 169 -Title-Opus: Op. 92 -Title-Dates: 1891 - - - -Title-RAW: Slavonic Dance -Title-Key: E minor -Title-For: violin and piano -Title-Comment: [arrangement of B. 78 No. 2] -X-Title-Opus-Alt: B. 170 -Title-Opus: Op. 46, No. 2 -Title-Dates: 1891 - - - -Title-Type: Rondo -Title-Key: G minor -Title-For: cello and piano -X-Title-Opus-Alt: B. 171 -Title-Opus: Op. 94 -Title-Dates: 1891 - - - -Title-RAW: Slavonic Dances in A and G minor -Title-For: cello and piano -Title-Comment: [arrangement of B. 78 Nos. 3 and 8] -X-Title-Opus-Alt: B. 172 -Title-Opus: Op. 46, No. 3,8 -Title-Dates: 1891 - - - -Title-Name: Silent Woods -Title-RAW: for cello and piano (Published as -Title-Name: Waldesruhe -Title-Punct: ) -Title-Comment: [arrangement of Ze Sumavy (From the Bohemian Forest) Op.68 / B.133 No.5] -X-Title-Opus-Alt: B. 173 -Title-Opus: Op. 68, No. 5 -Title-Dates: 1891 - - - -Title-Name: Othello -Title-RAW: Overture -X-Title-Opus-Alt: B. 174 -Title-Opus: Op. 93 -Title-Dates: 1892 - - - -Title-Type: Mass -Title-Key: D major -Title-Comment: [2nd version of B. 153] -X-Title-Opus-Alt: B. 175 -Title-Opus: Op. 86 -Title-Dates: 1892 - - - -Title-RAW: Te Deum -X-Title-Opus-Alt: B. 176 -Title-Opus: Op. 103 -Title-Dates: 1892 - - - -Title-Name: The American Flag -Title-Type-After-Name: cantata -Title-Comment: [after a poem by J. R. Drake] -X-Title-Opus-Alt: B. 177 -Title-Opus: Op. 102 -Title-Dates: 1893 - - - -Title-Type: Symphony -Title-No: 9 -Title-Key: E minor -Title-Name: From the New World -X-Title-Opus-Alt: B. 178 -Title-Opus: Op. 95 -Title-Dates: 1893 - - - -Title-Type: String Quartet -Title-No: 12 -Title-Key: F major -Title-Name: American -X-Title-Opus-Alt: B. 179 -Title-Opus: Op. 96 -Title-Dates: 1893 - - - -Title-Type: String Quintet -Title-No: 3 -Title-Key: E flat major -Title-Name: American -X-Title-Opus-Alt: B. 180 -Title-Opus: Op. 97 -Title-Dates: 1893 - - - -Title-Type: Rondo -Title-Key: G minor -Title-For: cello and orchestra -Title-Comment: [arrangement of B. 171] -X-Title-Opus-Alt: B. 181 -Title-Opus: Op. 94 -Title-Dates: 1893 - - - -Title-Name: Silent Woods -Title-For: cello and orchestra -Title-Comment: [arrangement of Ze Sumavy (From the Bohemian Forest) Op.68/B.173 No.5] -X-Title-Opus-Alt: B. 182 -Title-Opus: Op. 68, No. 5 -Title-Dates: 1893 - - - -Title-Type: Violin Sonatina -Title-Key: G major -X-Title-Opus-Alt: B. 183 -Title-Opus: Op. 100 -Title-Dates: 1893 - - - -Title-Type: Suite -Title-Key: A major -Title-Name: American -Title-For: piano -X-Title-Opus-Alt: B. 184 -Title-Opus: Op. 98 -Title-Dates: 1894 - - - -Title-RAW: Biblical Songs -X-Title-Opus-Alt: B. 185 -Title-Opus: Op. 99 -Title-Dates: 1894 - - - -Title-Name: Dmitrij -Title-Comment: [2nd version of B. 127] -X-Title-Opus-Alt: B. 186 -Title-Opus: Op. 64 -Title-Dates: 1894 - - - -Title-Type: Humoresques -Title-For: piano -X-Title-Opus-Alt: B. 187 -Title-Opus: Op. 101 -Title-Dates: 1894 - - - -Title-Count: Two -Title-Type: Piano Pieces -Title-Opus: B. 188 -Title-Dates: 1894 - - - -Title-RAW: Biblical Songs -Title-Comment: [orchestration of B. 185] -X-Title-Opus-Alt: B. 189 -Title-Opus: Op. 99 -Title-Dates: 1895 - - - -Title-Type: Suite -Title-Key: A major -Title-Name: American -Title-Comment: [orchestration of B. 184] -X-Title-Opus-Alt: B. 190 -Title-Opus: Op. 98b -Title-Dates: 1895 - - - -Title-Type: Cello Concerto -Title-Key: B minor -X-Title-Opus-Alt: B. 191 -Title-Opus: Op. 104 -Title-Dates: 1895 - - - -Title-Type: String Quartet -Title-No: 13 -Title-Key: G major -X-Title-Opus-Alt: B. 192 -Title-Opus: Op. 106 -Title-Dates: 1895 - - - -Title-Type: String Quartet -Title-No: 14 -Title-Key: A flat major -X-Title-Opus-Alt: B. 193 -Title-Opus: Op. 105 -Title-Dates: 1895 - - - -Title-Name: Lullaby -Title-Comment: [after a poem by F. L. Jelinek] -Title-Opus: B. 194 -Title-Dates: 1895 - - - -Title-Name: The Water Goblin -Title-Type-After-Name: symphonic poem -X-Title-Opus-Alt: B. 195 -Title-Opus: Op. 107 -Title-Dates: 1896 - - - -Title-Name: The Noon Witch -Title-Type-After-Name: symphonic poem -X-Title-Opus-Alt: B. 196 -Title-Opus: Op. 108 -Title-Dates: 1896 - - - -Title-Name: The Golden Spinning Wheel -Title-Type-After-Name: symphonic poem -X-Title-Opus-Alt: B. 197 -Title-Opus: Op. 109 -Title-Dates: 1896 - - - -Title-Name: The Wild Dove -Title-Type-After-Name: symphonic poem -X-Title-Opus-Alt: B. 198 -Title-Opus: Op. 110 -Title-Dates: 1896 - - - -Title-Name: A Hero's Song -Title-Type-After-Name: symphonic poem -X-Title-Opus-Alt: B. 199 -Title-Opus: Op. 111 -Title-Dates: 1897 - - - -Title-Name: Jacobin -Title-Comment: [revision of B. 159] -X-Title-Opus-Alt: B. 200 -Title-Opus: Op. 84 -Title-Dates: 1897 - - - -Title-Name: The Devil and Kate -Title-Type-After-Name: opera -X-Title-Opus-Alt: B. 201 -Title-Opus: Op. 112 -Title-Dates: 1899 - - - -Title-Type: Overture -Title-Related-How: to -Title-Related-Name: Kate and the Devil -X-Title-Opus-Alt: B. 201a -Title-Opus: Op. 112 -Title-Dates: 1899 - - - -Title-Name: Festival Song -Title-Comment: [after a poem by J. Vrchlicky] -X-Title-Opus-Alt: B. 202 -Title-Opus: Op. 113 -Title-Dates: 1900 - - - -Title-Name: Rusalka -Title-Type-After-Name: opera -X-Title-Opus-Alt: B. 203 -Title-Opus: Op. 114 -Title-Dates: 1900 - - - -Title-Type: Overture -Title-Related-How: to -Title-Related-Name: Rusalka -X-Title-Opus-Alt: B. 203a -Title-Opus: Op. 114 -Title-Dates: 1900 - - - -Title-Name: Song of the Smith of Lesetin -Title-Opus: B. 204 -Title-Dates: 1901 - - - -Title-Name: Saint Ludmila -Title-Comment: [opera adapted from cantata B. 144] -X-Title-Opus-Alt: B. 205 -Title-Opus: Op. 71 -Title-Dates: 1901 - - - -Title-Name: Armida -Title-Type-After-Name: opera -X-Title-Opus-Alt: B. 206 -Title-Opus: Op. 115 -Title-Dates: 1903 - - - -Title-Type: Overture -Title-Related-How: to -Title-Related-Name: Armida -X-Title-Opus-Alt: B. 206a -Title-Opus: Op. 115 -Title-Dates: 1903 - - - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Schnittke.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Schnittke.comp deleted file mode 100644 index 83e6fad6d..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/A_Schnittke.comp +++ /dev/null @@ -1,2496 +0,0 @@ -# format = mail-header - -## Raw data (and opus numbers) from http://home.wanadoo.nl/ovar/schnopus.htm - -##

Works

-## In fact Alfred Schnittke didn't use opus numbers. -## Here opus numbers are used to facilitate indexing.

- -Title-Type: Concerto -Title-For: accordion and orchestra -Title-Opus: 1 -Title-Dates: 1949 - -##

Lost
- -Title-Type: Incidental music -Title-Related-How: to -Title-Related-Name: Mayakovsky's Debut -Title-Opus: 2 -Title-Dates: 1950-1952 - -Title-RAW: Poиme -Title-For: piano and orchestra -Title-Opus: 3 -Title-Dates: 1953 - -Title-Name: The Passing Line of Clouds Grows Thinner -Title-For: voice and piano -Title-Opus: 4 -Title-Dates: 1953 - -##
To a poem by Alexander Pushkin.
- -Title-Type: Fugue -Title-For: violin solo -Title-Opus: 5 -Title-Dates: 1953 - -##
CD BIS CD 1392: Vadim Gluzman (violin)
-## CD Naxos 8.554728: Mark Lubotsky (violin)
- -Title-Count: Six -Title-Type: Preludes -Title-For: piano -Title-Opus: 6 -Title-Dates: 1953-1954 - -Title-Type: Variations -Title-For: piano -Title-Opus: 7 -Title-Dates: 1954-1955 - -Title-Type: Sonata -Title-For: violin and piano -Title-Opus: 8 -Title-Dates: 1954-1955 - -##
CD Warner Classics 2564 61329-2: Daniel Hope (violin), Sebastian Knauer (piano)
- -Title-Name: Dusk (Sumrak) -Title-For: voice and piano -Title-Opus: 9 -Title-Dates: 1954-1955 - -##
To a poem by Fyodor Tyutchev.
- -Title-Name: Beggar (Nishchy) -Title-For: voice and piano -Title-Opus: 10 -Title-Dates: 1954-1955 - -##
To a poem by Mikhail Lermontov.
- -Title-Name: Birch Tree (Beryozka) -Title-For: voice and piano -Title-Opus: 11 -Title-Dates: 1954-1955 - -##
To a poem by Stepan Shchiparev.
- -Title-Count: Three -Title-Type: Choruses -Title-For: mixed chorus -Title-Opus: 12 -Title-Dates: 1954/1955 - -##
To a poems by Alexander Prokofiev, Mikhail Isakovsky and Alexander Mashistov.

-## CD Delos DE 3264: The Spiritual Revival Choir of Moscow's Schnittke Institute of Music, Lev Kontorovich (cond)

- -Title-Type: Scherzo -Title-For: piano quintet -Title-Opus: 13 -Title-Dates: 1954-1955 - -Title-Type: Intermezzo -Title-For: piano quintet -Title-Opus: 14 -Title-Dates: 1954-1955 - -Title-Type: Suite -Title-For: strings -Title-Opus: 15 -Title-Dates: 1954-1955 - -Title-Type: Overture -Title-For: orchestra -Title-Opus: 16 -Title-Dates: 1954-1955 - -Title-Type: Symphony -Title-No: 0 -Title-Opus: 17 -Title-Dates: 1956-1957 - -Title-Type: Concerto -Title-No: 1 -Title-For: violin and orchestra -Title-Opus: 18 -Title-Dates: 1957 - -##
Revised in 1962.
-## In four movements:
-## 1. Allegro ma non troppo. Tempo iniziale - 13 min.
-## 2. Presto (This movement may be omitted) - 5 min.
-## 3. Andante - 10 min.
-## 4. Allegro scherzando - 9 min.

-## CD BIS CD 487: Malmц SO, Eri Klas (cond), Mark Lubotsky (violin)

- -Title-Name: Nagasaki -Title-Type-After-Name: oratorio -Title-For: mezzo-soprano, mixed chorus and symphony orchestra -Title-Opus: 19 -Title-Dates: 1958 - -##
On a text by Anatoly Sofronov, Georgi Fere, Eneda Eisaku and Simedziku Toson.
-## In five movements:
-## 1. Nagasaki: city of grief
-## 2. Morning (attacca)
-## 3. That fateful day ...
-## 4. After the holocaust
-## 5. The sun of peace
- -Title-Name: Vocalise -Title-For: mixed chorus a cappella -Title-Opus: 20 -Title-Dates: 1958 - -Title-RAW: Songs of War and Peace, cantata -Title-For: soprano, mixed chorus and symphony orchestra -Title-Opus: 21 -Title-Dates: 1959 - -##
On texts by Anatoly Leontyev and Andrei Pokrovsky, based on modern Russian folk songs.
-## In four movements:
-## 1. Golden grass on ancient burial mounds
-## 2. War is rumbling in the fields
-## 3. My heart moans
-## 4. The storm has passed. The sky is clear
- -Title-Type: String Quartet -Title-Opus: 22 -Title-Dates: 1959 - -##
Unfinished.
- -Title-Type: Concerto -Title-For: piano and orchestra -Title-Opus: 23 -Title-Dates: 1960 - -##
1. Allegro
-## 2. Andante (attacca)
-## 3. Allegro
- -Title-Type: Concerto -Title-For: electric instruments -Title-Opus: 24 -Title-Dates: 1960 - -##
Unfinished.
- -Title-RAW: Poem about Cosmos -Title-For: orchestra -Title-Opus: 25 -Title-Dates: 1961 - -Title-Name: The Eleventh Commandment -Title-Type-After-Name: opera in two acts -Title-Opus: 26 -Title-Dates: 1962 - -##
Libretto by Marina Churova, Georgy Ansimov and Alfred Schnittke.
- -Title-RAW: Children's Suite -Title-For: small orchestra -Title-Opus: 27 -Title-Dates: 1962 - -##
In six movements:
-## 1. Moderato
-## 2. Vivo
-## 3. Moderato
-## 4. Andantino
-## 5. Allegro
-## 6. Andantino
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Introduction -Title-Opus: 28 -Title-Dates: 1962 - -Title-Type: Music -Title-Related-How: to the TV-production -Title-Related-Name: The Rose and the Cross -Title-Opus: 29 -Title-Dates: 1962 - -##
After Alexander Blok
- -Title-Type: Sonata -Title-No: 1 -Title-For: violin and piano -Title-Opus: 30 -Title-Dates: 1963 - -##
In three movements:
-## 1. Andante - 3 min.
-## 2. Allegretto - 6 min.
-## 3. Largo - 5 min.
-## 4. Allegretto scherzando. Largo - 6 min.

-## LP Chandos ABRD 1089: Rostislav Dubinsky (violin), Ljuba Edlina (piano)
-## CD ASV CDDCA 868: Mateja Marinkovic (violin), Linn Hendry (piano)
-## CD BIS CD 364: Christian Bergqvist (violin), Roland Pontinen (piano)
-## CD BIS CD 527: U. Wallin (violin), Roland Pцntinen (piano)
-## CD Bridge 9104: Joanna Kurkowicz (violin), Sergey Schepkin (piano)
-## CD Catalyst 09026-62668-2: Maria Bachmann (violin), Jon Klibonoff (piano)
-## CD Chandos CHAN 8343: Rostislav Dubinsky (violin), Ljuba Edlina (piano)
-## CD Duchesne CD 71 532: I. Tseitlin (violin), P. Dheur (piano)
-## CD Harmonia Mundi HMN 911701: Graf Mourja (violin), Elena Rozanova(piano)
-## CD Live Classics LCL 191: Oleg Kagan (violin), Vassily Lobanov (piano)
-## CD Ondine ODE 800-2: Mark Lubotsky (violin), Ralf Gothoni (piano)
-## CD Ondine ODE 901-2: Pekka Kuusisto (violin), Raija Kerppo (piano)
-## CD Proud Sound PROU CD 139: Rusne Mataityte (violin), Margrit-Julia Zimmermann (piano)
-## CD Sonora Products SO 22579 CD: Valery Gradow (violin), Inna Heifitz (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)
-## CD Vienna Modern Masters VMM 2025: Vasilij Meljnikov (violin), Aljoscha Starc (piano)

- -Title-RAW: Prelude and Fugue -Title-For: piano -Title-Opus: 31 -Title-Dates: 1963 - -##
1. Andante
-## 2. Allegretto

-## CD Chandos CHAN 9704: Boris Berman (piano)

- -Title-Type: Incidental music -Title-Related-How: to -Title-Related-Name: Caesar and Cleopatra -Title-Opus: 32 -Title-Dates: 1963 - -##
Play in five acts by George Bernard Shaw.
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Aim the Barrage at Us -Title-Opus: 33 -Title-Dates: 1963-1964 - -Title-Type: Music -Title-For: piano and chamberorchestra -Title-Opus: 34 -Title-Dates: 1964 - -##
In four movements:
-## 1. Variazioni
-## 2. Cantus firmus
-## 3. Cadenza (attacca)
-## 4. Basso ostinato

-## CD Chandos CHAN 9466: Russian State SO, Gennadi Rozhdestvensky (cond), Vassily Lobanov, Vassily (piano)

- -Title-Type: Music -Title-For: chamberorchestra -Title-Opus: 35 -Title-Dates: 1964 - -Title-RAW: Three Verses of Marina Tsvetayeva -Title-For: mezzo-soprano (or soprano) and piano -Title-Opus: 36 -Title-Dates: 1965 - -Title-Type: Dialogue -Title-For: cello and seven instrumentalists -Title-Opus: 37 -Title-Dates: 1965 - -##
Duration: 12 minutes.

-## CD BIS CD 568: (Arrangement for trombone by Ch. Lindberg and A. Schnittke) Tapiola Sinfonietta, Osmo Vдnskд (cond), Christian Lindberg (trombone)
-## CD BIS CD 568: (Arrangement for trombone by Ch. Lindberg and A. Schnittke) Tapiola Sinfonietta, Osmo Vдnskд (cond), Christian Lindberg (trombone)
-## CD Live Classics LCL 202: Gnessin Chamber Orchestra, Yuri Nikolaevsky (cond), Natalia Gutman (cello)

- -Title-RAW: Improvisation and Fugue -Title-For: piano -Title-Opus: 38 -Title-Dates: 1965 - -##
1. Lento
-## 2. Vivo

-## CD Chandos CHAN 9704: Boris Berman (piano)

- -Title-RAW: Variations on One Chord -Title-For: piano -Title-Opus: 39 -Title-Dates: 1965 - -##
Grave / Lento / Allegretto / Andante / Agitato / Lento / Maestoso / Andante

-## CD Chandos CHAN 9704: Boris Berman (piano)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Adventures of a Dentist -Title-Opus: 40 -Title-Dates: 1965 - -Title-RAW: Charleston -Title-For: stage orchestra/jazz ensemble -Title-Related-How: from the Film -Title-Related-Name: The Adventures of a Dentist -Title-Opus: 40a -Title-Dates: 1965 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Concealed Caballero -Title-Opus: 41 -Title-Dates: 1965 - -Title-Type: Concerto -Title-No: 2 -Title-For: violin and chamber orchestra -Title-In-Movements: in a single movement -Title-Opus: 42 -Title-Dates: 1966 - -##
Dedicated to Mark Lubotsky. -## Duration: 23 minutes.

-## LP Philips 411 107-1: Basle Symphony Orchestra, Heinz Holliger (cond), Gidon Kremer (violin)
-## CD BIS CD 487: Malmц SO, Eri Klas (cond), Mark Lubotsky (violin)
-## CD Teldec 4509-94540-2: Chamber Orchestra of Europe, Gidon Kremer (violin)

- -Title-Type: String Quartet -Title-No: 1 -Title-Opus: 43 -Title-Dates: 1966 - -##
Commissioned by Rostislav Dubinsky, Primarius of the Borodin Quartet.
-## In three movements:
-## 1. Sonata - 8 min.
-## 2. Canon - 4 min.
-## 3. Cadenza - 7 min.

-## CD Arco Diva UP 0054-2 131: Kapralova Quartet
-## CD BIS CD 467: Tale Quartet
-## CD Nonesuch 79500-2: Kronos Quartet

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Just a Little Joke -Title-Opus: 44 -Title-Dates: 1966 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Day Stars -Title-Opus: 45 -Title-Dates: 1966 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Commissar -Title-Opus: 46 -Title-Dates: 1967 - -##
CD Capriccio hybrid CD/SACD CC 71041: Berlin Radio Symphony Orchestra, Frank Strobel (cond)
- -Title-Name: Pianissimo -Title-For: large symphony orchestra -Title-Opus: 47 -Title-Dates: 1968 - -##
Duration: 9 minutes.

-## CD BIS CD 427: Gothenburg SO, Neeme Jarvi (cond)

- -Title-Type: Serenada -Title-For: violin, clarinet, double-bass, piano and percussion -Title-Opus: 48 -Title-Dates: 1968 - -##
1. -
-## 2. Lento
-## 3. Allegretto

-## CD Hyperion CDA 66885: Capricorn, Timothy Mason (cond)

- -Title-Type: Sonata -Title-No: 2 -Title-For: violin and piano -Title-Name: Quasi una sonata -Title-In-Movements: in a single movement -Title-Opus: 49 -Title-Dates: 1968 - -##
Dedicated to Mark Lubotsky and Lyubov Yedlina.

-## CD ASV CDDCA 868: Mateja Marinkovic (violin), Linn Hendry (piano)
-## CD Bridge 9104: Joanna Kurkowicz (violin), Sergey Schepkin (piano)
-## CD Duchesne CD 71 532: I. Tseitlin (violin), P. Dheur (piano)
-## CD Northern Flowers NF 9908: Lidia Kovalenko (violin), Yuri Serov (piano)
-## CD Ondine ODE 800-2: Mark Lubotsky (violin), Ralf Gothoni (piano)
-## CD Phoenix PHCD 150: Levon Ambartsumian (violin), Anatoly Sheludyakov (piano)
-## CD Russian Disc RDCD 10001: Levon Ambartsumian (violin), Anatoly Sheludyakov (piano)
-## CD Sonora Products SO 22579 CD: Valery Gradow (violin), Inna Heifitz (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)

- -Title-Type: Sonata -Title-For: violin and chamber orchestra -Title-Opus: 50 -Title-Dates: 1968 - -##
Arrangement of Violin Sonata no. 1 (1963).
-## 1. Andante - 3 min.
-## 2. Allegretto - 5 min. 30 sec.
-## 3. Largo - 5 min. 30 sec.
-## 4. Allegretto scherzando. Allegro - 5 min. 30 sec.

-## CD BIS CD 537: Stockholm Chamber Orchestra, Lev Markiz (cond), Christian Bergqvist (violin)
-## CD Capriccio 67 016: Moscow Virtuosi, V. Spivakov (cond)
-## CD Chandos CHAN 9891: Musici de Montreal, Yuli Turovsky (conductor), Stepan Arman (violin)
-## CD Nimbus NI 5582: English SO, William Boughton (cond), Daniel Hope (violin)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Angel -Title-Opus: 51 -Title-Dates: 1968 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: July the Sixth -Title-Opus: 52 -Title-Dates: 1968 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Day Stars -Title-Opus: 53 -Title-Dates: 1968 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Ownerlewss House -Title-Opus: 54 -Title-Dates: 1968 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Glass Harmonica -Title-Opus: 55 -Title-Dates: 1968 - -##
CD Capriccio 71061 (SACD): Rundfunk-Sinfonieorchester Berlin, Frank Strobel (cond)
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Used Cartridge Cases -Title-Opus: 56 -Title-Dates: 1968 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Night Call -Title-Opus: 57 -Title-Dates: 1968 - -Title-RAW: Magdalena's Song for voice and piano on words by Boris Pasternak -Title-Opus: 58 -Title-Dates: 1968 - -Title-RAW: "Potok" ("Stream"), electronic composition -Title-Opus: 59 -Title-Dates: 1969 - -##
Melodiya C 30721
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Waltz -Title-Opus: 60 -Title-Dates: 1969 - -##
CD Capriccio 71061 (SACD): Rundfunk-Sinfonieorchester Berlin, Frank Strobel (cond)
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Sick at Heart -Title-Opus: 61 -Title-Dates: 1969 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: A Ballerina Aboard -Title-Opus: 62 -Title-Dates: 1969 - -Title-RAW: Incidental music to Alexander Pushkin's poem -Title-Name: Boris Godunov -Title-Opus: 63 -Title-Dates: 1969 - -Title-Type: Concerto -Title-For: oboe, harp and string orchestra -Title-In-Movements: in a single movement -Title-Opus: 64 -Title-Dates: 1971 - -##
Dedicated to Heinz Holliger, Ursula Holliger and the Zagreb Soloists Chamber Orchestra.
-## Lento (one movement)
-## Duration: 17 minutes.

-## CD BIS CD 377: New Stockholm Chamber Orchestra, Lev Markiz (cond), Helen Jahren (oboe), Kjell Axel Lier (harp)

- -Title-RAW: Canon in Memoriam Igor Strawinsky -Title-For: string quartet -Title-Opus: 65 -Title-Dates: 1971 - -##
Commissioned by the music magazine 'Tempo', London.
-## Lento (one movement).
-## Duration: 4 minutes 30 seconds.

-## CD BIS CD 547: Tale Quartet
-## CD DG 431 686-2: Hagen Quartet
-## CD Etcetera KTC 1124: Mondriaan Quartet
-## CD Nonesuch 79500-2: Kronos Quartet
-## CD RCA-BMG Catalyst 82876 64283-2: Chilingirian Quartet: Levon Chilingirian (violin), Charles Sewart (violin), Simon Rowland-Jones (viola), Philip De Groote (cello)

- -Title-Count: Eight -Title-Type: Pieces -Title-For: piano -Title-Opus: 66 -Title-Dates: 1971 - -##
1. Folk Song Andantino
-## 2. In the Mountains Moderato
-## 3. Cuckoo and Woodpecker Vivo
-## 4. Melody Andante
-## 5. Tale Lento
-## 6. Play Allegro
-## 7. Children's Piece Andantino
-## 8. March Allegretto

-## CD Chandos CHAN 9704: (Four Pieces) Boris Berman (piano)
-## CD MV Productions SPPS CD06: Svetlana Ponomarлva (piano)

- -Title-Name: Labyrinths -Title-Type-After-Name: ballet -Title-In-Movements: in five episodes -Title-Opus: 67 -Title-Dates: 1971 - -##
1. Moderato. Allegretto. Meno mosso. Adagio - 12 min. 30 sec.
-## 2. Moderato - 3 min. 30 sec.
-## 3. Allegretto - 2 min.
-## 4. Agitato - 4 min.
-## 5. Cadenza. Andante. Maestoso - 16 min.

-## CD BIS CD 557: Malmц SO Chamber Ensemble, Lev Markiz (cond)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Belorussian Station -Title-Opus: 68 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Uncle Vanya -Title-Opus: 69 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Sport, Sport, Sport -Title-Opus: 70 -Title-Dates: 1971 - -##
CD Olympia OCD 606: USSR Cinematography SO, Emin Khachaturian (cond)
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Seagull -Title-Opus: 71 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Our Gagarin -Title-Opus: 72 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Last Flight of the Albatross -Title-Opus: 73 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: You and Me -Title-Opus: 74 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: A Cottage in Kolomna -Title-Opus: 75 -Title-Dates: 1971 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Wardrobe -Title-Opus: 76 -Title-Dates: 1971 - -Title-Name: Verses Written in the Sleeplessness of the Night -Title-For: voice and piano -Title-Opus: 77 -Title-Dates: 1971 - -##
On verses by Alexander Pushkin.
-## Originally composed for a television production.
- -Title-Type: Symphony -Title-No: 1 -Title-Opus: 78 -Title-Dates: 1969-1972 - -##
In four movements:
-## 1. Senza tempo / Moderato / Allegro / Andante - 21 min.
-## 2. Allegretto - 15 min.
-## 3. Lento (attacca) - 9 min.
-## 4. Lento - 27 min.

-## CD BIS CD 577: Royal Stockholm PO, Leif Segerstam (cond), Ben Kallenberg (violin), Ake Lannerholm (trombone), Carl-Axel Dominique (piano)
-## CD Chandos CHAN 9417: Russian State SO, Gennadi Rozhdestvensky (cond)
-## CD Melodiya SUCD 10 00062: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)

- -Title-RAW: "Voices of Nature" (without text) -Title-For: ten female voices and vibraphone -Title-Opus: 79 -Title-Dates: 1972 - -##
Lento (one movement).
-## Duration: 5 minutes.

-## CD BIS 1157: Swedish Radio Choir, Tonu Kaljuste (cond), Jonny Ronnlund (vibraphone)
-## CD Chandos CHAN 9480: Danish National Radio Choir, Stefan Parkman (cond), Gert Sorensen (vibraphone)
-## CD Hyperion CDA 67297: Holst Singers, Stephen Layton (cond)

- -Title-RAW: Suite in Old Style -Title-For: violin and piano (or harpsichord) -Title-Opus: 80 -Title-Dates: 1972 - -##
In five movements:
-## 1.Pastorale - 4 min.
-## 2. Ballet - 2 min.
-## 3. Minuet - 4 min.
-## 4. Fugue - 2 min. 30 sec.
-## 5. Pantomime - 3 min. 30 sec.

-## LP Chandos ABRD 1089: Rostislav Dubinsky (violin), Ljuba Edlina (piano)
-## LP Melodiya C10 20223 005: V. Kafelnikov (trumpet), L. Grabko (piano)
-## LP Melodiya C10 25671 007: E. Grach (violin), A. Maloletkova (piano)
-## CD Arco Diva UP 0077-2: Ivana Tomaskova (violin), Renata Ardasevova (piano)
-## CD ASV CDDCA 877: Mateja Marinkovic (violin), Linn Hendry (piano)
-## CD BIS CD 527: U. Wallin (violin), R. Pцntinen (piano)
-## CD BIS CD 1392: Vadim Gluzman (violin), Angela Yoffe (piano)
-## CD Chandos CHAN 8343: Rostislav Dubinsky (violin), Ljuba Edlina (piano)
-## CD Duchesne CD 71 532: I. Tseitlin (violin), P. Dheur (piano)
-## CD Ondine ODE 800-2: Mark Lubotsky (violin), Ralf Gothoni (piano)
-## CD Philips 456-016-2: (Arrangement by Gidon Kremer) Gidon Kremer (violin), Naoko Yoshino (harpsichord)
-## CD Sonora Products SO 22579 CD: Valery Gradow (violin), Inna Heifitz (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)
-## CD Talent DOM 2910 125: Daniel Rubenstein (violin), Muhiddin Dьrrьoglu-Demiriz (piano)

- -Title-RAW: Suite in Old Style -Title-For: cello and piano -Title-Opus: 80a - -##
Arranged by Daniel Shafran.
-## In five movements:
-## 1.Pastorale - 4 min.
-## 2. Ballet - 2 min.
-## 3. Minuet - 4 min.
-## 4. Fugue - 2 min. 30 sec.
-## 5. Pantomime - 3 min. 30 sec.

-## CD ASV Gold GLD 4006: Nikolai Demidenko (cello), Leonid Gorokhov (piano)
-## CD Brilliant Classics 93096 (7 CD-set): Daniel Shafran (cello), Anton Ginzburg (piano)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Chile in Struggle, Hope and Alarm -Title-Opus: 81 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Cheer Up, the Worst is Yet to Come -Title-Opus: 82 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Butterfly -Title-Opus: 83 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Strange Little Frog -Title-Opus: 84 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Where the Arbat crosses Bubulinas Street -Title-Opus: 85 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Hot Snow -Title-Opus: 86 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Right to Jump -Title-Opus: 87 -Title-Dates: 1972 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: In the World of the Fables -Title-Opus: 88 -Title-Dates: 1973 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Arduous Roads of Peace/The Balance of Terror -Title-Opus: 89 -Title-Dates: 1973 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: My Past and My Thoughts -Title-Opus: 90 -Title-Dates: 1973 - -##
CD CPO 999 796-2: Radio SO Berlin, Frank Strobel (cond)
- -Title-RAW: Gratulationsrondo -Title-Key: C major -Title-For: violin and piano -Title-Opus: 91 -Title-Dates: 1973 - -##
Dedicated to Rostislav Dubinsky on occasion of his 50th birthday.
-## Allegro (one movement).
-## Duration: 10 minutes.

-## CD ASV CDDCA 877: Mateja Marinkovic (violin), Linn Hendry (piano)
-## CD BIS CD 527: U. Wallin (violin), R. Pцntinen (piano)
-## CD Northern Flowers NF 9908: Lidia Kovalenko (violin), Yuri Serov (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)
-## CD Teldec 4509-94540-2: Gidon Kremer (violin), Christoph Eschenbach (piano)

- -Title-Type: Incidental music -Title-Related-How: to Bertold Brecht's play -Title-Related-Name: Turandot -Title-Opus: 92 -Title-Dates: 1973 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The World Today/And Yet I Believe -Title-Opus: 93 -Title-Dates: 1972-1974 - -Title-RAW: "Der Gelbe Klang" ("Yellow Sound"), scenic composition -Title-For: pantomime, instrumental ensemble and tape (mixed chorus) -Title-Opus: 94 -Title-Dates: 1973-1974 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Agony of Death -Title-Opus: 95 -Title-Dates: 1973-1974 - -##
CD CPO 999 796-2: Radio SO Berlin, Frank Strobel (cond)
-## CD Olympia OCD 606: USSR Cinematography SO, Emin Khachaturian (cond)
- -Title-RAW: Hymn I -Title-For: cello, harp and timpani -Title-Opus: 96 -Title-Dates: 1974 - -##
Duration: 11 minutes.

-## LP Melodiya C10 28753 008: A. Ivashkin (cello), I. Pashinskaya (harp), V. Grishin (percussion)
-## CD BIS CD 507: Torleif Thйdйen (cello), Ingegerd Fredlund (harp), Anders Holdar (percussion)
-## CD BIS CD 300507: Torleif Thйdйen (cello), Ingegerd Fredlund (harp), Anders Holdar (percussion)
-## CD Melodiya SUCD 10 00061: A. Ivashkin (cello), I. Pashinskaya (harp), V. Grishin (percussion)

- -Title-RAW: Hymn II -Title-For: cello and double-bass -Title-Opus: 97 -Title-Dates: 1974 - -##
Duration: 6 minutes.

-## LP Melodiya C10 28753 008: A. Ivashkin (cello), V. Bartsalkin (double-bass)
-## CD BIS CD 507: Torleif Thйdйen (cello), Entcho Radoukanov (double-bass)
-## CD BIS CD 300507: Torleif Thйdйen (cello), Entcho Radoukanov (double-bass)
-## CD Melodiya SUCD 10 00061: A. Ivashkin (cello), V. Bartsalkin (double-bass)

- -Title-RAW: Hymn III -Title-For: cello, bassoon, harpsichord and bells or timpani -Title-Opus: 98 -Title-Dates: 1974 - -##
Duration: 5 minutes.

-## LP Melodiya C10 28753 008: A. Ivashkin (cello), Y. Rudometkin (bassoon), V. Chasovennaya (harpsichord), V. Grishin (bells)
-## CD BIS CD 507: Torleif Thйdйen (cello), Christian Davidsson (bassoon), Mayumi Kamata (harpsichord), Anders Loguin (percussion)
-## CD BIS CD 300507: Torleif Thйdйen (cello), Christian Davidsson (bassoon), Mayumi Kamata (harpsichord), Anders Loguin (percussion)
-## CD Melodiya SUCD 10 00061: A. Ivashkin (cello), Y. Rudometkin (bassoon), V. Chasovennaya (harpsichord), V. Grishin (bells)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Cities and Years -Title-Opus: 99 -Title-Dates: 1974 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Captain's Daughter -Title-Opus: 100 -Title-Dates: 1974 - -Title-RAW: Requiem, music to Schiller's Drama -Title-Name: Don Carlos -Title-For: soloists, mixed chorus and instrumental ensemble -Title-Opus: 101 -Title-Dates: 1975 - -##
In fourteen movements
-## 1. Requiem - 3 min. 30 sec.
-## 2. Kyrie - 2 min.
-## 3. Dies irae - 1 min.
-## 4. Tuba mirum - 4 min.
-## 5. Rex tremendae majestatis - 1 min.
-## 6. Recordare - 2 min. 30 sec.
-## 7. Lacrimosa - 2 min. 30 sec.
-## 8. Domine Jesu - 1 min. 30 sec.
-## 9. Hostias - 1 min.
-## 10. Sanctus - 4 min.
-## 11. Benedictus - 2 min.
-## 12. Agnus Dei - 2 min.
-## 13. Credo - 4 min.
-## 14. Requiem - 3 min. 30 sec.

-## CD BIS CD 497: Stockholm Sinfonietta, Uppsala Academic Chamber Choir, Stefan Parkman (cond), Kristina Hjartsjo Salomonsson, Ingela Hogeras Sjoberg & Lisbeth Lindholm (soprano), Annika Finnila Eker (contralto), Nils Hogman (tenor)
-## CD CHAN 9564: Russian State Symphony Orchestra, Russian State Symphonic Capella, Valery Polyansky (cond), Olga Sizova (soprano), Anaida Agadzhanian (soprano), Olga Tal (soprano), Tatiana Sharova (soprano), Ludmilla Kuznetsova (mezzo-soprano), Vsevolod Grivnov (tenor)
-## CD Panton 81 1374-221: Prague Symphony Orchestra, Kuhn Mixed Chorus, Jiri Belohlavek (cond), Zdena Kloubova (soprano)

- -Title-Name: Pantomime -Title-Type-After-Name: suite -Title-For: chamber orchestra -Title-Opus: 102 -Title-Dates: 1975 - -##
After W.A. Mozart's Fragment KV 416d.
-## 1. Pantalone and Colombine
-## 2. The Dottore
-## 3. Pierrot
-## 4. The Turk
-## 5. Pierrot chasing Harlekin
-## 6. Harlekin's Death
-## 7. Pierrot is terrified
-## 8. Finale
- -Title-Name: Cantus Perpetuus -Title-For: keyboard instrument and percussion -Title-Opus: 103 -Title-Dates: 1975 - -Title-RAW: Preludium in Memoriam Dmitri Shostakovich -Title-For: two violins (or solo violin and magnetic tape) -Title-Opus: 104 -Title-Dates: 1975 - -##
Andante (one movement).
-## Duration: 5 minutes.

-## LP HMV-Melodiya ASD 3547: Gidon Kremer (violin)
-## CD ASV CDDCA 877: Mateja Marinkovic & Thomas Bowes (violin)
-## CD Aurophon AU 31899
-## CD BIS CD 697: Oleg Krysa & Alexander Fischer (violin)
-## CD Bridge 9104: Joanna Kurkowicz (violin), Sergey Schepkin (piano)
-## CD Capriccio 67 115: V. Spivakov (violin)
-## CD Col legno 0647 287: V. Spivakov (violin)
-## CD DG 449 966-2: Gidon Kremer (violin)
-## CD Duchesne CD 71 532: I. Tseitlin & P. Dheur (violin)
-## CD RCA Victor 74321-24894-2: Sasha Rozhdestvensky & Vladimir Spivakov (violin)

- -Title-RAW: Cadenza to Mozarts Piano Concerto in C minor KV 491 (first movement) -Title-Opus: 105 -Title-Dates: 1975 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Autumn -Title-Opus: 106 -Title-Dates: 1975 - -Title-RAW: Eight Songs from the incidental music to Schiller's -Title-Name: Don Carlos -Title-For: voice and piano or guitar -Title-Opus: 107 -Title-Dates: 1975 - -##
1. Prelude
-## 2. Hope
-## 3. A Path in the Mountains
-## 4. Evil Monks
-## 5. Love Song
-## 6. Abouth Theatre
-## 7. To my Friends
-## 8. Song of the Marauders
- -Title-Type: Piano Quintet -Title-Opus: 108 -Title-Dates: 1972-1976 - -##
In five movements:
-## 1. Moderato (attacca) - 6 min.
-## 2. Tempo di Valse - 5 min.
-## 3. Andante - 6 min.
-## 4. Lento (attacca) - 5 min.
-## 5. Moderato pastorale - 3 min. 30 sec.

-## LP Philips 411 107-1: Gidon Kremer (violin), Kathrin Rabus (violin), Gerard Causse (viola), Ko Iwasaki (cello), Elena Bashkirova (piano)
-## CD Arabesque Z 6707: Lark Quartet, Gary Graffman (piano)
-## CD ASV Quicksilva CD QS 6251: Barbican Piano Trio, Jan Peter Schmolck (violin), James Boyd (viola)
-## CD BIS CD 547: Tale Quartet, Roland Pцntinen (piano)
-## CD Black Box BBM 1093: Barbican Piano Trio, Jan Peter Schmolck (violin), James Boyd (viola)
-## CD ECM New Series 1755 (461 815-2): Keller Quartet, Alexei Lubimov (piano)
-## CD Etcetera KTC 1124: Mondriaan Quartet, Fred Oldenburg (piano)
-## CD Hyperion CDA 66885: Capricorn, Timothy Mason (cond)
-## CD Naxos 8.554728: Mark Lubotsky & Dimity Hall (violin), Theodore Kuchar & Irini Morozova (viola), Alexander Ivashkin & Julian Smiles(cello), Irina Schnittke (piano)
-## CD Naxos 8.554830: Vermeer Quartet, Boris Berman (piano)
-## CD Northern Flowers NF 9908: Lidia Kovalenko & Alexey Baev (violin), Alexey Popov (viola), Kirill Timofeev (cello), Yuri Serov (piano)
-## CD Russian Disc RDCD 10 031: Moscow String Quartet, Constantine Orbelian (piano)
-## CD Virgin Classics VC 7 91436-2: Borodin Quartet, Ludmilla Berlinsky (piano)
-## CD Naxos 8.554830: Vermeer Quartet, B. Berman (piano)

- -Title-RAW: "Der Sonnengesang des Franz von Assisi" for two mixed choruses and six instrumentalists -Title-Opus: 109 -Title-Dates: 1976 - -##
LP Melodiya: USSR State Chamber Chorus, Ensemble of Bolshoi Theatre Soloists, Valery Polyansky (cond)
- -Title-RAW: Transcription of Shostakovich's Preludes nos. 1 & 2 (from "Five preludes") -Title-For: small orchestra -Title-Opus: 110 -Title-Dates: 1976 - -Title-RAW: Moz-Art for two violins, after Mozart KV 416 -Title-Opus: 111 -Title-Dates: 1976 - -##
Allegretto / Allegro (one movement)>
-## Duration: 5 minutes 30 seconds.

-## CD BIS CD 697: Oleg Krysa & Alexander Fischer (violin)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Selecting a Target -Title-Opus: 112 -Title-Dates: 1976 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Legend on How Tsar Peter Got the Negro Married -Title-Opus: 113 -Title-Dates: 1976 - -Title-Count: Two -Title-Type: Fragments -Title-For: small symphony orchestra -Title-Related-How: from the music to the film -Title-Related-Name: The Tale of Tsar Peter -Title-Opus: 113a -Title-Dates: 1976 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Lion-Trainers -Title-Opus: 114 -Title-Dates: 1976 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Clowns and Kids -Title-Opus: 115 -Title-Dates: 1976 - -##
CD Capriccio 71061 (SACD): Rundfunk-Sinfonieorchester Berlin, Frank Strobel (cond)
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Ricky-Ticky-Tari -Title-Opus: 116 -Title-Dates: 1976 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The White Steamer -Title-Opus: 117 -Title-Dates: 1976 - -Title-RAW: Two Cadenzas to Beethoven's Violin Concerto in D major Op. 61 -Title-For: solo violin, 10 violins and timpani -Title-Opus: 118 -Title-Dates: 1975-1977 - -Title-Type: Concerto Grosso -Title-No: 1 -Title-For: two violins, prepared piano, harpsichord and 21 strings -Title-Opus: 119 -Title-Dates: 1977 - -##
In six movements:
-## 1. Preludio (attacca) - 6 min.
-## 2. Toccata (attacca) - 5 min.
-## 3. Recitativo - 9 min.
-## 4. Cadenza (attacca) - 2 min. 30 sec.
-## 5. Rondт (attacca) - 7 min. 30 sec.
-## 6. Postludio - 3 min.

-## CD BIS CD 377: New Stockholm Chamber Orchestra, Lev Markiz (cond), Christian Bergqvist (violin), P. Swedrup (violin), R. Pontinen (piano)
-## CD BIS CD 1507: New Stockholm Chamber Orchestra, Lev Markiz (cond), Christian Bergqvist (violin), P. Swedrup (violin), R. Pontinen (piano)
-## CD Chandos CHAN 9590: I Musici de Montreal, Yuli Turovsky (cond), Natalya Turovsky, Catherine Perrin
-## CD DG 429 413-2: Chamber Orchestra of Europe, Heinrich Schiff (cond), Gidon Kremer (violin), Tatiana Grindenko (violin), Yuri Smirnov (harpsichord and piano)
-## CD DG 439 452-2: Chamber Orchestra of Europe, Heinrich Schiff (cond), Gidon Kremer (violin), Tatiana Grindenko (violin), Yuri Smirnov (harpsichord and piano)
-## CD DG 445 520-2: Chamber Orchestra of Europe, Heinrich Schiff (cond), Gidon Kremer (violin), Tatiana Grindenko (violin), Yuri Smirnov (harpsichord and piano)
-## CD DG 471 626-2: Chamber Orchestra of Europe, Heinrich Schiff (cond), Gidon Kremer (violin), Tatiana Grindenko (violin), Yuri Smirnov (harpsichord and piano)
-## CD Manchester Classical Gallery CDMAN 175: St. Petersburg Mozarteum Chamber Orchestra, Arcady Shteinlukht (cond), Victor Kuleshov (violin), Ilia Ioff (violin), Julia Lev (harpsichord and piano)
-## CD RCA Victor Gold Seal GD 60957: London SO, Gennadi Rozhdestvensky (cond), Gidon Kremer & Tatiana Grindenko (violin)
-## CD RCA Victor 74321-24894-2 (2 CD-set): London SO, Gennadi Rozhdestvensky (cond), Gidon Kremer & Tatiana Grindenko (violin)
-## CD Sikorski SIK 7-003E: London SO, Gennadi Rozhdestvensky (cond), Gidon Kremer & Tatiana Grindenko (violin)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Human Requitale -Title-Opus: 120 -Title-Dates: 1977 - -Title-RAW: "Magdalina" for voice and piano to a poem by Boris Pasternak -Title-Opus: 121 -Title-Dates: 1977 - -##
Part of Hommage to Zhivago (1993)
- -Title-RAW: Moz-Art a la Haydn -Title-For: two violins and eleven strings -Title-Opus: 122 -Title-Dates: 1977 - -##
For 6 violins, 2 violas, 2 cellos and 1 double-bass.
-## Dedicated to Tatyana Grindenko and Gidon Kremer.

-## CD ASV CDDCA 877: Mateja Marinkovic & Thomas Bowes (violin)
-## CD BIS CD 1437: Tapiola Sinfonietta, Ralf Gothoni (cond), Ulf Wallin & Meri Englund (violin)
-## CD DG 429 413-2: Chamber Orchestra of Europe, Gidon Kremer (cond & violin), Tatiana Grindenko (violin)
-## CD DG 445 520-2: Chamber Orchestra of Europe, Gidon Kremer (cond & violin), Tatiana Grindenko (violin)
-## CD Nonesuch 7559-79633-2: Kremeratica Baltica, Gidon Kremer (violin)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: My Memories Take Me To You -Title-Opus: 123 -Title-Dates: 1977 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Adventures of Travka -Title-Opus: 124 -Title-Dates: 1977 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Life-Story of an Unknown Actor -Title-Opus: 125 -Title-Dates: 1977 - -##
CD Olympia OCD 606: USSR Cinematography SO, Emin Khachaturian (cond)
-## CD Capriccio hybrid CD/SACD CC 71041: Berlin Radio Symphony Orchestra, Frank Strobel (cond)
- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Ascent -Title-Opus: 126 -Title-Dates: 1977 - -##
CD Capriccio 71061 (SACD): Rundfunk-Sinfonieorchester Berlin, Frank Strobel (cond)
- -Title-Name: In Memoriam -Title-For: symphony orchestra -Title-Opus: 127 -Title-Dates: 1972-1978 - -##
Orchestral version of the piano quintet
-## 1. Moderato (attacca) - 7 min.
-## 2. Tempo di Valse - 6 min.
-## 3. Andante (attacca) - 7 min.
-## 4. Lento - 4 min. 30 sec.
-## 4. Moderato pastorale - 3 min. 30 sec.

-## CD BIS CD 447: Malmц SO, Lev Markiz (cond)
-## CD Chandos CHAN 9466: Russian State Symphony Orchestra, Valery Polyansky (cond)
-## CD Sony Classical CD 48241: London SO, Seiji Ozawa (cond)

- -Title-Type: Concerto -Title-No: 3 -Title-For: violin and chamber orchestra -Title-Opus: 128 -Title-Dates: 1978 - -##
In three movements:
-## 1. Moderato - 10 min.
-## 2. Agitato (attacca) - 6 min.
-## 3. Moderato - 11 min.

-## LP Eurodisc 201 234: Berlin Philharmonic Chamber Ensemble, W. Nelson (cond), Gidon Kremer (violin)
-## LP Melodiya C10 15681 000: Soloists Ensemble, Y. Nikolayevsky (cond), Oleg Kagan (violin) -## CD BIS CD 517: Malmц SO, Eri Klas (cond), Oleg Krysa (violin)
-## CD Ondine ODE 893-2: Virtuosi di Kuhmo, Sibelius Academy Wind Players, Ralf Gothoni (cond), Mark Lubotsky (violin)
-## CD Phoenix PHCD 150: Moscow Tchaikovsky SO, Mikhail Kukushkin (cond), Levon Ambartsumian (violin)
-## CD Teldec 4509-94540-2: Chamber Orchestra of Europe, Gidon Kremer (violin)

- -Title-Type: Sonata -Title-No: 1 -Title-For: cello and piano -Title-Opus: 129 -Title-Dates: 1978 - -##
In three movements:
-## 1. Largo (attacca) - 4 min.
-## 2. Presto (attacca) - 7 min.
-## 3. Largo - 12 min.

-## CD Aeon AECD 0636: Marc Coppey (cello), Peter Laul (piano)
-## CD BIS CD 336: Torleif Thedйen (cello), Roland Pцntinen (piano)
-## CD Black Box BBM 1032: Raphael Wallfisch (cello), John York (piano)
-## CD Chandos CHAN 9705: Alexander Ivashkin (cello), Irina Schnittke (piano)
-## CD Hyperion CDA 67534: Alban Gerhardt (cello), Steven Osborne (piano)
-## CD Globe GLO 5041: D. Ferschtmann (cello), M. Baslavskaya (piano)
-## CD Harmonia Mundi HMN 91 1628: Xavier Phillips (cello), Huseyin Sermet (piano)
-## CD Marco Polo 8.223334: Maria Kliegel (cello), Raimund Havenith (piano)
-## CD Melodiya SUCD 10 00088: T. Hugh (cello), C. Tourocque (piano)
-## CD Ode Manu CDMANU 1480: Alexander Ivashkin (cello), Tamas Vesmas (piano)
-## CD Quartz QTZ 2032: Matthew Barley (cello), Stephen De Pledge (piano)
-## CD Thorofon CTH 2459: Sonja Schrцder (cello), Peter Martin (piano)
-## CD Unicorn Kanchana DKP CD 9083: Alexander Baillie (cello), Piers Lane (piano)
-## CD United Recordings 88006-2: Paul Marleyn (cello), Sarah Morley (piano)

- -Title-RAW: "Silent Night" ("Stille Nacht") arranged -Title-For: violin and piano -Title-Opus: 130 -Title-Dates: 1978 - -##
On motives of the like-named German Christmas carol.
-## Lento (one movement).
-## Employing the melody by Franz Xaver Gruber.
-## Duration: 5 minutes

-## CD ASV CDDCA 877: Mateja Marinkovic (violin), Linn Hendry (piano)
-## CD BIS CD 527: U. Wallin (violin), Roland Pцntinen (piano)
-## CD Black Box BBM 1025: Roman Mints (violin), Evgenia Chudinovich(piano)
-## CD Nimbus NI 5631: Daniel Hope (violin), Simon Mulligan (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)
-## CD Teldec 4509-94540-2: Gidon Kremer (violin), Christoph Eschenbach (piano)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Father Sergei -Title-Opus: 131 -Title-Dates: 1978 - -Title-Type: Incidental music -Title-Related-How: to Alexander Vampilov's play -Title-Related-Name: A Duck Shooting Party -Title-Opus: 132 -Title-Dates: 1978 - -Title-Type: Incidental music -Title-Related-How: to Nikolai Gogol's play -Title-Related-Name: The Dead Soul Register (The Census List) -Title-Opus: 133 -Title-Dates: 1978 - -##
CD Chandos CHAN 9885: Russian State SO, Valeri Polyansky (cond), Lev Butenin (reciter)
- -Title-RAW: Hymn IV -Title-For: cello, bassoon, double-bass, harpsichord, harp, timpani and bells -Title-Opus: 134 -Title-Dates: 1974-1979 - -##
Duration: 3 minutes.

-## LP Melodiya C10 28753 008: USSR Bolshoi Theatre Soloists Ensemble, A. Lazarev (cond)
-## CD BIS CD 507: Torleif Thйdйen (cello), Christian Davidsson (bassoon), Entcho Radoukanov (double-bass), Mayumi Kamata (harpsichord), Ingegerd Fredlund (harp), Anders Holdar & Anders Loguin (timpani & bells)
-## CD BIS CD 300507: Torleif Thйdйen (cello), Christian Davidsson (bassoon), Entcho Radoukanov (double-bass), Mayumi Kamata (harpsichord), Ingegerd Fredlund (harp), Anders Holdar & Anders Loguin (timpani & bells)
-## CD Melodiya SUCD 10 00061: USSR Bolshoi Theatre Soloists Ensemble, A. Lazarev (cond)

- -Title-Type: Symphony -Title-No: 2 -Title-Name: St. Florian -Title-For: vocal soloists, chamber choir and symphony orchestra -Title-Opus: 135 -Title-Dates: 1979 - -##
In six movements:
-## 1. Recitativo (Kyrie) - 11 min.
-## 2. Maestoso (Gloria) - 5 min.
-## 3. Moderato (Credo) - 9 min.
-## 4. Pesante (Cucifixus) - 8 min. 30 sec.
-## Coda: Agitato (Et resurrexit), Maestoso - 4 min.
-## Introduction to V. Andante (Sanctus) - 4 min.
-## 5. Andante (Sanctus. Benedictus) - 8 min.
-## 6. Andante (Agnus Dei) - 11 min.

-## LP Melodiya C10 23085 (2 LP-set): Leningrad PO, USSR Ministry of Culture Chamber Chorus, Gennadi Rozhdestvensky (cond)
-## CD BBC Radio Classics 15656-9196-2: BBC Symphony Chorus and Orchestra, BBC Singers, Gennadi Rozhdestvensky (cond), Jean Temperley (contralto), -## Paul Esswood (alto), Neil Jenkins (tenor), Jonathan Robarts (bass)
-## CD BIS CD 667: Royal Stockholm PO, Mikaeli Chamber Choir, Leif Segerstam (cond), Mikael Bellini (alto), -## Malena Ernman (mezzo-soprano), Goran Eliasson (tenor), Torkel Borelius (bass)
-## CD Chandos CHAN 9519: Russian State Symphonic Cappella and SO, Valery Polyansky (cond), -## Marina Katsman contralto), Yaroslav Zdorov (alto), Oleg Dolgov (tenor), Sergei Veprintsev (bass)
-## CD Melodiya SUCD 10 00063: Leningrad PO, USSR Ministry of Culture Chamber Chorus, Gennadi Rozhdestvensky (cond)

- -Title-Type: Concerto -Title-For: piano and string orchestra -Title-In-Movements: in a single movement -Title-Opus: 136 -Title-Dates: 1979 - -##
Duration: 21 minutes.

-## LP Melodiya C10 22845 004: Lithuanian Chamber Orchestra, S. Sondeckis (cond), V. Krainev (cond)
-## CD BIS CD 377: New Stockholm Chamber Orchestra, Lev Markiz (cond), Roland Pontinen (piano)
-## CD Brioso BR 109: Moscow PO, Vassily Sinaisky (cond), O. Volkov (piano)
-## CD Capriccio 67 016: Moscow Virtuosi, V. Spivakov (cond)
-## CD CHAN 9564: Russian State SO, Valery Polyansky (cond), Igor Khudolei (piano)
-## CD Delos DE 3259: Moscow Chamber Orchestra, Constantine Orbelian (pianist and conductor)
-## CD Erato 2292-45742-2: London Sinfonietta, Gennadi Rozhdestvensky (cond), Victoria Postnikova (piano)
-## CD Koch International Classics 37159-2: Moscow PO, Donald Barra (cond), Israela Margalit (piano)
-## CD Manchester Classical Gallery CDMAN 175: St. Petersburg Mozarteum Chamber Orchestra, Arcady Shteinlukht (cond), Veronica Reznikovskaya (piano)
-## CD MV Productions SPPS CD06: Omsk Chamber Orchestra, Yuri Nikolaevsky (cond), Svetlana Ponomarлva (piano)
-## CD Ondine ODE 893-2: Virtuosi di Kuhmo, Ralf Gothoni (cond & piano)
-## CD RCA Victor Red Seal 09026- 60466-2: Moscow Virtuosi, Vladimir Spivakov (cond), Vladimir Krainev (piano)
-## CD RCA Victor 74321-24894-2 (2 CD-set): Moscow Virtuosi, Vladimir Spivakov (cond), Vladimir Krainev (piano)
-## CD Teldec 2292-45742-2: London Sinfonietta, Gennadi Rozhdestvensky (cond), Victoria Postnikova (piano)

- -Title-RAW: Polyphonic Tango -Title-For: ensemble -Title-Opus: 137 -Title-Dates: 1979 - -##
Live Rec: Bolshoi Theatre Soloists Ensemble, A. Lazarev (cond)
-## CD CPO 999 804-2: Radio-Philharmonie Hannover des NDR, Eiji Oue (cond)
- -Title-RAW: Peaceful Music (Stille Musik) -Title-For: violin and cello -Title-Opus: 138 -Title-Dates: 1979 - -##
Lento (one movement).
-## Duration: 6 minutes.

-## CD ASV CDDCA 877: Mateja Marinkovic (violin), Timothy Hugh (cello)
-## CD BIS CD 697: Oleg Krysa (violin), Torleif Thйdйen (cello)
-## CD Marco Polo 8.223334: Burkhard Godhoff (violin), Maria Kliegel (cello)
-## CD Naxos 8.554728: Mark Lubotsky & Dimity Hall (violin), Theodore Kuchar & Irini Morozova (viola), Alexander Ivashkin & Julian Smiles(cello), Irina Schnittke (piano)

- -Title-RAW: In Memoriam Igor Strawinsky, Sergei Prokofiev and Dmitri Shostakovich -Title-For: piano six hands -Title-Opus: 139 -Title-Dates: 1979 - -##
Based on Chinese March from "The nightingale", Humoresque Scherzo and Polka from "The age of gold".

-## Live Rec: Robert Nasveld, Polo de Haas & Nico de Vente (piano)
-## Live Rec: Pianokwadraat (piano)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Paradoxes of the Evolution -Title-Opus: 140 -Title-Dates: 1979 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Fantasies of Faryatyev -Title-Opus: 141 -Title-Dates: 1979 - -Title-Name: Passacaglia -Title-For: large symphony orchestra -Title-Opus: 142 -Title-Dates: 1979-1980 - -##
Duration: 19 minutes.

-## CD BIS 437: Malmц SO, Leif Segerstam (cond)

- -Title-RAW: Gogol Suite -Title-For: orchestra -Title-Related-How: from the spectacle -Title-Related-Name: The Tale of the Inspector -Title-Opus: 143 -Title-Dates: 1980 - -##
Suite from the music to a production of "The Dead Souls Register".
-## Orchestral version by Gennadi Rozhdestvensky.
-## In eight movements:
-## 1. Overture - 1 min.
-## 2. Chichikov's Childhood - 2 min. 30 sec.
-## 3. The Portrait - 7 min.
-## 4. The Overcoat - 2 min. 30 sec.
-## 5. Ferdinand VIII - 1 min. 30 sec.
-## 6. The Bureaucrats - 2 min. 30 sec.
-## 7. The Ball - 6 min. 30 sec.
-## 8. The Legacy - 6 min.

-## LP Melodiya C10 18761-62: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)
-## CD BIS CD 557: Malmц SO, Lev Markiz (cond)
-## CD Pope Music PM 1007-2: Russian SO, Mark Gorenstein (cond)

- -Title-RAW: "The Revisionist's Tale", transcription of five movements of the Gogol Suite -Title-For: two pianos -Title-Opus: 143a - -##
CD Sonora Products SO 22566 CD: Natalia Zusman & Inna Heifetz (pianos)
- -Title-RAW: Three Madrigals for soprano, violin, viola, double-bass, vibraphone and harpsichord on poems by Francisco Tanzer -Title-Opus: 144 -Title-Dates: 1980 - -##
1. Sur une йtoile (Andante)
-## 2. Entfernung (Moderato)
-## 3. Reflection (Andante)

-## LP Melodiya C10 18403-4: Bolshoi Theatre Soloists Ensemble, A. Lazarev (cond), N. Lee (soprano)
-## CD Hyperion CDA 66885: Capricorn, , Timothy Mason (cond), Sarah Leonard (soprano)

- -Title-RAW: Three Scenes for soprano and ensemble without text -Title-Opus: 145 -Title-Dates: 1980 - -##
Dedicated to Mark Pekarski and his ensemble.
-## 1. Poco pesante
-## 2. Moderato
-## 3. Andante
- -Title-RAW: Moz-Art, version -Title-For: ensemble -Title-Opus: 146 -Title-Dates: 1980 - -##
For oboe, harp, harpsichord, violin, cello and double bass.
-## Allegretto (one movement)
- -Title-Name: Minnesang -Title-For: 52 voices -Title-Opus: 147 -Title-Dates: 1980-1981 - -##
Duration: 19 minutes.

-## CD Chandos CHAN 9126: Danish National Radio Choir, Stefan Parkman Cond)
-## CD Hyperion CDA 67297: Holst Singers, Stephen Layton (cond)

- -Title-Type: String Quartet -Title-No: 2 -Title-Opus: 148 -Title-Dates: 1980 - -##
Commissioned by Universal Edition, Vienna.
-## In four movements:
-## 1. Moderato (attacca) - 3 min.
-## 2. Agitato (attacca) - 6 min.
-## 3. Mesto (attacca) - 6 min.
-## 4. Moderato - 7 min.

-## LP Panton 81 0752: Stamic Quartet
-## CD Arabesque Z 6707: Lark Quartet
-## CD BIS CD 467: Tale Quartet
-## CD Claves CD 50-9504/5 (2 CD-set): (Arrangement by Rachlevsky) Kremlin Chamber Orchestra, Misha Rachlevsky (cond)
-## CD Collins Classics 1450-2: Duke Quartet
-## CD Gramavision GV 79439-2: Arditti Quartet
-## CD Nonesuch 79500-2: Kronos Quartet
-## CD Nonesuch 7559-79504-2 (10 CD-set): Kronos Quartet

- -Title-RAW: Two Short Pieces -Title-For: organ -Title-Opus: 149 -Title-Dates: 1980 - -##
CD Melodiya SUCD 10 00009: O. Yanchenko (organ)
-## CD Melodiya SUCD 10 00066: O. Yanchenko (organ)
-## CD Aurophon AU 31840
-## CD Precosa-Aulos PRE 66 022 AUL: F. Herz (organ)
- -Title-RAW: Three Cadenzas to Mozart's Piano Concerto in C major KV 467 -Title-Opus: 150 -Title-Dates: 1980 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Plane Crew -Title-Opus: 151 -Title-Dates: 1980 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Larisa -Title-Opus: 152 -Title-Dates: 1980 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Little Tragedies -Title-Opus: 153 -Title-Dates: 1980 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Farewell -Title-Opus: 154 -Title-Dates: composed with Artyomov, 1980 - -Title-Type: Symphony -Title-No: 3 -Title-Opus: 155 -Title-Dates: 1981 - -##
In four movements:
-## 1. Moderato
-## 2. Allegro
-## 3. Allegro pesante (attacca)
-## 4. Adagio

-## LP Melodiya C10 25175: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)
-## CD BIS CD 477: Stockholm PO, Eri Klas (cond)
-## CD Melodiya SUCD 10 00064: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Eugene Onegin -Title-Opus: 156 -Title-Dates: 1981 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: What Does Babirussya Need Tusks For? -Title-Opus: 157 -Title-Dates: 1981 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: I Am With You Again -Title-Opus: 158 -Title-Dates: 1981 - -Title-Type: Concerto Grosso -Title-No: 2 -Title-For: violin, cello and triple symphony orchestra -Title-Opus: 159 -Title-Dates: 1981-1982 - -##
In four movements:
-## 1. Andantino. Allegro - 6 min.
-## 2. Pesante - 9 min.
-## 3. Allegro - 5 min. 30 sec.
-## 4. Andantino - 12 min.

-## LP Melodiya A10 00509 005: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)
-## CD BIS CD 567: Malmц SO, Lev Markiz (cond), Oleg Krysa (violin), Torleif Thйdйen (cello)
-## CD Chandos CHAN 10180: Russian State SO, Valeri Polyansky (cond), Tatiana Grindenko (violin), Alexander Ivashkin (cello)
-## CD Melodiya SUCD 10-00068: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond)

- -Title-Type: Septet -Title-For: flute, two clarinets, violin, viola, cello and harpsichord or organ -Title-Opus: 160 -Title-Dates: 1981-1982 - -##
Introduction. Moderato (attacca)
-## 1. Perpetuum mobile. Allegretto
-## 2. Choral. Moderato

-## CD Chandos CHAN 9466: Bolshoi Theatre Orchestra Soloists Ensemble, Valery Polyansky (cond)

- -Title-RAW: "Course of life" ("Lebenslauf") -Title-For: four metronomes, piano and three percussionists -Title-Opus: 161 -Title-Dates: 1982 - -##
Dedicated to Wilfried Brennecke and John Cage.
- -Title-RAW: A Paganini -Title-For: violin solo -Title-Opus: 162 -Title-Dates: 1982 - -##
Andante (one movement).
-## Duration: 11 minutes.

-## LP DG 415 484-1: Gidon Kremer (violin)
-## CD ASV CDDCA 877: Mateja Marinkovic (violin)
-## CD BIS CD 697: Oleg Krysa (violin)
-## CD BIS CD 1051: Ilya Gringolts (violin)
-## CD Bridge 9104: Joanna Kurkowicz (violin)
-## CD DG 415 484-2: Gidon Kremer (violin)
-## CD DG 445 520-2: Gidon Kremer (violin)
-## CD Phoenix PHCD 150: Levon Ambartsumian (violin)
-## CD Sonora Products SO 22579 CD: Valery Gradow (violin)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Sturdy Boy -Title-Opus: 163 -Title-Dates: 1982 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Autumn -Title-Opus: 164 -Title-Dates: 1982 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Pencil and Eraser -Title-Opus: 165 -Title-Dates: 1982 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Meteoric Shower/Star Fall -Title-Opus: 166 -Title-Dates: 1982 - -Title-Name: Seid Nьchtern und Wachet -Title-Type-After-Name: cantata -Title-For: soloists (counter-tenor, counter-alto, tenor and bass), mixed chorus and orchestra -Title-Opus: 167 -Title-Dates: 1983 - -##
Text from "The History of D. Johann Faustus".
-## Parts:
-## 1. Folget nun - 3 min.
-## 2. Die vierundzwanzig Jahre - 2 min.
-## 3. Gehen also miteinander - 2 min.
-## 4. Meine liebe - 5 min.
-## 5. Ach, mein Herr Fauste - 5 min.
-## 6. Doktor Faustus klagte - 3 min.
-## 7. Es geschah - 5 min.
-## 8. Diese gemeldete Magistri - 3 min.
-## 9. Also endet sich - 4 min.
-## 10. Seid nьchtern und wachet - 3 min.

-## CD BIS 437: Malmц SO & Chorus, James DePreist (cond), Inger Blom (mezzo-soprano), Mikael Bellini (alto), Louis Devos (tenor), Ulrik Cold (bass)

-## Opus 168: String Quartet no. 3 (1983)
-##
Commissioned by Society for New Music, Mannheim.
-## In three movements:
-## 1. Andante - 5 min.
-## 2. Agitato - 7 min.
-## 3. Pesante - 7 min.

-## CD Arabesque Z 6707: Lark Quartet
-## CD Arco Diva UP 0054-2 131: Kapralova Quartet
-## CD BIS CD 467: Tale Quartet
-## CD Etcetera KTC 1124: Mondriaan Quartet
-## CD LDR CD1008: Britten Quartet
-## CD Virgin Classics VC 7 91436-2: Borodin Quartet
-## CD Nonesuch 79500-2: Kronos Quartet

- -Title-RAW: Cadenza to Mozart's Piano Concerto in C major KV 503 (first movement) -Title-Opus: 169 -Title-Dates: 1983 - -Title-RAW: Two Cadenzas to Mozart's Bassoon Concerto in B flat major KV 191 -Title-Opus: 170 -Title-Dates: 1983 - -Title-Name: Sound and Echo (Schall und Hall) -Title-For: trombone and organ -Title-Opus: 171 -Title-Dates: 1983 - -##
Lento (one movement).
-## Duration: 12 minutes.

-## CD BIS CD 488: Christian Lindberg (trombone), Gunnar Idenstam (organ)
-## CD Chandos CHAN 9466: Anatoly Skobelev (trombone), Ludmilla Golub (organ)

- -Title-RAW: "A Streetcar Named Desire (Endstation Sehnsucht)", ballet in two acts by John Neumeier after the play by Tennessee Williams (from Symphony No. 1) -Title-Opus: 172 -Title-Dates: 1983 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Leave-Taking -Title-Opus: 173 -Title-Dates: 1983 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: A Fairy Tale of Travels -Title-Opus: 174 -Title-Dates: 1983 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Darling of the Audience -Title-Opus: 175 -Title-Dates: 1983 - -Title-Type: Symphony -Title-No: 4 -Title-For: two vocal soloists, piano, chamber chorus and chamber orchestra -Title-In-Movements: in a single movement -Title-Opus: 176 -Title-Dates: 1984 - -##
Duration: 41 minutes.

-## LP Melodiya A10 00271 005: USSR Ministry of Culture Orchestra SO, Gennadi Rozhdestvensky (cond), Viktoria Postnikova (piano) -## CD BIS CD 497: Stockholm Sinfonietta, Uppsala Academic Chamber Choir, Okko Kamu (cond), Mikael Bellini (alto)
-## CD Chandos CHAN 9463: Russian State SO, Russian State Symphonic Cappella, Valery Polyansky (cond), Iaroslav Zdorov (alto), Dmitri Pianov (tenor)
-## CD Melodiya SUCD 10-00065: USSR Ministry of Culture Orchestra SO, Gennadi Rozhdestvensky (cond), Viktoria Postnikova (cond) (Recording: 1986)

- -Title-Type: Concerto -Title-No: 4 -Title-For: violin and orchestra -Title-Opus: 177 -Title-Dates: 1984 - -##
In four movements:
-## 1. Andante (attacca) - 5 min.
-## 2. Vivo (attacca) - 7 min.
-## 3. Adagio (attacca) - 9 min. 30 sec.
-## 4. Lento - 12 min. 30 sec.

-## CD BIS CD517: Malmц SO, Eri Klas (cond), Oleg Krysa (violin)
-## CD Teldec 4509-98440-2: Members of Philharmonia Orchestra, Gidon Kremer (violin)

- -Title-RAW: Transcription of Scott Joplin's Ragtime -Title-For: orchestra -Title-Opus: 178 -Title-Dates: 1984 - -Title-RAW: Transcription of Adolf Jensen's Serenada -Title-For: mezzo-soprano and orchestra -Title-Opus: 179 -Title-Dates: 1984 - -Title-RAW: Transcription of Friedrich Nietsche's Incantation -Title-For: mezzo-soprano and orchestra -Title-Opus: 180 -Title-Dates: 1984 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The White Poodle -Title-Opus: 181 -Title-Dates: 1984 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Dead Souls -Title-Opus: 182 -Title-Dates: 1984 - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Dead Souls -Title-For: orchestra -Title-Opus: 182a - -##
Live Rec: Royal Concertgebouw Orchestra, Gennadi Rozhdestvensky (cond), Viktoria Postnikova (piano)
- -Title-Name: Ritual -Title-For: large symphony orchestra -Title-Opus: 183 -Title-Dates: 1984-1985 - -##
In memory of the victims of the Second World War (on occasion of the 40th Anniversary of the liberation of Belgrade). -## Moderato (one movement). -## Duration: 9 minutes.

-## CD BIS 437: Malmц SO, Leif Segerstam (cond)

- -Title-Type: Concerto -Title-For: soprano and mixed chorus -Title-Opus: 184 -Title-Dates: 1984-1985 - -##
On verses from the "Book of Mournful Songs" by Gregory of Narek.
-## Commissioned by Moscow Chamber Choir.
-## Part One - 15 min.
-## Part Two - 7 min. 30 sec.
-## Part Three - 13 min.
-## Part Four - 4 min. 30 sec.

-## CD BIS 1157: Swedish Radio Choir, Tonu Kaljuste (cond)
-## CD Chandos CHAN 9126: Danish National Radio Choir, Stefan Parkman Cond)
-## CD Chandos CHAN 9332: Russian State Symphonic Cappella, Valery Polyansky (cond)
-## CD Hyperion CDA 67297: Holst Singers, Stephen Layton (cond)
-## CD Melodiya SUCD 10 00066: USSR Ministry of Culture Chamber Chorus, Valery Polyansky (cond), E. Dof-Donskaya (soprano)
-## CD Nonesuch 79500-2: Kronos Quartet (arrangement)

- -Title-RAW: Othello, ballet in two acts by John Neumeier after the tragedy by William Shakespeare -Title-Opus: 185 -Title-Dates: 1985 - -Title-RAW: "Sketches", choreographic phantasy on a theme by Nikolai Gogol, ballet -Title-In-Movements: in one movement -Title-Opus: 186 -Title-Dates: 1985 - -##
CD CdM Russian Season RUS 288 155: Bolshoi Theatre Orchestra, Andrey Chistiakov (cond)
- -Title-RAW: "(K)ein Sommernachtstraum", subtitled -Title-Name: Not after Shakespeare -Title-For: symphony orchestra -Title-Opus: 187 -Title-Dates: 1985 - -##
Duration: 11 minutes.

-## CD BIS 437: Malmц SO, Leif Segerstam (cond)
-## CD Chandos CHAN 9722: Russian State SO, Valery Polyansky (cond)
-## CD Pope Music Pm 1007-2: Russian SO, Mark Gorenstein (cond)

- -Title-Type: Concerto Grosso -Title-No: 3 -Title-For: two violins, harpsichord, celesta, piano and fourteen strings -Title-Opus: 188 -Title-Dates: 1985 - -##
In five movements:
-## 1. Allegro - 2 min.
-## 2. Risoluto - 3 min.
-## 3. Pesante - 8 min.
-## 4. Adagio - 8 min.
-## 5. Moderato - 3 min.

-## CD Decca 430 698-2: Royal Concertgebouw Orchestra, Riccardo Chailly (cond), R. Brautigam (harpsichord/piano), Viktor Lieberman & Jaap van Zweden (violin)
-## CD London 430 698-2: Royal Concertgebouw Orchestra, Riccardo Chailly (cond), R. Brautigam (harpsichord/piano), Viktor Lieberman & Jaap van Zweden (violin)
-## CD BIS CD 537: Stockholm Chamber Orchestra, Lev Markiz (cond), Patrik Swedrup & Tale Olsson (violin)

- -Title-Type: Concerto -Title-For: viola and orchestra -Title-Opus: 189 -Title-Dates: 1985 - -##
In three movements:
-## 1. Largo - 5 min.
-## 2. Allegro molto - 12 min.
-## 3. Largo - 17 min.

-## LP Melodiya A10 00499 007: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond), Yuri Bashmet (viola)
-## CD BIS CD 447: Malmц SO, Lev Markiz (cond), Nobuko Imai (viola)
-## CD EMI CDC 5 55107-2: Jerusalem SO, David Shallon (cond), Tabea Zimmermann (viola)
-## CD Koch Schwann 31523-2: Philharmonia Orchestra, Heinrich Schiff (cond), Isabelle van Keulen (viola)
-## CD Melodiya SUCD 10-00068: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond), Yuri Bashmet (viola)
-## CD Regis RRC 1141: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond), Yuri Bashmet (viola)
-## CD RCA Victor Red Seal RD 60446: London SO, Mstislav Rostropovich (cond), Yuri Bashmet (viola)
-## CD RCA Victor 74321-24894-2 (2 CD-set): London SO, Mstislav Rostropovich (cond), Yuri Bashmet (viola)
-## CD ECM New Series 1471 (437 199-2): Saarbrьcken Radio SO, Dennis Russell Davies (cond), Kim Kashkashian (viola)
-## DVD TDK DV-VPOVG: Vienna Philharmonic Orchestra, Valery Gergiev (cond), Yuri Bashmet (viola) (Live recording, 2000)

- -Title-RAW: Music to an Imagined Play -Title-For: ensemble -Title-Opus: 190 -Title-Dates: 1985 - -##
In three movements:
-## 1. Winter Road
-## 2. Budding Song
-## 3. March

-## CD Olympia OCD 606: USSR Cinematography SO, Emin Khachaturian (cond)

- -Title-Type: String Trio -Title-Opus: 191 -Title-Dates: 1985 - -##
Commissioned by the Alban Berg Society in commemoration of the composer's 100th Anniversary.
-## In two movements:
-## 1. Moderato - 12 min. 30 sec.
-## 2. Adagio - 13 min.

-## CD ASV CDDCA 868: Mateja Marinkovic (violin), Paul Silverthorne (viola), Timothy Hugh (cello)
-## CD BIS CD 547: Patrik Swedrup (violin), Ingegerd Kierkegaard (viola), Helena Nilsson (cello)
-## CD EMI CDC 5 55627 2: Gidon Kremer (violin), Yuri Bashmet (viola), M. Rostropovich (cello)
-## CD Hyperion CDA 66885: Capricorn
-## CD Naxos 8.554728: Mark Lubotsky & Dimity Hall (violin), Theodore Kuchar & Irini Morozova (viola), Alexander Ivashkin & Julian Smiles(cello), Irina Schnittke (piano)

- -Title-RAW: Transcription of Alban Berg's Canon, arrangement -Title-For: nine strings -Title-Opus: 192 -Title-Dates: 1985 - -Title-RAW: Transcription of Alban Berg's Canon, arrangement -Title-For: violin and chamberorchestra -Title-Opus: 192a -Title-Dates: 1987 - -##
CD EMI CDC 5 55627 2: Moscow Soloists, Gidon Kremer (violin)
- -Title-Type: Concerto -Title-No: 1 -Title-For: cello and orchestra -Title-Opus: 193 -Title-Dates: 1985-1986 - -##
In four movements:
-## 1. Pesante: Moderato - 14 min.
-## 2. Largo - 10 min.
-## 3. Allegro vivace - 4 min.
-## 4. Largo - 12 min.

-## CD BIS CD 507: Danish National Radio SO, Leif Segerstam (cond), Torleif Thйdйen (cello)
-## CD BIS CD 1507: Danish National Radio SO, Leif Segerstam (cond), Torleif Thйdйen (cello)
-## CD BIS CD 300507: Danish National Radio SO, Leif Segerstam (cond), Torleif Thйdйen (cello)
-## CD Chandos CHAN 9852: Russian State Symphony Orchestra, Valery Polyansky (cond), Alexander Ivashkin (cello)
-## CD EMI CDC 7 54443-2: London PO, Kurt Masur (cond), Natalia Gutman (cello)
-## CD Marco Polo 8.223334: Saarbrucken Radio SO, Gerhard Markson (cond), Maria Kliegel (cello)
-## CD Regis RRC 1141: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond), Natalia Gutman (cello)
-## CD Sikorski SIK 7-003E: USSR Ministry of Culture SO, Gennadi Rozhdestvensky (cond), Natalia Gutman (cello)

- -Title-RAW: "Peer Gynt", ballet in three acts by John Neumeier based on Henrik Ibsen's drama -Title-Opus: 194 -Title-Dates: 1986 - -##
Parts:
-## Prologue
-## 1. Into the World - 4 min.
-## Act I: Norway
-## 2. Peer and his mother Еse - 2 min.
-## 3. Peerґs Imagination - 4 min.
-## 4. Peer at Ingridґs wedding celebration - 2 min.
-## 5. Appearance of Solveig and her parents - 4 min.
-## 6. Pas de deux: Solveig-Peer - 4 min.
-## 7. The World of the small-minded Locals - 1 min.
-## 8. In the mountains with Ingrid - 5 min.
-## 9. The Troll-world - 5 min.
-## 10. The Bцyg - 3 min. 30 sec.
-## 11. Peerґs Solitude - 1 min. 30 sec.
-## 12. Solveig comes to Peer (pas de deux) - 6 min. 30 sec.
-## 13. The Woman in Green - 2 min. 30 sec.
-## 14. Еseґs Death (pas de deux) - 5 min. 30 sec.
-## Act II: Out in the World - Illusions
-## 15. Overture - 3 min. 30 sec.
-## 16. Auditions - 4 min.
-## 17. Rainbow Sextet - 3 min.
-## 18. Peer as Slavedealer - 1 min.
-## 19. Scene and Opening Night Party - 4 min. 30 sec.
-## 20. Emperor of the World - 2 min. 30 sec.
-## 21. Peerґs dance with the whip - 2 min.
-## 22. Solveigґs dance - 2 min. 30 sec.
-## 23. Peerґs mad dance - 2 min. 30 sec.
-## 24. Peerґs coronation - 1 min.
-## 25. Finale - 2 min.
-## Act III: Return
-## 26. Mesto - 2 min.
-## 27. Andante - 4 min.
-## 28. Peerґs memories - 2 min.
-## 29. Ingridґs burial - 3 min.
-## 30. Scene with Solveig - 6 min. 30 sec.
-## 31. Peer surrounded by his aspects - 1 min.
-## 32. Song of the World - 30 sec.
-## 33. The Onion - 3 min.
-## 34. Despair and escape - 40 sec.
-## 35. Deliverance - 2 min.
-## Epilogue:
-## 36. Out of the world - 24 min.
-## 37. Appendix - 2 min.

-## CD BIS CD 677/8: Stockholm Royal Opera Orchestra, Eri Klas (cond)

- -Title-Type: Epilogue -Title-Related-How: from -Title-Related-Name: Peer Gynt -Title-For: symphony orchestra and tape (mixed chorus) -Title-Opus: 194a -Title-Dates: 1987 - -##
Live Rec: Oslo PO, Mariss Yansons (cond)
- -Title-Type: Epilogue -Title-Related-How: from -Title-Related-Name: Peer Gynt -Title-For: cello, piano and tape -Title-Opus: 194b -Title-Dates: 1993 - -##
CD Chandos CHAN 9705: Alexander Ivashkin (cello), Irina Schnittke (piano)
- -Title-Type: Trio Sonata -Title-For: chamber orchestra -Title-Opus: 195 -Title-Dates: 1987 - -##
Arrangement after the String Trio (1985).
-## 1. Moderato - 18 min.
-## 2. Adagio - 16 min.

-## CD BIS CD 537: Stockholm Chamber Orchestra, Lev Markiz (cond)
-## CD Col legno WWE 8CD20041 (9 CD-set)
-## CD ECM New Series 453-512-2: Stuttgart Chamber Orchestra, Dennis Russell Davies (cond)
-## CD RCA Victor Red Seal RD 60446: Moscow Soloists, Yuri Bashmet (cond)

- -Title-Name: Quasi Una Sonata -Title-For: violin and chamber orchestra -Title-Opus: 196 -Title-Dates: 1987 - -##
Arrangement of Violin Sonata no. 2 (1967).

-## CD BIS CD 1437: Tapiola Sinfonietta, Ralf Gothoni (cond), Ulf Wallin (violin)
-## CD DG 429 413-2: Chamber Orchestra of Europe, Gidon Kremer (cond & violin), Yuri Smirnov (piano)
-## CD DG 445 520-2: Chamber Orchestra of Europe, Gidon Kremer (cond & violin), Yuri Smirnov (piano)
-## CD DG 471 626-2: Chamber Orchestra of Europe, Gidon Kremer (violin)
-## CD Sony Classical SK 53 271: English Chamber Orchestra, Mstislav Rostropovich (cond), Mark Lubotsky (violin)

- -Title-Type: Piano Sonata -Title-No: 1 -Title-Opus: 197 -Title-Dates: 1987-1988 - -##
Dedicated to Vladimir Feltsman.
-## 1. Lento
-## 2. Allegretto
-## 3. Lento
-## 4. Allegro

-## CD Berlin Classics 0017292BC: Ragna Schirmer (piano)
-## CD Chandos CHAN 8962: Boris Berman (piano)
-## CD Consonance 81-0009: Vasily Lobanov (piano)
-## CD MV Productions SPPS CD06: Svetlana Ponomareva (piano)

- -Title-Count: Four -Title-Type: Aphorisms -Title-For: chamber orchestra -Title-Opus: 198 -Title-Dates: 1988 - -##
In four movements:
-## 1. Lento
-## 2. Moderato
-## 3. Allegretto
-## 4. Lento

-## LP Melodiya: Soloists Ensemble of Bolshoi Theatre Orchestra, A. Lazarev (cond)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Balcony -Title-Opus: 199 -Title-Dates: 1988 - -Title-RAW: Symphony No. 5 / Concerto Grosso -Title-No: 4 -Title-Opus: 200 -Title-Dates: 1988 - -##
In four movements:
-## 1. Allegro - 5 min.
-## 2. Allegretto - 9 min.
-## 3. Lento (attacca). Allegro - 17 min.
-## 4. Lento - 9 min.

-## CD BIS CD 427: Gothenburg SO, Neeme Jдrvi (cond)
-## CD Decca 430 698-2: Royal Concertgebouw Orchestra, Riccardo Chailly (cond)
-## CD London 430 698-2: Royal Concertgebouw Orchestra, Riccardo Chailly (cond)

- -Title-Type: Concerto -Title-For: piano four hands and chamber orchestra -Title-In-Movements: in a single movement -Title-Opus: 201 -Title-Dates: 1988 - -##
Dedicated to Viktoria Postnikova and Irina Schnittke.

-## CD CPO 999 804-2: Radio-Philharmonie Hannover des NDR, Eiji Oue (cond), Genova and Dimitrov Piano Duo
-## CD Erato 2292-45742-2: London Sinfonietta, Gennadi Rozhdestvensky (cond), Irina Schnittke & Victoria Postnikova (piano)
-## CD Revelation RV 10009: Gennadi Rozhdestvensky (cond), Irina Schnittke & Victoria Postnikova (piano)

- -Title-RAW: Three Verses of Viktor Schnittke -Title-For: tenor and piano -Title-Opus: 202 -Title-Dates: 1988 - -##
1. Wer Gedichte macht, ...
-## 2. Der Geiger
-## 3. Dein Schweigen
- -Title-RAW: "Twelve Penitential Psalms", verses of repentance -Title-For: mixed chorus a cappella -Title-Opus: 203 -Title-Dates: 1988 - -##
In twelve movements>

-## CD Chandos CHAN 9480: Danish National Radio Choir, Stefan Parkman (cond)
-## CD ECM 453-513-2 (1583): Swedish Radio Choir, Tonu Kaljuste (cond)

- -Title-RAW: Piano Quartet in A minor (after Mahler) -Title-Opus: 204 -Title-Dates: 1988 - -##
Dedicated to Oleg Krysa.
-## Quoting a fragment for piano quartet by the 16-year old Gustav Mahler.
-## Allegro (one movement). -## Duration: 6 minutes.

-## CD BIS CD 547: Tale Olsson (violin), Ingegerd Kierkegaard (viola), Helena Nilsson (cello), Roland Pцntinen (piano)
-## CD Virgin Classics VC 7 91436-2: Borodin Quartet, Ludmilla Berlinsky (piano)

- -Title-Name: Sounding Letters (Klingende Buchstaben) -Title-For: solo cello -Title-Opus: 205 -Title-Dates: 1988 - -##
Dedicated to Alexander Ivashkin on the occasion of his 40th birthday.
-## Andantino (one movement)
-## Duration: 4 minutes.

-## CD BIS CD 507: Torleif Thйdйen (cello)
-## CD BIS CD 300507: Torleif Thйdйen (cello)
-## CD Hyperion CDA 67534: Alban Gerhardt (cello)
-## CD Naxos 8.554728: Alexander Ivashkin (cello)
-## CD Ode Manu CDMANU 1480: Alexander Ivashkin (cello)

- -Title-Type: Monologue -Title-For: viola and chamberorchestra -Title-Opus: 206 -Title-Dates: 1989 - -##
Largo (one movement).

-## CD EMI CDC 5 55107-2: Jerusalem SO, David Shallon (cond), Tabea Zimmermann (viola)
-## CD Melodiya SUCD 10 00492: Moscow Soloists, Yuri Bashmet (cond & viola)
-## CD RCA Victor RD 60464: Moscow Soloists, Yuri Bashmet (cond & viola)
-## CD RCA Victor 74321-24894-2: Moscow Soloists, Yuri Bashmet (cond & viola)

- -Title-RAW: Erцffnungsvers zum Ersten Festspielsonntag -Title-For: mixed chorus and organ -Title-Opus: 207 -Title-Dates: 1989 - -##
Ihr Vцlker alle, klatscht in die Hдnde... (from Psalm 47)
- -Title-Name: 3 x 7 -Title-For: seven instruments -Title-Opus: 208 -Title-Dates: 1989 - -##
For clarinet, horn, trombone, harpsichord, violin, violoncello and double bass.
-## Moderato (one movement)
- -Title-Type: String Quartet -Title-No: 4 -Title-Opus: 209 -Title-Dates: 1989 - -##
Commissioned by Vienna Concert Hall Society.
-## 1. Lento
-## 2. Allegro
-## 3. Lento
-## 4. Vivace
-## 5. Lento

-## CD Arco Diva UP 0054-2 131: Kapralova Quartet
-## CD EMI CDC 7 54660-2 : Alban Berg Quartet
-## CD EMI CMS 5 65765-2 (4 CD-set): Alban Berg Quartet
-## CD Nonesuch 79500-2: Kronos Quartet
-## CD Nonesuch 7559-79504-2 (10 CD-set): Kronos Quartet

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Visitor of a Museum -Title-Opus: 210 -Title-Dates: 1989 - -Title-Type: Concerto -Title-No: 2 -Title-For: cello and orchestra -Title-Opus: 211 -Title-Dates: 1990 - -##
Dedicated to Mstislav Rostropovich.
-## 1. Moderato (attaca) - 4 min.
-## 2. Allegro (attaca) - 10 min.
-## 3. Lento (attaca) - 10 min.
-## 4. Allegretto vivo (attaca) - 5 min.
-## 5. Grave - 16 min.

-## CD BIS CD 567: Malmц SO, Lev Markiz (cond), Torleif Thйdйen (cello)
-## CD Chandos CHAN 9722: Russian State SO, Valery Polyansky (cond), Alexander Ivashkin (cello)
-## CD Sony Classical CD 48241: London SO, Seiji Ozawa (cond), Mstislav Rostropovich (cello)

- -Title-RAW: Moz-Art а la Mozart -Title-For: harp and eight flutes -Title-Opus: 212 -Title-Dates: 1990 - -Title-RAW: Madrigal in Memoriam Oleg Kagan -Title-For: violin or solo -Title-Opus: 213 -Title-Dates: 1990 - -##
Lento (one movement).
-## Duration: 10 minutes.

-## CD ASV CDDCA 877: Mateja Marinkovic (violin)
-## CD BIS CD 697: Oleg Krysa (violin)

- -Title-RAW: Madrigal in Memoriam Oleg Kagan -Title-For: cello solo -Title-Opus: 213a -Title-Dates: 1990 - -##
Lento (one movement)
-## Duration: 12 minutes.

-## CD BIS CD 697: Torleif Thйdйen (cello)
-## CD Hyperion CDA 67534: Alban Gerhardt (cello)
-## CD Ode Manu CDMANU 1480: Alexander Ivashkin (cello)

- -Title-Count: Three -Title-Type: Fragments -Title-For: harpsichord -Title-Opus: 214 -Title-Dates: 1990 - -##
1. Andante
-## 2. Vivo
-## 3. Lento
- -Title-Count: Five -Title-Type: Aphorisms -Title-For: piano -Title-Opus: 215 -Title-Dates: 1990 - -##
Dedicated to Joseph Brodsky and Alexander Slobodyanik.
-## 1. Moderato assai
-## 2. Allegretto
-## 3. Lento
-## 4. Senza tempo
-## 5. Grave

-## CD Chandos CHAN 9704: Boris Berman (piano)
-## CD Ode Manu CDMANU 1480: Tamas Vesmas (piano)
-## CD Thorofon CTH 2459: Peter Martin (piano)

- -Title-Type: Piano Sonata -Title-No: 2 -Title-Opus: 216 -Title-Dates: 1990 - -##
Dedicated to Irina Schnittke.
-## 1. Moderato
-## 2. Lento
-## 3. Allegro moderato

-## CD Berlin Classics 0017292BC: Ragna Schirmer (piano)
-## CD Chandos CHAN 9704: Boris Berman (piano)
-## CD Sony Classical SK 53 271: Irina Schnittke (piano)

- -Title-RAW: Cadenzas to Mozart's Piano Concerto in B flat major KV 39 -Title-Opus: 217 -Title-Dates: 1990 - -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: Russia: Love For This Country -Title-Opus: 218 -Title-Dates: 1990 - -Title-RAW: Life with an Idiot, opera in 2 acts (4 scenes) by V. Yerofeyev after his likenamed short story -Title-Opus: 219 -Title-Dates: 1990-1991 - -##
Sony S2K 52 495: Rotterdam PO, Vocal Ensemble, Mstislav Rostropovich (cond), Dale Duesing (baritone), -## Romain Bischkoff (bass), Teresa Ringholz (soprano), Howard Haskin (tenor), Leonid Zimnenko -## (bass), Robin Leggate (tenor)
- -Title-Name: Sutartines -Title-For: percussion, organ and string orchestra -Title-Opus: 220 -Title-Dates: 1991 - -Title-RAW: Suite in Old Style -Title-For: chamberorchestra -Title-Opus: 221 -Title-Dates: 1991 - -##
Arrangement of opus 51 by Vladimir Spivakov and Vladimir Milman.
-## 1. Pastorale
-## 2. Ballet
-## 3. Minuet
-## 4. Fugue
-## 5. Pantomime

-## LP Melodiya A10 00483 007: USSR Bolshoi Theatre Soloists Ensemble, Gennadi Rozhdestvensky (cond)
-## CD BIS CD 1437: Tapiola Sinfonietta, Ralf Gothoni (cond)
-## CD Capriccio 67 016: Moscow Virtuosi, V. Spivakov (cond)
-## CD Consonance 81-0009: Igor Bogulavsky (viola d’amore), Viktor Grislin (vibraphone), Alla Litvienko (harpsichord), Viktor Gabinsky (marimba), Vadim Vasilykov (bells)
-## CD Melodiya SUCD 10 00010: (parts 1 & 2) USSR Bolshoi Theatre Soloists Ensemble, Igor Boguslavsky (viole d'amour)
-## CD RCA Victor Red Seal RD 60370: Moscow Virtuosi, Vladimir Spivakov (cond)
-## CD RCA Victor 74321-24894-2: Moscow Virtuosi, Vladimir Spivakov (cond)
-## CD RCA Victor Artistes Repertoire 82876 502682: Moscow Virtuosi, Vladimir Spivakov (cond)

- -Title-RAW: Festive Cantus -Title-For: violin, piano, mixed chorus and orchestra -Title-Opus: 222 -Title-Dates: 1991 - -##
Dedicated to Gennadi Rozhdestvensky on the occasion of his 60th birthday.
- -Title-Type: Concerto Grosso -Title-No: 5 -Title-For: violin, piano and orchestra -Title-Opus: 223 -Title-Dates: 1991 - -##
Commissioned by the Carnegie Hall Corporation for the Cleveland Orchestra on the occasion of the Carnegie Hall Centenary.
-## 1. Allegretto
-## 2. -
-## 3. Allegro vivace

-## CD DG 437 091 2: Vienna PO, Christoph von Dohnanyi (cond), Gidon Kremer (violin), Rainer Keuschnig (piano)
-## CD DG 471 626-2: Vienna PO, Christoph von Dohnanyi (cond), Gidon Kremer (violin), Rainer Keuschnig (piano)

- -Title-RAW: For the 90th Birthday of Alfred Schlee -Title-For: viola solo -Title-Opus: 224 -Title-Dates: 1991 - -Title-Type: Symphony -Title-No: 6 -Title-Opus: 225 -Title-Dates: 1992 - -##
Dedicated to Mstislav Rostropovich and The National Symphony Orchestra of Washington.
-## Commissioned by The National Symphony Orchestra of Washington, D. C., and Mstislav Rostropovich.
-## 1. Allegro moderato - 14 min.
-## 2. Presto - 4 min.
-## 3. Adagio (attaca) - 10 min.
-## 4. Allegro vivace - 5 min.

-## CD BIS CD 747: BBC National Orchestra of Wales, Tadaaki Otaka (cond)
-## CD Chandos CHAN 10180: Russian State SO, Valeri Polyansky (cond)

- -Title-RAW: Agnus Dei -Title-For: two sopranos, female chorus and chamber orchestra -Title-Opus: 226 -Title-Dates: 1992 - -##
Part of the coope-rative work "Mass for Peace".
-## Lento (one movement)
- -Title-Type: Trio -Title-For: violin, cello and piano -Title-Opus: 227 -Title-Dates: 1992 - -##
Arrangement of the String Trio (1985).
-## 1. Moderato - 14 min.
-## 2. Adagio - 13 min.

-## CD ASV Quicksilva CD QS 6251: Barbican Piano Trio: Gaby Lester (violin), Robert Max (cello), James Kirby (piano)
-## CD BIS CD 697: Oleg Krysa (violin), Torleif Thйdйen (cello), Tatiana Tchekina (piano)
-## CD Black Box BBM 1093: Barbican Piano Trio: Gaby Lester (violin), Robert Max (cello), James Kirby (piano)
-## CD Cascavelle VEL 3071: Trio Animae: Tomas Dratva (piano), Jean-Christophe Gawrysiak (violin), Dieter Hilpert (cello)
-## CD Nimbus NI 5572: Vienna Piano Trio (Wolfgang Redik, violin; Marcus Trefny, cello; Stefan Mendl, piano)
-## CD Sony Classical SK 53 271: Mark Lubotsky (violin), Mstislav Rostropovich (cello), Irina Schnittke (piano)

- -Title-RAW: Musica Nostalgica -Title-For: cello and piano -Title-Opus: 228 -Title-Dates: 1992 - -##
CD Chandos CHAN 9705: Alexander Ivashkin (cello), Irina Schnittke (piano)
-## CD Quartz QTZ 2032: Matthew Barley (cello), Stephen De Pledge (piano)
- -Title-Type: Piano Sonata -Title-No: 3 -Title-Opus: 229 -Title-Dates: 1992 - -##
1. Lento
-## 2. Allegro
-## 3. Largo
-## 4. Allegro

-## CD Berlin Classics 0017292BC: Ragna Schirmer (piano)
-## CD Chandos CHAN 9704: Boris Berman (piano)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Last Days of St. Petersburg -Title-Opus: 230 -Title-Dates: 1992 - -##
CD CPO 999 796-2: Radio SO Berlin, Frank Strobel (cond)
- -Title-RAW: Hommage to Dr. Zhivago, musical allegory -Title-Related-How: on motives of B. Pasternak's novel -Title-Related-Name: Doctor Zhivago -Title-Opus: 231 -Title-Dates: 1993 - -Title-RAW: "Gesualdo", opera in seven acts, a prologue and an epilogue by Richard Bletschacher -Title-Opus: 232 -Title-Dates: 1993 - -Title-RAW: Hommage to Grieg -Title-For: orchestra -Title-Opus: 233 -Title-Dates: 1993 - -##
Arrangement of a fragment from the ballet "Peer Gynt" for orchestra.
-## Adagio (one movement)>

-## CD CPO 999 804-2: Radio-Philharmonie Hannover des NDR, Eiji Oue (cond)

- -Title-Type: Symphony -Title-No: 7 -Title-Opus: 234 -Title-Dates: 1993 - -##
Dedicated to Kurt Masur.
-## Commissioned by the New York Philharmonic Orchestra.
-## 1. Andante (attaca) - 5 min.
-## 2. Largo - 2 min. 30 sec.
-## 3. Allegro - 14 min.

-## CD BIS CD 747: BBC National Orchestra of Wales, Tadaaki Otaka (cond)
-## CD Chandos CHAN 9852: Russian State Symphony Orchestra, Valery Polyansky (cond)

- -Title-Type: Concerto Grosso -Title-No: 6 -Title-For: piano, violin and string orchestra -Title-Opus: 235 -Title-Dates: 1993 - -##
Antes Edition BM-CD31.9187: Bulgarian Orpheus Chamber Orchestra, Raitscho Christov (cond), Falko Steinbach (piano), Yosif Raduinov (violin)
-## CD BIS CD 1437: Tapiola Sinfonietta, Ralf Gothoni (cond & piano), Ulf Wallin (violin)
-## CD Chandos CHAN 9359: Stockholm PO, Gennadi Rozhdestvensky (cond), Sasha Rozhdestvensky (violin), Viktoria Postnikova (piano)
-## CD Nimbus NI 5582: English SO, William Boughton (cond), Daniel Hope (violin), Simon Mulligan (piano)
- -Title-RAW: "Mother" for mezzo-soprano and piano after verses by Else Lasker-Schьler -Title-Opus: 236 -Title-Dates: 1993 - -##
Dedicated to Ulrich Eckhardt on occasion of his 60th birthday.
-## Lento (one movement)
- -Title-RAW: Improvisation -Title-For: cello solo -Title-Opus: 237 -Title-Dates: 1993 - -##
Commissioned by the 'Acanthes' contest, October 1994.
-## Dedicated to Mstislav Rostropovich.
-## Andante poco rubato (one movement)

-## CD Ode Manu CDMANU 1480: Alexander Ivashkin (cello)
-## CD Thorofon CTH 2459: Sonja Schrцder (cello)

- -Title-Type: Music -Title-Related-How: to the Film -Title-Related-Name: The Master and Margarita -Title-Opus: 238 -Title-Dates: 1993 - -##
CD CPO 999 796-2: Radio SO Berlin, Frank Strobel (cond)
- -Title-RAW: "The History of Dr. Johann Faustus", opera in three acts, a prologue and an epilogue by Jцrg Morgener and Alfred Schnittke -Title-Opus: 239 -Title-Dates: 1994 - -##
Based on the likenamed book published by Johann Spies in 1587

-## CD RCA Victor Red Seal 09026-68413-2: Hamburg State Opera Chorus and Orchestra, Gerd Albrecht (cond), -## Jurgen Freier (baritone), Eberhard Lorenz (tenor), Arno Raunig (alto), -## Hanna Schwarz (mezzo-soprano), Eberhard Buchner (tenor), Jonathan Barreto-Ramos (tenor), Christoph Johannes Wendel (baritone), Jurgen Fersch (bass)

- -Title-Type: Symphonic Prelude -Title-Opus: 240 -Title-Dates: 1994 - -##
Commissioned by the Hamburg Philharmonic State Orchestra.
-## Andante (one movement).
-## Duration: 17 min. 30 sec.

-## CD BIS CD 1217: Norrkoping Symphony Orchestra, Lь Jia (cond)

- -Title-Type: Symphony -Title-No: 8 -Title-Opus: 241 -Title-Dates: 1994 - -##
Dedicated to Gennadi Rozhdestvensky and the Royal Stockholm Philharmonic Orchestra.
-## Commissioned by Stockholm Concert Hall Foundation.
-## 1. Moderato - 8 min. 30 sec.
-## 2. Allegro moderato - 4 min. 30 sec.
-## 3. Lento - 16 min.
-## 4. Allegro moderato - 5 min.
-## 5. Lento - 2 min.

-## CD BIS CD 1217: Norrkoping Symphony Orchestra, Lь Jia (cond)
-## CD Chandos CHAN 9359: Stockholm PO, Gennadi Rozhdestvensky (cond)
-## CD Chandos CHAN 9885: Russian State SO, Valeri Polyansky (cond)

- -Title-Name: For Liverpool -Title-For: orchestra -Title-Opus: 242 -Title-Dates: 1994 - -##
Commissioned by The Royal Liverpool Philharmonic Society with funds provided by the Art Council of England.
-## Duration: 12 min. 30 sec.

-## CD BIS CD 1217: Norrkoping Symphony Orchestra, Lь Jia (cond)

- -Title-Type: Triple concerto -Title-For: violin, viola, cello and string orchestra -Title-Name: Concerto for Three -Title-Opus: 243 -Title-Dates: 1994 - -##
1. Moderato - 6 min.
-## 2. Larghetto - 4 min. 30 sec.
-## 3. Largo - 4 min. 30 sec.
-## 4. Attaca - Minuet - 5 min.

-## CD BIS CD 1379/80 (2 CD-set): Toho Gakuen Orchestra, Koichiro Harada (cond), Yasushi Toyoshima (violin), Noboru Kamimura (cello), Nobuko Imai (viola)
-## CD EMI CDC 5 55627 2: Moscow Soloists, Gidon Kremer (violin), Yuri Bashmet (viola), Mstislav Rostropovich (cello)
-## CD Quartz QTZ 2052: West Kazakhstan Philharmonic Orchestra, Mikel Toms (cond), Roman Mints (violin), Maxim Rysanov (viola), Kristine Blaumane (cello)

- -Title-RAW: Five Fragments to Pictures of Hieronymus Bosch -Title-For: tenor, violin, trombone, harpsichord, timpani and string orchestra -Title-Opus: 244 -Title-Dates: 1994 - -##
On texts by Aeshylus.
-## Dedicated to Vladimir Spivakov.
-## 1. Lento
-## 2. Moderato
-## 3. Andantino
-## 4. Agitato
-## 5. Senza tempo

-## CD Capriccio 67 016: Moscow Virtuosi, V. Spivakov (cond)

- -Title-Name: Lux Aeterna -Title-For: mixed chorus and orchestra -Title-Opus: 245 -Title-Dates: 1994 - -##
Orchestrated by Gennadi Rozhdestvensky.
-## Commissioned by the International Bach Academy Stuttgart as part of the cooperative work 'Requiem of Reconciliation' for Europгisches Musikfest Stuttgart.
-## Andante (one movement)
- -Title-Type: Sonata -Title-No: 2 -Title-For: cello and piano -Title-Opus: 246 -Title-Dates: 1994 - -##
Dedicated to Mstislav Rostropovich.
-## 1. Senza tempo
-## 2. Allegro
-## 3. Largo
-## 4. Allegro
-## 5. Lento

-## CD Black Box BBM 1032: Raphael Wallfisch (cello), John York (piano)
-## CD Chandos CHAN 9705: Alexander Ivashkin (cello), Irina Schnittke (piano)
-## CD EMI CZS 572016-2 (13 CD-set): Mstislav Rostropovich (cello), Aza Amintayeva (piano)
-## CD Thorofon CTH 2459: Sonja Schrцder (cello), Peter Martin (piano)

- -Title-Type: Quartet -Title-For: four percussionists -Title-Opus: 247 -Title-Dates: 1994 - -##
Andante (one movement)
- -Title-Type: Sonata -Title-No: 3 -Title-For: violin and piano -Title-Opus: 248 -Title-Dates: 1994 - -##
Dedicated to Mark Lubotsky.
-## 1. Andante
-## 2. Allegro (molto)
-## 3. Adagio
-## 4. Senza tempo

-## CD Nimbus NI 5631: Daniel Hope (violin), Simon Mulligan (piano)
-## CD Ondine ODE 893-2: Mark Lubotsky (violin), Irina Schnittke (piano)
-## CD Stradivarius STR 33675: Francesco D'Orazio (violin), Giampaolo Nuti (piano)

- -Title-Type: Minuet -Title-For: violin, viola and cello -Title-Opus: 249 -Title-Dates: 1994 - -##
Originally composed as an encore for the first performance of the Concerto for violin, viola and cello.
-## Dedicated to Gidon Kremer, Yuri Bashmet and Mstislav Rostropovich.

-## CD EMI CDC 5 55627 2: Gidon Kremer (violin), Yuri Bashmet (viola), Mstislav Rostropovich (cello)

- -Title-Type: Sonatina -Title-For: piano four hands -Title-Opus: 250 -Title-Dates: 1995 - -##
Allegro moderato (one movement)
- -Title-Type: Concerto -Title-For: viola and small orchestra -Title-Opus: 251 -Title-Dates: 1997 - -Title-Type: Variations -Title-For: string quartet -Title-Opus: 252 -Title-Dates: 1997 - -Title-Type: Symphony -Title-No: 9 -Title-Opus: 253 -Title-Dates: 1996-1998 - -##
Unfinished.
-##

diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/D_Shostakovich.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/D_Shostakovich.comp deleted file mode 100644 index 880a3403c..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/D_Shostakovich.comp +++ /dev/null @@ -1,2569 +0,0 @@ -# format = mail-header - - - - - -# opus_rex \bOp(?:us\b|\.)\s*\d+[a-i]?(?:[.,;\s]\s*No\.\s*\d+(?:\.\d+)*)? - -Title-Type: Scherzo -Title-Key: F sharp minor -Title-For: orchestra -Title-Opus: 1 -Title-Dates: 1919 - - - -Title-Count: Eight -Title-Type: Preludes -Title-For: piano -Title-Opus: 2 -Title-Dates: 1919-1920 - - - -Title-RAW: Minuet, Prelude and Intermezzo -Title-For: piano -Title-Opus: 2a -Title-Dates: 1919-1920 - - - -Title-RAW: Murzilka -Title-For: piano -Title-Opus: 2b -Title-Dates: 1920 - - - -Title-Count: Five -Title-Type: Preludes -Title-For: piano -Title-Opus: 2c -Title-Dates: 1920-1921 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: I Waited in the Grotto -Title-Related-By: by Rimsky-Korsakov -Title-For: soprano and orchestra -Title-Opus: 2d -Title-Dates: 1921 - - - -Title-Type: Theme and Variations -Title-Key: B flat major -Title-For: orchestra -Title-Opus: 3 -Title-Dates: 1921-1922 - - - -Title-Type: Transcription of Theme and Variations -Title-Key: B flat major -Title-For: solo piano -Title-Opus: 3a -Title-Dates: 1921-1922 - - - -Title-Name: Two Fables of Krilov -Title-For: mezzo-soprano, female chorus and chamber orchestra -Title-Opus: 4 -Title-Dates: 1922 - - - -Title-Type: Transcription -Title-Related-How: of -Title-Related-Name: Two Fables of Krilov -Title-For: mezzo-soprano and piano -Title-Opus: 4a -Title-Dates: 1922 - - - -Title-RAW: Three Fantastic Dances -Title-For: piano -Title-Opus: 5 -Title-Dates: 1922 - - - -Title-Type: Suite -Title-Key: F sharp minor -Title-For: two pianos -Title-Opus: 6 -Title-Dates: 1922 - - - -Title-Type: Scherzo -Title-Key: E flat major -Title-For: orchestra -Title-Opus: 7 -Title-Dates: 1923-1924 - - - -Title-Type: Transcription of Scherzo -Title-Key: E flat major -Title-For: solo piano -Title-Opus: 7a -Title-Dates: 1923-1924 - - - -Title-Type: Piano Trio -Title-No: 1 -Title-Key: C minor -Title-Opus: 8 -Title-Dates: 1923 - - - -Title-Count: Three -Title-Type: Pieces -Title-For: cello and piano -Title-Opus: 9 -Title-Dates: 1923-1924 - - - -Title-Type: Symphony -Title-No: 1 -Title-Key: F minor -Title-Opus: 10 -Title-Dates: 1924-1925 - - - -Title-Type: Prelude and Scherzo -Title-For: string octet/orchestra -Title-Opus: 11 -Title-Dates: 1924-1925 - - - -Title-Type: Piano Sonata -Title-No: 1 -Title-Opus: 12 -Title-Dates: 1926 - - - -Title-Name: Aphorisms -Title-Punct: , -Title-Count: ten -Title-Type: pieces -Title-For: piano -Title-Opus: 13 -Title-Dates: 1927 - - - -Title-Type: Symphony -Title-No: 2 -Title-Key: B flat major -Title-Name: To October -Title-RAW: with chorus -Title-Opus: 14 -Title-Dates: 1927 - - - -Title-Type: Reduction of the choral score -Title-Related-How: of -Title-Related-Name: Symphony No. 2 -Title-For: voices and piano -Title-Opus: 14a -Title-Dates: 1927 - - - -Title-Name: The Nose -Title-Type-After-Name: opera in three acts -Title-Related-By: after Gogol -Title-Opus: 15 -Title-Dates: 1927-1928 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Nose -Title-Punct: , -Title-For: tenor, baritone and orchestra -Title-Opus: 15a -Title-Dates: 1927-1928 - - - -Title-Type: Reduction of the accompaniment -Title-Related-How: of -Title-Related-Name: The Nose -Title-For: piano -Title-Opus: 15b -Title-Dates: 1927-1928 - - - -Title-Name: Tahiti-Trot -Title-For: orchestra -Title-Opus: 16 -Title-Dates: 1928 - - - -Title-RAW: Two Pieces by Scarlatti -Title-For: wind orchestra -Title-Opus: 17 -Title-Dates: 1928 - - - -Title-Type: Music -Title-Related-How: to the silent film -Title-Related-Name: New Babylon -Title-For: small orchestra -Title-Opus: 18 -Title-Dates: 1928-1929 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: New Babylon -Title-For: orchestra -Title-Opus: 18a -Title-Dates: 1976 - - - -Title-Type: Music -Title-Related-How: to the comedy -Title-Related-Name: The Bedbug -Title-Related-By: by Mayakovsky -Title-Opus: 19 -Title-Dates: 1929 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Bedbug -Title-For: orchestra -Title-Opus: 19a -Title-Dates: 1929 - - - -Title-Type: Arrangement of Music -Title-Related-How: to -Title-Related-Name: The Bedbug -Title-For: piano -Title-Opus: 19b -Title-Dates: 1929 - - - -Title-Type: Symphony -Title-No: 3 -Title-Key: E flat major -Title-Name: The First of May -Title-RAW: with chorus -Title-Opus: 20 -Title-Dates: 1929 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 3 -Title-RAW: for solo piano including a vocal score of the final chorus -Title-Opus: 20a -Title-Dates: 1929 - - - -Title-Name: Six Romances on Texts by Japanese Poets -Title-For: tenor and orchestra -Title-Opus: 21 -Title-Dates: 1928-1932 - - - -Title-Name: Six Romances on Texts by Japanese Poets -Title-For: tenor and piano -Title-Opus: 21a -Title-Dates: 1928-1932 - - - -Title-Name: The Age of Gold -Title-Type-After-Name: ballet in three acts -Title-Opus: 22 -Title-Dates: 1929-1930 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Age of Gold -Title-For: orchestra -Title-Opus: 22a -Title-Dates: 1929-1930 - - - -Title-Type: Polka -Title-Related-How: from -Title-Related-Name: The Age of Gold -Title-For: solo piano -Title-Opus: 22b -Title-Dates: 1935 - - - -Title-Type: Polka -Title-Related-How: from -Title-Related-Name: The Age of Gold -Title-For: piano four hands -Title-Opus: 22c -Title-Dates: 1962 - - - -Title-Count: Two -Title-Type: Pieces -Title-Related-How: for Erwin Dressel's Opera -Title-Related-Name: Armer Columbus -Title-For: orchestra -Title-Opus: 23 -Title-Dates: 1929 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: The Gunshot -Title-Related-By: by Bezymensky -Title-Opus: 24 -Title-Dates: 1929 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: Virgin Soil -Title-Related-By: by Gorbenko and L'vov -Title-Opus: 25 -Title-Dates: 1930 - - - -Title-Type: Transcription -Title-Related-How: of -Title-Related-Name: Symphony of Psalms -Title-Related-By: by Stravinsky -Title-For: two pianos -Title-Opus: 25a -Title-Dates: 1930 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Alone -Title-Punct: ( -Title-Name: Odna -Title-Punct: ) -Title-Opus: 26 -Title-Dates: 1930-1931 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Alone -Title-For: orchestra -Title-Opus: 26a -Title-Dates: 1930-1931 - - - -Title-Name: The Bolt -Title-Type-After-Name: ballet in three acts -Title-Opus: 27 -Title-Dates: 1930-1931 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Bolt -Title-For: orchestra -Title-Opus: 27a -Title-Dates: 1931 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: Rule, Britannia! -Title-Related-By: by Piotrovsky -Title-Opus: 28 -Title-Dates: 1931 - - - -Title-Name: Lady Macbeth of the Mtsensk District -Title-Type-After-Name: opera in four acts -Title-Related-By: after Leskov -Title-Opus: 29 -Title-Dates: 1930-1932 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Lady Macbeth of the Mtsensk District -Title-For: orchestra -Title-Opus: 29a -Title-Dates: 1930-1932 - - - -Title-RAW: Passacaglia from an Entr'acte -Title-Related-How: to -Title-Related-Name: Lady Macbeth of the Mtsensk District -Title-For: organ -Title-Opus: 29b -Title-Dates: 1930-1932 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Golden Mountains -Title-Opus: 30 -Title-Dates: 1931 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Golden Mountains -Title-For: orchestra -Title-Opus: 30a -Title-Dates: 1931 - - - -Title-Count: Two -Title-Type: Pieces -Title-For: string quartet -Title-Opus: 30b -Title-Dates: 1931 - - - -Title-Name: The Green Company -Title-Type-After-Name: overture -Title-Opus: 30c -Title-Dates: 1931 - - - -Title-Type: Music -Title-Related-How: to the stage revue -Title-Related-Name: Hypothetically Murdered -Title-Related-By: by Voyevodin and Riss -Title-Opus: 31 -Title-Dates: 1931 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Hypothetically Murdered -Title-Opus: 31a -Title-Dates: 1932 - - - -Title-RAW: Reduction of Four Movements of the Music -Title-Related-How: to -Title-Related-Name: Hypothetically Murdered -Title-For: piano -Title-Opus: 31b -Title-Dates: 1931 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: Hamlet -Title-Related-By: by Shakespeare -Title-Opus: 32 -Title-Dates: 1931-1932 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Hamlet -Title-For: small orchestra -Title-Opus: 32a -Title-Dates: 1932 - - - -Title-Name: From Karl Marx to Our Own Days -Title-Type-After-Name: symphonic poem -Title-For: solo voices, chorus and orchestra -Title-Opus: 32b -Title-Dates: 1932 - - - -Title-Name: The Big Lightning -Title-RAW: , unfinished comic opera -Title-Opus: 32c -Title-Dates: 1932 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Counterplan -Title-Opus: 33 -Title-Dates: 1932 - - - -Title-RAW: "Song about the Oncoming Train" and -Title-Name: My Heart's Aching and Moaning -Title-Related-How: from -Title-Related-Name: Counterplan -Title-For: voice and piano -Title-Opus: 33a -Title-Dates: 1956 - - - -Title-Name: We meet this Morning (The Song of the Young Workers) -Title-Related-How: from -Title-Related-Name: Counterplan -Title-For: voice and piano -Title-Opus: 33b -Title-Dates: 1956 - - - -Title-Count: Twenty-Four -Title-Type: Preludes -Title-For: piano -Title-Opus: 34 -Title-Dates: 1932-1933 - - - -Title-Type: Transcription of Twenty-Four Preludes -Title-For: violin and piano -Title-Opus: 34b -Title-Dates: 1932-1933 - - - -Title-Type: Transcription of Twenty-Four Preludes -Title-For: orchestra -Title-Opus: 34c -Title-Dates: 1932-1933 - - - -Title-RAW: Transcription of Prelude Opus 34 -Title-No: 14 -Title-For: orchestra -Title-Opus: 34d -Title-Dates: 1932-1933 - - - -Title-RAW: Concerto in C minor for piano, trumpet and strings, also known as Piano Concerto -Title-No: 1 -Title-Opus: 35 -Title-Dates: 1933 - - - -Title-Type: Reduction of Piano Concerto -Title-No: 1 -Title-For: two pianos -Title-Opus: 35a -Title-Dates: 1933 - - - -Title-Type: Music -Title-Related-How: to the animated film -Title-Related-Name: The Tale of the Priest and His Worker Balda -Title-For: chamber orchestra -Title-Opus: 36 -Title-Dates: 1933-1934 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Tale of the Priest and his Worker Balda -Title-Opus: 36a -Title-Dates: 1935 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: The Human Comedy -Title-Related-By: after Balzac -Title-For: small orchestra -Title-Opus: 37 -Title-Dates: 1933-1934 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Love and Hate -Title-Opus: 38 -Title-Dates: 1934 - - - -Title-Name: Suite for Jazz Orchestra No. 1 -Title-Opus: 38a -Title-Dates: 1934 - - - -Title-Name: The Limpid Stream -Title-Type-After-Name: ballet in three acts -Title-Opus: 39 -Title-Dates: 1934-1935 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Limpid Stream -Title-For: orchestra -Title-Opus: 39a -Title-Dates: 1934-1935 - - - -Title-Type: Moderato -Title-Related-How: from -Title-Related-Name: The Limpid Stream -Title-For: cello and piano -Title-Opus: 39b -Title-Dates: 1934-1935 - - - -Title-Type: Sonata -Title-Key: D minor -Title-For: cello and piano -Title-Opus: 40 -Title-Dates: 1934 - - - -Title-Type: Moderato -Title-For: cello and piano -Title-Opus: 40a -Title-Dates: 1934 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Youth of Maxim -Title-Opus: 41 -Title-Dates: 1934-1935 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Girl Friends -Title-Opus: 41a -Title-Dates: 1934-1935 - - - -Title-Count: Five -Title-Type: Fragments -Title-For: small orchestra -Title-Opus: 42 -Title-Dates: 1935 - - - -Title-Type: Symphony -Title-No: 4 -Title-Key: C minor -Title-Opus: 43 -Title-Dates: 1935-1936 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 4 -Title-For: two pianos -Title-Opus: 43a -Title-Dates: 1935-1936 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: Hail, Spain -Title-Related-By: by Afinogenov -Title-Opus: 44 -Title-Dates: 1936 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Return of Maxim -Title-Opus: 45 -Title-Dates: 1936-1937 - - - -Title-Name: Four Romances on Verses by Pushkin -Title-For: bass and piano -Title-Opus: 46 -Title-Dates: 1936-1937 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Four Romances on Verses by Pushkin -Title-For: bass and orchestra -Title-Opus: 46a -Title-Dates: 1936-1937 - - - -Title-RAW: Arrangement of Nos. 1, 2 and 3 -Title-Related-How: of -Title-Related-Name: Four Romances on Verses by Pushkin -Title-For: bass and string orchestra -Title-Opus: 46b -Title-Dates: 1936-1937 - - - -Title-Type: Symphony -Title-No: 5 -Title-Key: D minor -Title-Opus: 47 -Title-Dates: 1937 - - - -Title-RAW: Reduction of Scherzo (Allegretto) -Title-Related-How: of -Title-Related-Name: Symphony No. 5 -Title-For: solo piano -Title-Opus: 47a -Title-Dates: 1937 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Volochayev Days -Title-Opus: 48 -Title-Dates: 1936-1937 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Internationale -Title-Related-By: by Degeyter -Title-Opus: 48a -Title-Dates: 1937 - - - -Title-Name: The Twelve Chairs -Title-Type-After-Name: operetta -Title-Opus: 48b -Title-Dates: 1937-1938 - - - -Title-Type: String Quartet -Title-No: 1 -Title-Key: C major -Title-Opus: 49 -Title-Dates: 1938 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Vyborg District -Title-Opus: 50 -Title-Dates: 1938 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Maxim film-Trilogy -Title-For: orchestra and chorus -Title-Opus: 50a -Title-Dates: 1938 - - - -Title-Name: Suite for Jazz Orchestra No. 2 -Title-Opus: 50b -Title-Dates: 1938 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Friends -Title-Opus: 51 -Title-Dates: 1938 - - - -Title-RAW: Vocalise -Title-Related-How: from -Title-Related-Name: Friends -Title-RAW: for unaccompanied chorus -Title-Opus: 51a -Title-Dates: 1938 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Great Citizen -Title-RAW: , first part -Title-Opus: 52 -Title-Dates: 1938 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Man with a Gun -Title-Opus: 53 -Title-Dates: 1938 - - - -Title-Name: Lenin Symphony -Title-For: soli, chorus and orchestra -Title-Opus: 53a -Title-Dates: 1938-1939 - - - -Title-Type: Symphony -Title-No: 6 -Title-Key: B minor -Title-Opus: 54 -Title-Dates: 1939 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Great Citizen -Title-RAW: , second part -Title-Opus: 55 -Title-Dates: 1939 - - - -Title-Type: Music -Title-Related-How: to the animated film -Title-Related-Name: The Silly Little Mouse -Title-Opus: 56 -Title-Dates: 1939 - - - -Title-Name: Seven Finnish Folk Songs -Title-For: soprano, tenor and small orchestra -Title-Opus: 56a -Title-Dates: 1939 - - - -Title-Type: Piano Quintet -Title-Key: G minor -Title-Opus: 57 -Title-Dates: 1940 - - - -Title-Type: Orchestration -Title-Related-How: of the Opera -Title-Related-Name: Boris Godunov -Title-Related-By: by Mussorgsky -Title-Opus: 58 -Title-Dates: 1939-1940 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: King Lear -Title-Related-By: by Shakespeare -Title-Opus: 58a -Title-Dates: 1940 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: King Lear -Title-For: piano -Title-Opus: 58b -Title-Dates: 1940 - - - -Title-RAW: "Songs of the Fool" and -Title-Name: Ballad of Cordelia -Title-Related-How: from -Title-Related-Name: King Lear -Title-For: voice and piano -Title-Opus: 58c -Title-Dates: 1940 - - - -Title-RAW: Orchestration of "Wiener Blut" by Johann Strauss II -Title-Opus: 58d -Title-Dates: 1940 - - - -Title-RAW: Orchestration of "The Excursion Train Polka" by Johann Strauss II -Title-Opus: 58e -Title-Dates: 1940 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: 27 Romances and Songs Arrangements -Title-Opus: 58f -Title-Dates: 1941 - - - -Title-Name: The Oath to the People's Commissar -Title-For: bass, chorus and piano -Title-Opus: 58g -Title-Dates: 1941 - - - -Title-RAW: "Songs of a Guard's Division" ("The Fearless Regiments Are On the Move"), marching song for bass and mixed chorus with simple accompaniment for bayan or piano -Title-Opus: 58h -Title-Dates: 1941 - - - -Title-Type: Polka -Title-For: harp duet -Title-Key: F sharp minor -Title-Opus: 58i -Title-Dates: 1941 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Adventures of Korzinkina -Title-Opus: 59 -Title-Dates: 1940 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Adventures of Korzinkina -Title-Opus: 59a -Title-Dates: 1940 - - - -Title-Count: Three -Title-Type: Pieces -Title-For: solo violin -Title-Opus: 59b -Title-Dates: 1940 - - - -Title-Name: Katyusha Maslova -Title-Type-After-Name: opera -Title-Related-How: after Tolsty's novel -Title-Related-Name: Resurrection -Title-Opus: 59c -Title-Dates: 1940 - - - -Title-Type: Symphony -Title-No: 7 -Title-Key: C major -Title-Name: Leningrad -Title-Opus: 60 -Title-Dates: 1941 - - - -Title-Type: Piano Sonata -Title-No: 2 -Title-Key: B minor -Title-Opus: 61 -Title-Dates: 1943 - - - -Title-Name: Six Romances on Verses by English Poets -Title-For: bass and piano -Title-Opus: 62 -Title-Dates: 1942 - - - -Title-Name: Six Romances on Verses by English Poets -Title-For: bass and orchestra -Title-Opus: 62a -Title-Dates: 1943 - - - -Title-Type: Music -Title-Related-How: to the spectacle -Title-Related-Name: Native Country -Title-Type-After-Name: suite -Title-Name: Native Leningrad -Title-Opus: 63 -Title-Dates: 1942 - - - -Title-Type: Piece -Title-Related-How: of the Opera -Title-Related-Name: The Gamblers -Title-Related-By: after Gogol -Title-Opus: 63a -Title-Dates: 1941-1942 - - - -Title-Name: Solemn March -Title-For: military band/wind orchestra -Title-Opus: 63b -Title-Dates: 1942 - - - -Title-RAW: Patriotic Song -Title-Related-By: after Dolmatovsky -Title-For: voices -Title-Opus: 63c -Title-Dates: 1943 - - - -Title-Name: Song About the Red Army -Title-Related-By: after Golodny -Title-Opus: 63d -Title-Dates: 1943 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Eight British and American Folk Songs -Title-For: voice(s) and orchestra -Title-Opus: 63e -Title-Dates: 1943 - - - -Title-Name: Russian Folk Songs -Title-For: chorus -Title-Opus: 63f -Title-Dates: 1943 - - - -Title-Name: Three Russian Folk Songs -Title-RAW: for two soloists and chorus with piano accompaniment -Title-Opus: 63g -Title-Dates: 1943 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Zoya -Title-Opus: 64 -Title-Dates: 1944 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Zoya -Title-For: chorus and orchestra -Title-Opus: 64a -Title-Dates: 1944 - - - -Title-Name: She Was Born a Brave Girl in Her Homeland -Title-Related-How: from -Title-Related-Name: Zoya -Title-For: voice and piano -Title-Opus: 64b -Title-Dates: 1944 - - - -Title-Type: Symphony -Title-No: 8 -Title-Key: C minor -Title-Opus: 65 -Title-Dates: 1943 - - - -Title-Type: Music -Title-Related-How: to the spectacle -Title-Related-Name: Russian River -Title-For: soloists, choir and orchestra -Title-Opus: 66 -Title-Dates: 1944 - - - -Title-Type: Orchestration -Title-Related-How: of Fleishman's Chamber-Opera -Title-Related-Name: Rothschild's Violin -Title-Related-By: after Chekhov -Title-Opus: 66a -Title-Dates: 1944 - - - -Title-Type: Piano Trio -Title-No: 2 -Title-Key: E minor -Title-Opus: 67 -Title-Dates: 1944 - - - -Title-Type: String Quartet -Title-No: 2 -Title-Key: A major -Title-Opus: 68 -Title-Dates: 1944 - - - -Title-Name: Children's Notebook -Title-Punct: , -Title-Count: six -Title-Type: pieces -Title-For: piano -Title-Opus: 69 -Title-Dates: 1944-1945 - - - -Title-Type: Symphony -Title-No: 9 -Title-Key: E flat major -Title-Opus: 70 -Title-Dates: 1945 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 9 -Title-For: piano four hands -Title-Opus: 70a -Title-Dates: 1945 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Simple People -Title-Opus: 71 -Title-Dates: 1945 - - - -Title-Count: Two -Title-Type: Songs -Title-Related-How: to the spectacle -Title-Related-Name: Victorious Spring -Title-Related-By: after Svetlov -Title-For: voices and orchestra -Title-Opus: 72 -Title-Dates: 1945 - - - -Title-RAW: Accompaniment of Nos. 1 and 2 -Title-Related-How: of -Title-Related-Name: Victorious Spring -Title-RAW: , arranged -Title-For: piano -Title-Opus: 72a -Title-Dates: 1945 - - - -Title-Type: String Quartet -Title-No: 3 -Title-Key: F major -Title-Opus: 73 -Title-Dates: 1946 - - - -Title-Type: Transcription of String Quartet -Title-No: 3 -Title-For: strings and woodwinds -Title-Opus: 73a -Title-Dates: 1946 - - - -Title-Type: Reduction of String Quartet -Title-No: 3 -Title-For: two pianos -Title-Opus: 73b -Title-Dates: 1946 - - - -Title-Name: Poem of the Motherland -Title-Type-After-Name: cantata -Title-For: mezzosoprano, tenor, two baritones, chorus and orchestra -Title-Opus: 74 -Title-Dates: 1947 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Young Guards -Title-RAW: after Fadeyev's novel -Title-Opus: 75 -Title-Dates: 1947-1948 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Young Guards -Title-Opus: 75a -Title-Dates: 1951 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Pirogov -Title-Related-By: after German -Title-Opus: 76 -Title-Dates: 1947 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Pirogov -Title-For: orchestra -Title-Opus: 76a -Title-Dates: 1947 - - - -Title-Count: Three -Title-Type: Pieces -Title-For: orchestra -Title-Opus: 76b -Title-Dates: 1947-1948 - - - -Title-Type: Violin Concerto -Title-No: 1 -Title-Key: A minor -Title-Opus: 77 -Title-Dates: 1947-1948 - - - -Title-Type: Reduction of Violin Concerto -Title-No: 1 -Title-For: violin and piano -Title-Opus: 77a -Title-Dates: 1947-1948 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Michurin -Title-Opus: 78 -Title-Dates: 1948 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Michurin -Title-For: chorus and orchestra -Title-Opus: 78a -Title-Dates: 1964 - - - -Title-Name: Rayok -Title-RAW: (Little Paradise) -Title-For: four voices, chorus and piano -Title-Opus: 78b -Title-Dates: 1948 - - - -Title-Name: From Jewish Folk Poetry -Title-RAW: , song cycle -Title-For: soprano, contralto, tenor and piano -Title-Opus: 79 -Title-Dates: 1948 - - - -Title-Name: From Jewish Folk Poetry -Title-RAW: , song cycle -Title-For: soprano, contralto, tenor and small orchestra -Title-Opus: 79a -Title-Dates: 1948 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Meeting on the Elbe -Title-For: voices and piano -Title-Opus: 80 -Title-Dates: 1948 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Meeting on the Elbe -Title-For: voices and orchestra -Title-Opus: 80a -Title-Dates: 1948 - - - -Title-Count: Three -Title-Type: Songs -Title-Related-How: from -Title-Related-Name: Meeting on the Elbe -Title-For: voice and piano -Title-Opus: 80b -Title-Dates: 1956 - - - -Title-Name: Song of the Forests -Title-Type-After-Name: oratorio -Title-Related-By: after Dolmatovsky -Title-For: tenor, basssoli, mixed & boys' chorus and orchestra -Title-Opus: 81 -Title-Dates: 1949 - - - -Title-Name: In the Fields Stand the Collective Farms -Title-Related-How: from -Title-Related-Name: Song of the Forests -Title-For: children's chorus and mixed chorus -Title-Opus: 81a -Title-Dates: 1960 - - - -Title-Name: A Walk into the Future -Title-Related-How: from -Title-Related-Name: Song of the Forests -Title-For: voice and piano -Title-Opus: 81b -Title-Dates: 1962 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Fall of Berlin -Title-Opus: 82 -Title-Dates: 1949 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Fall of Berlin -Title-For: chorus and orchestra -Title-Opus: 82a -Title-Dates: 1950 - - - -Title-Name: Beautiful Day -Title-Related-How: from -Title-Related-Name: The Fall of Berlin -Title-RAW: , song for two-part children's chorus and piano -Title-Opus: 82b -Title-Dates: 1950 - - - -Title-Name: Vocalise -Title-Related-How: from -Title-Related-Name: The Fall of Berlin -Title-RAW: , song for s.a.t.b. chorus a cappella -Title-Opus: 82c -Title-Dates: 1950 - - - -Title-Type: String Quartet -Title-No: 4 -Title-Key: D major -Title-Opus: 83 -Title-Dates: 1949 - - - -Title-Type: Transcription of String Quartet -Title-No: 4 -Title-For: orchestra -Title-Opus: 83a -Title-Dates: 1949, arranged by Rudolf Barshai - - - -Title-Type: Reduction of String Quartet -Title-No: 4 -Title-For: two pianos four hands -Title-Opus: 83b -Title-Dates: 1949 - - - -Title-Name: Two Romances on Verses by Lermontov -Title-For: male voice and piano -Title-Opus: 84 -Title-Dates: 1950 - - - -Title-Name: Ballet Suite No. 1 -Title-For: orchestra -Title-Opus: 84a -Title-Dates: 1949 - - - -Title-RAW: Merry March -Title-For: two pianos -Title-Opus: 84b -Title-Dates: 1949 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Byelinsky -Title-For: orchestra and chorus -Title-Opus: 85 -Title-Dates: 1950 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Byelinsky -Title-For: chorus and orchestra -Title-Opus: 85a -Title-Dates: 1960, assembled by L. Atovmian - - - -Title-RAW: Four Choruses from the Music -Title-Related-How: to -Title-Related-Name: Byelinsky -Title-RAW: for s.a.t.b. chorus a cappella -Title-Opus: 85b -Title-Dates: 1950 - - - -Title-Name: Four Songs to Words by Dolmatovsky -Title-For: voice and piano -Title-Opus: 86 -Title-Dates: 1951 - - - -Title-Name: The Homeland Hears -Title-RAW: for chorus and tenor soloist with wordless chorus -Title-Opus: 86a -Title-Dates: 1951 - - - -Title-Name: Ten Russian Folk Song Arrangements -Title-For: soloists, mixed chorus and piano -Title-Opus: 86b -Title-Dates: 1951 - - - -Title-Count: Twenty-Four -Title-Type: Preludes and Fugues -Title-For: piano -Title-Opus: 87 -Title-Dates: 1950-1951 - - - -Title-RAW: Arrangement of No. 15 of Twenty-Four Preludes and Fugues -Title-For: two pianos -Title-Opus: 87a -Title-Dates: 1963 - - - -Title-RAW: Arrangement of No. 8 of Twenty-Four Preludes and Fugues -Title-For: orchestra -Title-Opus: 87b -Title-Dates: 1990 - - - -Title-Type: Transcription of Twenty-Four Preludes and Fugues -Title-For: violin and piano -Title-Opus: 87c -Title-Dates: 1990 - - - -Title-Name: Ten Poems on Texts by Revolutionary Poets -Title-For: chorus and boys' chorus a cappella -Title-Opus: 88 -Title-Dates: 1951 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Unforgettable Year 1919 -Title-Opus: 89 -Title-Dates: 1951 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Unforgettable Year 1919 -Title-For: orchestra -Title-Opus: 89a -Title-Dates: 1953, assembled by L. Atovmian - - - -Title-Name: Ballet Suite No. 2 -Title-For: orchestra -Title-Opus: 89b -Title-Dates: 1951, assembled by L. Atovmian - - - -Title-Count: Two -Title-Type: Pieces -Title-Related-How: from -Title-Related-Name: Ballet Suite No. 2 -Title-For: cello and piano -Title-Opus: 89c -Title-Dates: 1951 - - - -Title-Name: The Sun Shines on Our Motherland -Title-Type-After-Name: cantata -Title-Related-By: after Dolmatovsky -Title-For: mixed & boys' chorus and orchestra -Title-Opus: 90 -Title-Dates: 1952 - - - -Title-Type: Reduction of the Accompaniment -Title-Related-How: of -Title-Related-Name: The Sun Shines on Our Motherland -Title-For: piano -Title-Opus: 90a -Title-Dates: 1952 - - - -Title-Name: Four Monologues on Verses by Pushkin -Title-For: bass and piano -Title-Opus: 91 -Title-Dates: 1952 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Four Monologues on Verses by Pushkin -Title-For: bass and orchestra -Title-Opus: 91a -Title-Dates: 1952 - - - -Title-Name: Seven Doll's Dances -Title-For: piano -Title-Opus: 91b -Title-Dates: 1952 - - - -Title-Name: Ballet Suite No. 3 -Title-For: orchestra -Title-Opus: 91c -Title-Dates: 1952 - - - -Title-RAW: Greek Songs -Title-For: voice and piano -Title-Opus: 91d -Title-Dates: 1952-1953 - - - -Title-Name: Ballet Suite No. 4 -Title-For: orchestra -Title-Opus: 91e -Title-Dates: 1953 - - - -Title-Type: String Quartet -Title-No: 5 -Title-Key: B flat major -Title-Opus: 92 -Title-Dates: 1952 - - - -Title-Type: Symphony -Title-No: 10 -Title-Key: E minor -Title-Opus: 93 -Title-Dates: 1953 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 10 -Title-For: piano four hands -Title-Opus: 93a -Title-Dates: 1953 - - - -Title-RAW: Concertino -Title-For: two pianos -Title-Key: A minor -Title-Opus: 94 -Title-Dates: 1953 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Song of the Great Rivers -Title-Opus: 95 -Title-Dates: 1954 - - - -Title-Name: Poem of Labour -Title-Related-How: from -Title-Related-Name: Unity -Title-RAW: , arranged -Title-For: mixed chorus and orchestra -Title-Opus: 95a -Title-Dates: 1954 - - - -Title-Count: Two -Title-Type: Songs -Title-Related-How: from -Title-Related-Name: Unity -Title-RAW: ("A Song of Unity" and "Peaceful Labour"), arranged -Title-For: voice and piano -Title-Opus: 95b -Title-Dates: 1954 - - - -Title-Type: Waltz -Title-Related-How: from -Title-Related-Name: Unity -Title-For: orchestra -Title-Opus: 95c -Title-Dates: 1954 - - - -Title-Type: Music -Title-Related-How: to the play -Title-Related-Name: Hamlet -Title-Related-By: by Shakespeare -Title-Opus: 95d -Title-Dates: 1954 - - - -Title-RAW: "Pendozalis", Greek Song -Title-For: voice and piano -Title-Opus: 95e -Title-Dates: 1954 - - - -Title-Name: October Dawn -Title-Type-After-Name: song -Title-For: soloists and chorus -Title-Opus: 95f -Title-Dates: 1954 - - - -Title-Name: Festive Overture -Title-Key: A major -Title-For: orchestra -Title-Opus: 96 -Title-Dates: 1954 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The Gadfly -Title-RAW: , based on the novel by Voynich -Title-Opus: 97 -Title-Dates: 1955 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The Gadfly -Title-For: orchestra -Title-Opus: 97a -Title-Dates: 1955 - - - -Title-Name: Tarantella -Title-Related-How: from -Title-Related-Name: The Gadfly -Title-For: two pianos -Title-Opus: 97b -Title-Dates: 1955 - - - -Title-Count: Four -Title-Type: Waltzes -Title-For: flute, clarinet and piano -Title-Opus: 97c -Title-Dates: 1955 - - - -Title-RAW: Three Violin Duets for two violins with piano accompaniment -Title-Opus: 97d -Title-Dates: 1955 - - - -Title-RAW: Five Romances on Verses by Dolmatovsky -Title-For: bass and piano -Title-Opus: 98 -Title-Dates: 1954 - - - -Title-Name: There Were Kisses -Title-Type-After-Name: song -Title-Related-By: after Dolmatovsky -Title-For: voice and piano -Title-Opus: 98a -Title-Dates: 1954 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: The First Echelon -Title-Opus: 99 -Title-Dates: 1955-1956 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: The First Echelon -Title-For: chorus and orchestra -Title-Opus: 99a -Title-Dates: 1956 - - - -Title-RAW: Two Songs from the Music -Title-Related-How: to -Title-Related-Name: The First Echelon -Title-For: voice and piano -Title-Opus: 99b -Title-Dates: 1956 - - - -Title-RAW: Spanish Songs for (mezzo)soprano and piano -Title-Opus: 100 -Title-Dates: 1956 - - - -Title-Type: String Quartet -Title-No: 6 -Title-Key: G major -Title-Opus: 101 -Title-Dates: 1956 - - - -Title-Type: Piano Concerto -Title-No: 2 -Title-Key: F major -Title-Opus: 102 -Title-Dates: 1957 - - - -Title-Type: Reduction of Piano Concerto -Title-No: 2 -Title-For: two pianos -Title-Opus: 102a -Title-Dates: 1957 - - - -Title-Type: Symphony -Title-No: 11 -Title-Key: G minor -Title-Name: The Year 1905 -Title-Opus: 103 -Title-Dates: 1957 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 11 -Title-For: piano four hands -Title-Opus: 103a -Title-Dates: 1957 - - - -Title-Name: Cultivation: Two Russian Folk Song Arrangements -Title-For: chorus a cappella -Title-Opus: 104 -Title-Dates: 1957 - - - -Title-Count: Eleven -Title-Type: Variations -Title-Related-On: a Theme by Glinka -Title-For: piano -Title-Opus: 104a -Title-Dates: 1957 - - - -Title-Name: Moscow, Cheryomushki -Title-Type-After-Name: operetta in three acts -Title-Opus: 105 -Title-Dates: 1958 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Cheryomushki -Title-Opus: 105a -Title-Dates: 1962 - - - -Title-Type: Re-orchestration -Title-Related-How: of Mussorgsky's Opera -Title-Related-Name: Khovanshchina -Title-Opus: 106 -Title-Dates: 1959 - - - -Title-Type: Cello Concerto -Title-No: 1 -Title-Key: E flat major -Title-Opus: 107 -Title-Dates: 1959 - - - -Title-Type: Reduction of Cello Concerto -Title-No: 1 -Title-For: cello and piano -Title-Opus: 107a -Title-Dates: 1959 - - - -Title-Type: String Quartet -Title-No: 7 -Title-Key: F sharp minor -Title-Opus: 108 -Title-Dates: 1960 - - - -Title-Name: Satires (Pictures of the Past) -Title-RAW: , Five Romances on Verses by Chorny -Title-For: soprano and piano -Title-Opus: 109 -Title-Dates: 1960 - - - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Satires (Pictures of the Past) -Title-RAW: , Five Romances on Verses by Chorny for soprano and orchestra (Orchestration by Boris Tishchenko) -Title-Opus: 109a - - - -Title-Type: String Quartet -Title-No: 8 -Title-Key: C minor -Title-Opus: 110 -Title-Dates: 1960 - - - -Title-RAW: Chamber Symphony in C minor (Arr. Rudolf Barshai) -Title-Opus: 110a - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Five Days - Five Nights -Title-Opus: 111 -Title-Dates: 1960 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Five Days - Five Nights -Title-For: orchestra -Title-Opus: 111a -Title-Dates: 1961 - - - -Title-Name: Novorossiisk Chimes, the Flame of Eternal Glory -Title-For: orchestra -Title-Opus: 111b -Title-Dates: 1960 - - - -Title-Type: Symphony -Title-No: 12 -Title-Key: D minor -Title-Name: The Year 1917 -Title-Opus: 112 -Title-Dates: 1961 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 12 -Title-For: two pianos, four hands -Title-Opus: 112a -Title-Dates: 1961 - - - -Title-Type: Symphony -Title-No: 13 -Title-Key: B flat minor -Title-Name: Babi-Yar -Title-For: bass, bass chorus and orchestra -Title-Opus: 113 -Title-Dates: 1962 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 13 -Title-For: two pianos four hands -Title-Opus: 113a -Title-Dates: 1962 - - - -Title-Name: Katerina Izmailova -Title-Type-After-Name: opera in four acts -Title-Related-By: after Leskov -Title-Opus: 114 -Title-Dates: 1956-1963 - - - -Title-Type: Suite of Five Fragments -Title-Related-How: from the Opera -Title-Related-Name: Katarina Izmailova -Title-For: orchestra -Title-Opus: 114a -Title-Dates: 1963 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Katerina Izmailova -Title-Opus: 114b -Title-Dates: 1966 - - - -Title-Type: Passacaglia -Title-Related-How: from the Opera -Title-Related-Name: Katerina Izmailova -Title-For: organ -Title-Opus: 114c - - - -Title-Name: Overture on Russian and Khirghiz Folk Themes -Title-For: orchestra -Title-Opus: 115 -Title-Dates: 1963 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Hamlet -Title-Related-By: after Shakespeare -Title-For: orchestra -Title-Opus: 116 -Title-Dates: 1963-1964 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: Hamlet -Title-For: orchestra -Title-Opus: 116a -Title-Dates: 1964 - - - -Title-Type: String Quartet -Title-No: 9 -Title-Key: E flat major -Title-Opus: 117 -Title-Dates: 1964 - - - -Title-Type: String Quartet -Title-No: 10 -Title-Key: A flat major -Title-Opus: 118 -Title-Dates: 1964 - - - -Title-Name: Symphony for Strings -Title-RAW: in A-flat major (Arr. Rudolf Barshai) -Title-Opus: 118a - - - -Title-Name: The Execution of Stepan Razin -Title-Type-After-Name: cantata -Title-Related-By: after Yevtushenko -Title-For: bass, mixed chorus and orchestra -Title-Opus: 119 -Title-Dates: 1964 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: The Execution of Stepan Razin -Title-For: voices and piano -Title-Opus: 119a -Title-Dates: 1964 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: A Year Is Like a Lifetime -Title-For: orchestra -Title-Opus: 120 -Title-Dates: 1965 - - - -Title-Type: Suite -Title-Related-How: from -Title-Related-Name: A Year Is Like a Lifetime -Title-For: orchestra -Title-Opus: 120a -Title-Dates: 1965 - - - -Title-RAW: Five Romances on Texts from the Magazine -Title-Name: Krokodil -Title-For: bass and piano -Title-Opus: 121 -Title-Dates: 1965 - - - -Title-RAW: Orchestration of Five Romances on texts from the Magazine -Title-Name: Krokodil -Title-RAW: (Orcestration by Boris Tishchenko) -Title-Opus: 121a - - - -Title-Type: String Quartet -Title-No: 11 -Title-Key: F minor -Title-Opus: 122 -Title-Dates: 1966 - - - -Title-Name: Preface to the Complete Collection of My Works and Brief Reflections on this Preface -Title-For: bass and piano -Title-Opus: 123 -Title-Dates: 1966 - - - -Title-Count: Two -Title-Type: Choruses -Title-Related-By: after Davidenko -Title-For: chorus and orchestra -Title-Opus: 124 -Title-Dates: 1962 - - - -Title-Type: Transcription -Title-Related-How: of -Title-Related-Name: Songs and Dances of Death -Title-Related-By: by Mussorgsky -Title-For: voice and piano -Title-Opus: 124a -Title-Dates: 1962 - - - -Title-Name: The Lady and the Hooligan -Title-Type-After-Name: ballet in one act -Title-Opus: 124b - - - -Title-RAW: Instrumentation of Schumann's Cello Concerto -Title-Key: A minor -Title-Opus: 125 -Title-Dates: 1963 - - - -Title-Type: Cello Concerto -Title-No: 2 -Title-Key: G minor -Title-Opus: 126 -Title-Dates: 1966 - - - -Title-Type: Reduction of Cello Concerto -Title-No: 2 -Title-For: cello and piano -Title-Opus: 126a -Title-Dates: 1966 - - - -Title-Name: Seven Romances on Poems by Blok -Title-For: soprano, violin, cello and piano -Title-Opus: 127 -Title-Dates: 1967 - - - -Title-RAW: Romance "Spring, Spring" to Verses by Pushkin -Title-For: bass and piano -Title-Opus: 128 -Title-Dates: 1967 - - - -Title-RAW: Orchestration of the Romance "Spring, Spring" to Verses by Pushkin -Title-For: bass and orchestra -Title-Opus: 128a -Title-Dates: 1967 - - - -Title-Type: Violin Concerto -Title-No: 2 -Title-Key: C sharp minor -Title-Opus: 129 -Title-Dates: 1967 - - - -Title-Type: Reduction of Violin Concerto -Title-No: 2 -Title-For: violin and piano -Title-Opus: 129a -Title-Dates: 1967 - - - -Title-Name: Funeral-Triumphal Prelude -Title-For: orchestra -Title-Opus: 130 -Title-Dates: 1967 - - - -Title-Name: October -Title-Type-After-Name: symphonic poem -Title-Key: C minor -Title-For: orchestra -Title-Opus: 131 -Title-Dates: 1967 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: Sofya Perovskaya -Title-Opus: 132 -Title-Dates: 1967 - - - -Title-Type: String Quartet -Title-No: 12 -Title-Key: D flat major -Title-Opus: 133 -Title-Dates: 1968 - - - -Title-Type: Sonata -Title-For: violin and piano -Title-Opus: 134 -Title-Dates: 1968 - - - -Title-RAW: Reorchestration of Tishchenko's Cello Concerto -Title-No: 1 -Title-Opus: 134a -Title-Dates: 1969 - - - -Title-Type: Symphony -Title-No: 14 -Title-For: soprano, bass, string orchestra and percussion -Title-Opus: 135 -Title-Dates: 1969 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 14 -Title-For: voices and piano -Title-Opus: 135a -Title-Dates: 1969 - - - -Title-Name: Loyalty -Title-RAW: , eight ballads after Dolmatovsky for unaccompanied male chorus -Title-Opus: 136 -Title-Dates: 1970 - - - -Title-Type: Music -Title-Related-How: to the film -Title-Related-Name: King Lear -Title-Related-By: after Shakespeare -Title-Opus: 137 -Title-Dates: 1970 - - - -Title-Name: People's Lamentation -Title-Related-How: from -Title-Related-Name: King Lear -Title-RAW: , arranged -Title-For: voice and piano -Title-Opus: 137a -Title-Dates: 1970 - - - -Title-Type: String Quartet -Title-No: 13 -Title-Key: B flat minor -Title-Opus: 138 -Title-Dates: 1970 - - - -Title-Name: March of the Soviet Militia -Title-For: military band/wind orchestra -Title-Opus: 139 -Title-Dates: 1970 - - - -Title-Name: Six Romances on Verses by English Poets -Title-For: bass and chamber orchestra -Title-Opus: 140 -Title-Dates: 1971 - - - -Title-Type: Symphony -Title-No: 15 -Title-Key: A major -Title-Opus: 141 -Title-Dates: 1971 - - - -Title-Type: Reduction -Title-Related-How: of -Title-Related-Name: Symphony No. 15 -Title-For: two pianos -Title-Opus: 141a -Title-Dates: 1971 - - - -Title-Type: Transcription -Title-Related-How: of -Title-Related-Name: Serenada -Title-Related-By: by Braga -Title-For: soprano, mezzo-soprano, violin and piano -Title-Opus: 141b -Title-Dates: 1972 - - - -Title-Type: String Quartet -Title-No: 14 -Title-Key: F sharp major -Title-Opus: 142 -Title-Dates: 1972-1973 - - - -Title-Name: Six Poems by Marina Tsvetayeva -Title-Type-After-Name: suite -Title-For: contralto and piano -Title-Opus: 143 -Title-Dates: 1973 - - - -Title-Name: Six Poems by Marina Tsvetayeva -Title-Type-After-Name: suite -Title-For: contralto and chamber orchestra -Title-Opus: 143a -Title-Dates: 1974 - - - -Title-Type: String Quartet -Title-No: 15 -Title-Key: E flat minor -Title-Opus: 144 -Title-Dates: 1974 - - - -Title-Name: Epilogue -Title-Type-After-Name: Transcription of String Quartet -Title-No: 15 -Title-For: string orchestra -Title-Opus: 144a -Title-Dates: 1994 - - - -Title-RAW: Suite on Verses by Buonarrotti -Title-For: bass and piano -Title-Opus: 145 -Title-Dates: 1974 - - - -Title-RAW: Suite on Verses by Buonarrotti -Title-For: bass and orchestra -Title-Opus: 145a -Title-Dates: 1975 - - - -Title-Name: Four Verses of Captain Lebyadkin to Texts by Dostoyevsky -Title-For: bass and piano -Title-Opus: 146 -Title-Dates: 1975 - - - -## SubNumbers for Opus 146 from: http://home.wanadoo.nl/ovar/shosopus/shoslast.htm - -Title-Type: Orchestration -Title-Related-How: of -Title-Related-Name: Four Verses by Captain Lebyadkin -Title-RAW: (Orchestration by Boris Tishchenko) -Title-Opus: 146a - - - -Title-RAW: Orchestration of Beethoven's Arrangement (Opus 75 No. 3) -Title-Related-How: of Mephistopheles's -Title-Related-Name: Song of the Flea -Title-Opus: 146b -Title-Dates: 1975 - - - -Title-Name: The Dreamers -Title-Type-After-Name: ballet in four acts -Title-Opus: 146c -Title-Dates: 1975 - - - -Title-Type: Sonata -Title-For: viola and piano -Title-Opus: 147 -Title-Dates: 1975 - - - -Title-RAW: Transcription of Opus 147 -Title-For: cello and piano -Title-Opus: 147a -Title-Dates: 1975 - - - -Title-RAW: Transcription of Opus 147 -Title-For: viola, strings and celesta -Title-Opus: 147b -Title-Dates: 1990 - - - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/G_Gershwin.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/G_Gershwin.comp deleted file mode 100644 index 9b5ed5d81..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/G_Gershwin.comp +++ /dev/null @@ -1,906 +0,0 @@ -# format = mail-header - - -# no_opus_no - - - -## Note: All orchestral/operatic pieces are orchestrated by Gershwin unless otherwise specified. -## * Lullaby (1919), a meditative piece for string quartet. Originally, a class assignment from his music theory teacher. -## * Blue Monday, a one-act opera featured in George White's Scandals of 1922, orchestrated by Will Vodery. -## + A Suite from Blue Monday for two pianos was later arranged and has been recorded. -## + Reorchestrated by Ferde Grofe and retitled 135th Street in 1925. -## * Rhapsody in Blue, (1924), his most famous work, a symphonic jazz composition for Paul Whiteman's jazz band & piano , better known in the form orchestrated for full -## symphonic orchestra by Ferde Grofe. Featured in numerous films and commercials. - -Title-RAW: Short Story, -Title-For: violin and piano -Title-Dates: 1925 - -##, an arrangement of two other short pieces originally intended to be included with the Three Preludes. -## * Concerto in F, (1925), three movements, for piano and orchestra -## * Three Preludes, (1926), for piano -## * An American In Paris (1928), a symphonic poem with elements of jazz and realistic Parisian sound effects -## * Second Rhapsody for Piano and Orchestra (1931), for Piano and Orchestra, based on the score for a musical sequence from Delicious. Working title for the work was Rhapsody -## in Rivets. -## + The form most commonly heard today is a re-orchestrated version by Robert McBride; most of Gershwin's orchestrations have been simplified. Also, eight measures not by the composer -## were added to the recapitulation. Michael Tilson Thomas has been a promulgator of Gershwin's original version. -## * Cuban Overture (1932), originally titled Rumba, a tone poem featuring elements of native Cuban dance and folk music; score specifies usage of native Cuban instruments - -Title-RAW: Piano Transcriptions of Eight Songs -Title-Dates: 1932 - -## * I Got Rhythm Variations (1934), a set of interesting variations on his famous song, for piano and orchestra -## + Includes a waltz, an atonal fugue, and experimentation with Asian and jazz influences -## * Porgy And Bess, a folk opera (1935) (from the book by DuBose Heyward) about African-American life, now considered a definitive work of the American theater. -## + Contains the famous aria "Summertime", in addition to hits like "I Got Plenty of Nothin'" and "It Ain't Necessarily So". -## + Porgy and Bess has also been heard in the concert hall, mostly in two orchestral suites, one by Gershwin himself entitled Catfish Row; another suite by Robert Russell -## Bennett, Porgy and Bess: A Symphonic Picture is also relatively popular. - -Title-RAW: Walking the Dog -Title-Dates: 1937 - -##, a humorous piece for orchestra featuring the clarinet. Originally a musical sequence entitled Promenade from the movie Shall We Dance for piano -## and chamber orchestra. -## + Many other incidental sequences from Shall We Dance were written and (for the most part) orchestrated by Gershwin, among them: Waltz of the Red Balloons and a final -## extended 8-minute orchestral passage based on the title song with an intruiging coda hinting at Gershwin forging a new musical path. It is unknown why any of these -## compositions have not seen the light of day in the concert hall. -## + Most of the musicals Gershwin wrote are also known for their instrumental music, among them the March from Strike Up The Band and overtures to many of his later -## shows. - -Title-RAW: Impromptu in Two Keys -Title-Dates: publ. posth. in 1973 - -##, for piano - -Title-Count: Two -Title-Type: Waltzes -Title-Key: C major -Title-Dates: publ. posth. in 1975 - -##, for piano -## + Originally a two-piano interlude in Pardon My English on Broadway. - - - -## Musical theater credits - - - -## Note: All works are musicals produced on Broadway unless specified otherwise. - - - -Title-RAW: Half Past Eight (lyrics by Ira Gershwin and Edward B. Perkins). Premiered in Syracuse. -Title-Dates: 1919 - -Title-RAW: La La Lucille -Title-Lyrics-By: Arthur Jackson, B. G. DeSylva and Irving Caesar -Title-Dates: 1919 - -Title-RAW: Morris Gest -Title-Name: Midnight Whirl -Title-Lyrics-By: B. G. DeSylva and John Henry Mears -Title-Dates: 1919 - -Title-RAW: Limehouse Nights -Title-Lyrics-By: B. G. DeSylva and John Henry Mears -Title-Dates: 1919 - -Title-RAW: Poppyland -Title-Lyrics-By: B. G. DeSylva and John Henry Mears -Title-Dates: 1920 - -Title-RAW: George White's Scandals of 1920 -Title-Lyrics-By: Arthur Jackson -Title-Dates: 1920 - -Title-RAW: A Dangerous Maid (lyrics by Ira Gershwin). Premiered in Atlantic City. -Title-Dates: 1921 - -Title-RAW: The Broadway Whirl (co-composed with Harry Tierney, lyrics by Buddy DeSylva, Joseph McCarthy, Richard Carle and John Henry Mears -Title-Dates: 1921 - -Title-RAW: George White's Scandals of 1921 -Title-Lyrics-By: Arthur Jackson -Title-Dates: 1921 - -Title-RAW: George White's Scandals of 1922 -Title-Lyrics-By: E. Ray Goetz, Ira Gershwin and B. G. DeSylva -Title-Dates: 1922 - -## + The premiere performance featured the one-act opera Blue Monday with libretto and lyrics by B. G. DeSylva, set in Harlem in a jazz idiom. However, after only one -## performance, the opera was withdrawn from the show. Gershwin also wrote seven other songs for the show. - -Title-RAW: Our Nell (co-composed with William Daly, lyrics co-written by Gershwin and Daly) -Title-Dates: 1922 - -Title-RAW: By and By -Title-Lyrics-By: Brian Hooker -Title-Dates: 1922 - -Title-RAW: Innocent Ingenue Baby (co-composed with William Daly, lyrics by Brian Hooker) -Title-Dates: 1923 - -Title-RAW: Walking Home with Angeline -Title-Lyrics-By: Brian Hooker -Title-Dates: 1923 - -Title-RAW: The Rainbow (lyrics by Clifford Grey and Brian Hooker). Premiered in London. -Title-Dates: 1923 - -Title-RAW: George White's Scandals of 1923 -Title-Lyrics-By: E. Ray Goetz, B. G. DeSylva and Ballard MacDonald -Title-Dates: 1923 - -Title-RAW: Sweet Little Devil -Title-Lyrics-By: B. G. DeSylva -Title-Dates: 1924 - -Title-RAW: George White's Scandals of 1924 -Title-Lyrics-By: B. G. DeSylva and Ballard MacDonald -Title-Dates: 1924 - -Title-RAW: Primrose (lyrics by Desmond Carter and Ira Gershwin). Premiered in London. -Title-Dates: 1924 - -Title-RAW: Lady, Be Good! -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1924 - -Title-RAW: Tell Me More! -Title-Lyrics-By: Ira Gershwin and B. G. DeSylva -Title-Dates: 1925 - -Title-RAW: Tip-Toes -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1925 - -Title-RAW: Song of the Flame (operetta, lyrics by Otto Harbach and Oscar Hammerstein II, and musical collaboration by Herbert Stothart) -Title-Dates: 1925 - -Title-RAW: Oh, Kay! -Title-Lyrics-By: Ira Gershwin and Howard Dietz -Title-Dates: 1926 - -## + Includes the famous song, "Someone to Watch Over Me" -## + Revived in 1928 and 1990 (the latter with an all-Black cast) - - - -Title-RAW: Strike Up The Band -Title-Lyrics-By: Ira Gershwin -Title-Dates: premiered in Philadelphia 1927, revised Broadway in 1930, revised 1936 for U.C.L.A - -# prev_aka Strike Up The Band - - - -## + Revised and produced on Broadway in 1930 - -Title-RAW: Funny Face -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1927 - -Title-RAW: Rosalie -Title-Lyrics-By: Ira Gershwin and P. G. Wodehouse, co-composed with Sigmund Romberg -Title-Dates: 1928 - -Title-RAW: Treasure Girl -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1928 - -Title-RAW: Show Girl -Title-Lyrics-By: Ira Gershwin and Gus Kahn -Title-Dates: 1929 - -Title-RAW: Girl Crazy -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1930 - -Title-RAW: Of Thee I Sing -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1931 - -## + Awarded the Pulitzer Prize for Drama for 1932 and was the first musical to win that award, although only Ira Gershwin and the bookwriters were awarded the Prize and -## not George Gershwin -## + Revived in 1933 and 1952 - -Title-RAW: Pardon My English -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1933 - -Title-RAW: Let 'Em Eat Cake -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1933 - -## Let 'Em Eat Cake (lyrics by Ira Gershwin), sequel to Of Thee I Sing (1933) - -Title-RAW: Porgy and Bess -Title-Lyrics-By: Ira Gershwin and DuBose Heyward -Title-Dates: 1935 - -## + Revived on Broadway in 1942, 1943, 1953, 1976 (Houston Grand Opera winner of the Tony Award for Most Innovative Revival of a Musical), and 1983 - - - -## Works featuring original Gershwin songs for shows by other composers - - - -Title-RAW: The Passing Show of 1916 - "Making of a Girl" co-composed with Sigmund Romberg, lyrics by Harold Atteridge -Title-Dates: 1916 - -Title-RAW: Hitchy-Koo of 1918 - "You-Oo just You", lyrics by Irving Caesar -Title-Dates: 1918 - -Title-RAW: Ladies First - "(The Real) American Folk Song (is a Rag)", lyrics by Ira Gershwin and "Some Wonderful Sort of Someone", lyrics by Schuyler Greene -Title-Dates: 1918 - -## * 1919 - Good Morning, Judge - "I was so young (you were so beautiful)", lyrics by Irvine Caesar and Alfred Bryan and "here's more to the kiss than the x-x-x", lyrics by -## Irving Caesar - -Title-RAW: The Lady in Red - "Some Wonderful Sort of Someone", lyrics by Schyler Greene and "Something about Love", lyrics by L. Paley -Title-Dates: 1919 - -Title-RAW: The Capitol Revue - "Come to the Moon", lyrics by L. Paley and Ned Wayburn, "Swanee", lyrics by Irvine Caesar -Title-Dates: 1919 - -Title-RAW: Dear Mabel - "We're pals", lyrics by Irving Caesar, first performed in Baltimore -Title-Dates: 1920 - -Title-RAW: Ed Wynn's Carnival - "Oo, how I love you to be loved by you", lyrics by L. Paley -Title-Dates: 1920 - -Title-RAW: The Sweetheart Shop - "Waiting for the Sun to Come Out", lyrics by Ira Gershwin -Title-Dates: 1920 - -Title-RAW: Sinbad - "Swanee" (as performed by Al Jolson) -Title-Dates: 1920 - -Title-RAW: Broadway Brevities of 1920 - "Lu Lu" and "Snowflakes", lyrics by Arthur Jackson and "Spanish love", lyrics by Irving Caesar -Title-Dates: 1920 - -Title-RAW: Piccadilly to Broadway, songs unpublished -Title-Dates: 1920 - -Title-RAW: Blue Eyes, songs unpublished -Title-Dates: 1921 - -Title-RAW: Selwyn's Snapshots of 1921, songs unpublished -Title-Dates: 1921 - -Title-RAW: The Perfect Fool - "My Log-Cabin Home", lyrics by Irving Caesar and Buddy De Sylva, "No One Else but that Girl of Mine", lyrics by Irving Caesar -Title-Dates: 1921 - -Title-RAW: The French Doll - "Do it again!", lyrics by Buddy De Sylva -Title-Dates: 1922 - -Title-RAW: For Goodness Sake - "Someone" and "Tra-la-la", lyrics by Ira Gershwin -Title-Dates: 1922 - -Title-RAW: The Dancing Girl - "That American Boy of Mine", lyrics by Irving Caesar -Title-Dates: 1922 - -Title-RAW: Spice of 1922 - "The Yankee Doodle Blues", lyrics by Irving Caesar and Buddy De Sylva -Title-Dates: 1922 - -Title-RAW: Little Miss Bluebeard (play) - "I won't say I will but I won't say I won't", lyrics by Ira Gershwin and Buddy De Sylva -Title-Dates: 1923 - -Title-RAW: Nifties of 1923 - "At Half Past Seven", lyrics by Buddy De Sylva, and "Nashville Nightingale", lyrics by Irving Caesar -Title-Dates: 1923 - -Title-RAW: Americana of 1926 - -Title-Name: That Lost Barber Shop Chord -Title-Dates: 1926 - -Title-RAW: 9:15 Revue -Title-Dates: 1930 - -Title-RAW: The Show is On - -Title-Name: By Strauss -Title-Dates: 1936 - -## + Revived in 1937 - - - -## Works interpolating Gershwin songs posthumously: - - - -Title-RAW: At Home With Ethel Waters - -Title-Name: Lady Be Good -Title-Dates: 1953 - -Title-RAW: Mr. Wonderful -Title-Dates: 1956 - -### "I Got Rhythm" a hit single for pop vocal group The Happenings (1967) -### My One And Only - an adaptation of the music from Funny Face (1983) -### Uptown...It's Hot! - "Lady Be Good" (1986) -### Crazy For You - musical adapting George and Ira Gershwin Tin Pan Alley and Broadway songs (1992) -## + Awarded the Tony Award for Best Musical -### The Gershwins' Fascinating Rhythm - revue with songs by George and Ira Gershwin (1999) -## * 2001 - George Gershwin Alone - one-man play by Hershey Felder, who portrayed Gershwin, incorporating "Swanee" from Sinbad (lyrics by Irving Caesar), "Embraceable You" from -## Girl Crazy (lyrics by Ira Gershwin), "Someone to Watch Over Me" from Oh, Kay! (lyrics by Ira Gershwin), "Bess, You is My Woman Now" from Porgy and Bess -## (lyrics by DuBose Heyward and Ira Gershwin), An American in Paris and Rhapody in Blue. -### Elaine Stritch at Liberty - But Not For Me (2002) -### Back From Broadway - one-time concert featuring songs by George Gershwin (2002) - - - -## Musical films - - - -Title-RAW: The Sunshine Trail - theme song of same title (lyrics by Ira Gershwin), as well as accompaniment music for silent film -Title-Dates: 1923 - -Title-RAW: Delicious -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1931 - -Title-RAW: Shall We Dance? -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1937 - -Title-RAW: A Damsel in Distress -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1937 - -Title-RAW: Goldwyn Follies -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1938 - -## + Gershwin died during the filming. Vernon Duke completed and adapted Gerhwin's songs, and composed some additional ones. - -Title-RAW: The Shocking Miss Pilgrim (Kay Swift adapted a number of unpublished Gershwin melodies and Ira Gershwin wrote the lyrics.) -Title-Dates: 1947 - -Title-RAW: Kiss Me, Stupid (adaptations of unpublished Gershwin songs with lyrics by Ira Gershwin.) -Title-Dates: 1964 - - - -## Miscellaneous Songs - - - -Title-RAW: When you want 'em, you can't get 'em, when you've got 'em, you don't want 'em -Title-Lyrics-By: M. Roth -Title-Dates: 1916 - -Title-RAW: The Love of a Wife -Title-Lyrics-By: Arthur Jackson and B. G. De Sylva -Title-Dates: 1919 - -Title-RAW: Yan-Kee -Title-Lyrics-By: Irving Caesar -Title-Dates: 1920 - -Title-RAW: Dixie Rose -Title-Lyrics-By: Irving Caesar and B. G. De Sylva -Title-Dates: 1921 - -Title-RAW: In the Heart of a Geisha -Title-Lyrics-By: Fred Fisher -Title-Dates: 1921 - -Title-RAW: Swanee Rose -Title-Lyrics-By: Irving Caesar and B. G. De Sylva -Title-Dates: 1921 - -Title-RAW: Tomale (I'm hot for you) -Title-Lyrics-By: B. G. De Sylva -Title-Dates: 1921 - -Title-RAW: Harlem River Chanty and It's a great little world! -Title-Lyrics-By: Ira Gershwin, originally composed for Tip-Toes on Broadway but not used -Title-Dates: 1925 - -Title-RAW: Murderous Monty (and Light-Fingered Jane) -Title-Lyrics-By: Desmond Carter, composed for London production of Tell Me More. -Title-Dates: 1925 - -Title-RAW: I'd rather charleston -Title-Lyrics-By: Desmond Carter, composed for London production of Lady Be Good. -Title-Dates: 1926 - -Title-RAW: Beautiful gypsy and Rosalie (originally composed for Rosalie on Broadway, but not used) -Title-Dates: 1928 - -Title-RAW: Feeling Sentimental (originally composed for Show Girl on Broadway, but not used) -Title-Dates: 1929 - -Title-RAW: In the Mandarin's Orchid Garden -Title-Dates: 1929 - -Title-RAW: Mischa, Yascha, Toscha, Sascha (originally composed for the musical film Delicious, but not used. -Title-Dates: 1931 - -## + This is Gershwin's only finished work based on a Jewish theme, and the title is a reference to the first names of four Jewish-Russian violinists, Mischa Elman, -## Jascha Heifetz, Toscha Seidel and Sascha Jacobsen. - -Title-RAW: You've got what gets me (for 1st film version of Girl Crazy) -Title-Dates: 1932 - -Title-RAW: Till Then -Title-Dates: 1933 - -Title-RAW: King of Swing -Title-Lyrics-By: Al Stillman -Title-Dates: 1936 - -Title-RAW: Strike up the band for U.C.L.A (to the same music as the song Strike Up The Band) -Title-Dates: 1936 - - - -Title-RAW: Hi-Ho! -Title-Lyrics-By: Ira Gershwin -Title-Dates: 1937 - -## originally composed for Shall We Dance, but not used - - - -Title-RAW: Just Another Rhumba -Title-Lyrics-By: Ira Gershwin, originally composed for The Goldwyn Follies, but not used -Title-Dates: 1938 - -Title-RAW: Dawn of a New Day -Title-Dates: 1938 - - - -## Commercial Works for Piano - - - -Title-RAW: Rialto Ripples - rag -Title-Dates: 1918 - -## * early 1920s - Three-Quarter Blues (Irish Waltz) - -Title-RAW: Swiss Miss (arrangement of a song from Lady Be Good) -Title-Dates: 1926 - -Title-RAW: Merry Andrew (arrangement of a dance piece from Rosalie) -Title-Dates: 1928 - -Title-RAW: George Gershwin's Song-Book (arrangements of refrains from Gershwin songs) -Title-Dates: 1932 - - - -### ==### PIANO // - -Title: 3 Preludes for Piano (1926) (transcr. for vn. and pf. by Heifetz) - -Title: Three Preludes for Piano (1926) (transcr. for vn. and pf. by Heifetz) - -Title-Count: 3 -Title-Type: Preludes -Title-For: Piano -Title-Dates: 1926 - -Title-Count: Three -Title-Type: Preludes -Title-For: Piano -Title-Dates: 1926 - -Title: Prelude No. 1 for Piano (1926) - Allegro ben ritmato e deciso - -Title: Prelude No. 2 for Piano (1926) - Andante con moto e poco rubato - -Title: Prelude No. 3 for Piano (1926) - Allegro ben ritmato e deciso - -### ==### MUSICALS // -### The Passing Show of 1916 -### ###MUSICALS // -### La La Lucille (1919) -### ###MUSICALS // -### George White's Scandals (1920--1924) -### ###MUSICALS // -### A Dangerous Maid (1921) -### ###MUSICALS // -### Sweet Little Devil (1924) -### ###MUSICALS // -### Primrose (1924) -### ###MUSICALS // -### Lady, Be Good! (1924) -### ###MUSICALS // -### Song of the Flame (1925) -### ###MUSICALS // -### Tell Me More (1925) -### ###MUSICALS // -### Tip Toes (1925) -### ###MUSICALS // -### Oh, Kay! (1926, lyrics by P. G. Wodehouse) -### ###MUSICALS // -### Strike up the Band (1927, 2nd vers. 1930) -### ###MUSICALS // -### Funny Face (1927) -### ###MUSICALS // -### Rosalie (1928) -### ###MUSICALS // -### Treasure Girl (1928) -### ###MUSICALS // -### Show Girl (1929) -### ###MUSICALS // -### Girl Crazy (1930) -### ###MUSICALS // -### Of Thee I Sing (1931, lyrics by George F. Kaufman) -### ###MUSICALS // -### Pardon my English (1933) -### ###MUSICALS // -### Let 'em eat Cake (1933) -### ==### SONGS // -### ## Among the best of hundreds of songs are Swanee; The Man I Love; Embraceable You; I Got Rhythm; Fascinating Rhythm; 'S Wonderful; Lady Be Good; and Love Walked In. The popular Summertime is from Porgy and Bess -### ###FILMS // -### Delicious (1931) -### ###FILMS // -### Shall We Dance?; A Damsel in Distress (1937) -### ###FILMS // -### The Goldwyn Follies (1938) -### ###FILMS // -### The Shocking Miss Pilgrim (1946) -### ###FILMS // -### Kiss Me, Stupid (1964) -### ###OPERAS // - -Title-RAW: Blue Monday -Title-Dates: 1-act; item in George White's Scandals 1922 but withdrawn after 1 perf.; retitled 135th Street and revived Miami 1970 - -### ###OPERAS // -### Porgy and Bess (1934--1935) -### ###ORCH. // - -Title-RAW: Rhapsody in Blue (pf. and orch.) -Title-Dates: 1924 - -### ###ORCH. // - -Title-Type: Piano concerto -Title-Key: F major -Title-Dates: 1925 - -### ###ORCH. // - -Title-RAW: An American in Paris -Title-Dates: 1928 - -### ###ORCH. // - -Title-RAW: Second Rhapsody for Piano and orch. (working title "Rhapsody in Rivets") -Title-Dates: 1931 - -### ###ORCH. // - -Title-RAW: Cuban Overture -Title-Dates: 1932 - -### ###ORCH. // - - - -Title-RAW: "I Got Rhythm" Variations for Piano and orch. -Title-Dates: 1934 - -# prev_aka Variations on "I Got Rhythm" - - - -### -### -### ## http://www.gershwinfan.com/works.html -### -### Since I Found You (1913) -### When You Want 'Em, You Can't Get 'Em; When You've Got 'Em, You Don't Want 'Em (1916) -### ## The Passing Show of 1916 (1916) -### Rialto Ripples (1917) -### Beautiful Bird (1917) -### You Are Not the Girl (1917) -### Hitchy Koo of 1918 (1918) -### The Real American Folk Song (Is a Rag) (1918) -### Kitchenette (1918) -### If You Only Knew (1918) -### There's Magic in the Air (1918) -### When There's a Chance to Dance (1918) -### ## La, La, Lucille (1919) -### Morris Gest Midnight Whirl (1919) -### Lullaby (1919) -### Good Morning, Judge (1919) -### The Lady in Red (1919) -### Capitol Revue (1919) -### George White's Scandals of 1920 (1920) -### Piccadilly to Broadway (1920) -### For No Reason at All (1920) -### Mischa, Jascha, Toscha, Sascha (1920) -### Waiting for the Sun to Come Out (1920) -### Back Home (1920) -### I Want to Be Wanted by You (1920) -### Ed Wynn's Carnival (1920) -### Sinbad (1920) -### Broadway Brevities of 1920 (1920) -### George White's Scandals of 1921 (1921) -### The Perfect Fool (1921) -### Blue Eyes (1921) -### Selwyn's Snapshots of 1921 (1921) -### George White's Scandals of 1922 (1922) -### ## Blue Monday (one-act opera) (1922) -### Molly on the Shore (1922) -### For Goodness Sake (1922) -### A New Step Ev'ry Day a/k/a Stairway to Paradise (1922) -### Our Nell (1922) -### The French Doll (1922) -### ## A Dangerous Maid (1921) -### Phoebe (1921) -### Spice of 1922 (1922) -### The Rainbow (1923) -### George White's Scandals of 1923 (1923) -### The Dancing Girl (1923) -### Nifties of 1923 (1923) -### I Won't Say I Will but I Won't Say I Won't (1923) -### The Sunshine Trail (1923) -### ## Rhapsody in Blue (1924) -### George White's Scandals of 1924 (1924) -### ## Lady, Be Good! (1924) -### ## Sweet Little Devil (1924) -### ## Primrose (1924) -### ## Concerto in F (1925) -### ## Song of the Flame (1925) -### Short Story (1925) -### ## Tell Me More (1925) -### ## Tip-Toes (1925) -### Preludes for Piano (1926) -### Americana (1926) -### ## Oh, Kay! (1926) -### ## Strike Up the Band (1927) -### ## Funny Face (1927) -### ## Treasure Girl (1928) -### ## An American in Paris (1928) -### ## Rosalie (1928) -### ## Show Girl (1929) -### Impromptu in Two Keys (1929) -### Three-Quarter Blues (1929) -### East is West (1929) -### 9:15 Review (1930) -### ## Girl Crazy (1930) -### Strike Up the Band (revision) (1930) -### ## Of Thee I Sing (1931) -### ## Delicious (1931) -### George Gershwin's Song-Book (1932) -### ## Second Rhapsody (1932) -### ## Cuban Overture (1932) -### Girl Crazy (1932) -### ## Pardon My English (1933) -### ## Let 'Em Eat Cake (1933) -### ## Variations on I Got Rhythm (1934) -### ## Porgy and Bess (1935) -### The Show is On (1936) -### Suite from Porgy and Bess (1936) -### ## Shall We Dance? (1937) -### A Damsel in Distress (1937) -### ## The Goldwyn Follies (1937) - - - -Title: Summertime (Act I Scene 1) - -Title: A Woman is a Sometime Thing (Act I Scene 1) - - - -Title: My Man's Gone Now (Act I Scene 2) - -# prev_aka MY MANS GONE NOW - - - -Title: It Take a Long Pull to Get There (Act II Scene 1) - -Title: I Got Plenty o' Nuttin' (Act II Scene 1) - - - -Title: Buzzard Keep on Flyin' (Act II Scene 1) - -# prev_aka THE BUZZARD SONG - - - -Title: Bess, You Is My Woman Now (Act II Scene 1) - -Title: Oh, I Can't Sit Down (Act II Scene 1) - - - -Title: It Ain't Necessarily So (Act II Scene 2) - -## Misprints: - -# prev_aka It Aint Necessarily So (Act II Scene 2) - -# prev_aka It Aint Necessarily So - - - -Title: What you want wid Bess (Act II Scene 2) - -Title: Oh, Doctor Jesus (Act II Scene 3) - -Title: A Red-Haired Woman (Act II Scene 4) - -Title: There's a Boat Dat's Leavin' Soon for New York (Act III Scene 2) - - - -Title: Bess, O Where's My Bess? (Act III Scene 3) - -# prev_aka Where is my Bess - - - -Title: I'm on my way (Act III Scene 3) - - - -### From Ella's record - - - -Title: The Half Of It Dearie Blues - -Title: 'S Wonderful - -Title: Aren't You Kind Of Glad We Did? - -Title: (I've Got) Beginner's Luck - -Title: Bidin' My Time - -Title: Boy Wanted - -Title: Boy! What Love Has Done To Me! - -Title: But Not For Me - -Title: By Strauss - -Title: Cheerful Little Earful - -Title: Clap Yo' Hands - -Title: Embraceable You - -Title: Fascinating Rhythm - -Title: Fascinatin' Rhythm - -Title: Fidgety Feet - -Title: A Foggy Day - -Title: For You, For Me, For Evermore - -## Funny Face - -Title: He Loves And She Loves - -Title: How Long Has This Been Going On? - -Title: I Can't Be Bothered Now - -Title: I Got Rhythm - -Title: I Was Doing All Right - -Title: I've Got A Crush On You - -Title: Isn't It A Pity? - -Title: Just Another Rhumba - -Title: Let's Call The Whole Thing Off - -Title: Let's Kiss And Make Up - -Title: Looking For A Boy - -Title: Lorelei - -### Lorelei - (alternate take) - -Title: Love Is Here To Stay - -### Love Is Here To Stay - (alternate take) - -Title: Love Is Sweeping The Country - -Title: Love Walked In - -Title: The Man I Love - -Title: March Of The Swiss Soldiers - -Title: My Cousin In Milwaukee - -Title: My One And Only - -Title: Nice Work If You Can Get It - -### Of Thee I Sing - -Title: Oh, Lady, Be Good! - -### Oh, Lady, Be Good! - (alternate take) - -Title: Oh, So Nice! - -Title: Prelude I - -Title: Prelude II - -Title: Prelude III - -Title: Promenade (Walking The Dog) - -Title: The Real American Folk Song (Is A Rag) - -Title: Sam And Delilah - -### Shall We Dance? - -Title: Slap That Bass - -Title: Somebody From Somewhere - -Title: Somebody Loves Me - -Title: Someone To Watch Over Me - -Title: Soon - -Title: Stiff Upper Lip - -### Strike Up The Band - -Title: That Certain Feeling - -Title: They All Laughed - -Title: They Can't Take That Away From Me - -Title: Things Are Looking Up - -Title: Treat Me Rough - -Title: Who Cares? - -### You've Got What Gets Me - - - -### From Gershwin plays Gershwin - -Title: Hang on to Me - -Title: Sweet and low down - -Title: Then do we dance? - -Title: Maybe - -Title: Do-do-do - - - -## From Porgy and Bess - -Title: I wants to stay here - -Title: Medley: Here come de honey man crab man oh - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/J_Brahms.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/J_Brahms.comp deleted file mode 100644 index f4bd99f7a..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/J_Brahms.comp +++ /dev/null @@ -1,868 +0,0 @@ -# format = mail-header - - - -## This is a very primitive list, not taking into account sub-opuses - - -Title-Type: Piano Sonata -Title-No: 1 -Title-Key: C major -Title-Opus: 1 -Title-Dates: 1852 - - - -Title-Type: Piano Sonata -Title-No: 2 -Title-Key: F sharp minor -Title-Opus: 2 -Title-Dates: 1852 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 3 -Title-Dates: 1853 - - - -Title-Type: Scherzo -Title-Key: E flat minor -Title-For: piano -Title-Opus: 4 -Title-Dates: 1851 - - - -Title-Type: Piano Sonata -Title-No: 3 -Title-Key: F minor -Title-Opus: 5 -Title-Dates: 1853 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 6 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 7 - - - -Title-Type: Piano Trio -Title-No: 1 -Title-Key: B major -Title-Opus: 8 -Title-Dates: 1854 - - - -Title-RAW: Variations on a theme by Robert Schumann -Title-Key: F sharp minor -Title-For: piano -Title-Opus: 9 -Title-Dates: 1854 - - - -Title-Count: Four -Title-Type: Ballades -Title-For: piano -Title-Opus: 10 -Title-Dates: 1854 - - - -Title-Type: Serenade -Title-No: 1 -Title-Key: D major -Title-For: orchestra -Title-Opus: 11 -Title-Dates: 1857 - - - -Title-Name: Ave Maria -Title-Opus: 12 - - - -Title-Name: Begrдbnisgesang -Title-Opus: 13 - - - -Title-Count: Eight -Title-Type: Songs and Romances -Title-Opus: 14 - - - -Title-Type: Piano Concerto -Title-No: 1 -Title-Key: D minor -Title-Opus: 15 -Title-Dates: 1859 - - - -Title-Type: Serenade -Title-No: 2 -Title-Key: A major -Title-For: orchestra -Title-Opus: 16 -Title-Dates: 1859 - - - -Title-Count: Four -Title-Type: Songs -Title-For: female voices, two horns and harp -Title-Opus: 17 - - - -Title-Type: String Sextet -Title-No: 1 -Title-Key: B flat major -Title-Opus: 18 -Title-Dates: 1860 - - - -Title-Count: Five -Title-Type: Poems -Title-Opus: 19 - - - -Title-Count: Three -Title-Type: Duets -Title-Opus: 20 - - - -Title-RAW: Two Sets of Variations -Title-For: piano -Title-Opus: 21 - - - -Title-Name: Marienlieder -Title-Opus: 22 - - - -Title-RAW: Variations on a Theme by Robert Schumann -Title-For: piano, four hands -Title-Opus: 23 -Title-Dates: 1861 - - - -Title-RAW: Variations and Fugue on a Theme by Handel -Title-For: piano -Title-Opus: 24 -Title-Dates: 1861 - - - -Title-Type: Piano Quartet -Title-No: 1 -Title-Key: G minor -Title-Opus: 25 -Title-Dates: 1861 - - - -Title-Type: Piano Quartet -Title-No: 2 -Title-Key: A major -Title-Opus: 26 -Title-Dates: 1861 - - - -Title-RAW: Psalm 13 -Title-Opus: 27 - - - -Title-Count: Four -Title-Type: Duets -Title-Opus: 28 - - - -Title-Count: Two -Title-Type: Motets -Title-Opus: 29 -Title-Dates: 1860, published 1864 - - - -Title-RAW: Geistliches Lied -Title-Opus: 30 - - - -Title-Count: Three -Title-Type: Vocal Quartets -Title-Opus: 31 - - - -Title-Count: Nine -Title-Type: Songs -Title-Opus: 32 - - - -Title-Count: Fifteen -Title-Type: Romances -Title-Related-How: from Tieck's -Title-Related-Name: Liebesgeschichte der schцnen Magelone -Title-Opus: 33 - - - -Title-Type: Piano Quintet -Title-Key: F minor -Title-Opus: 34 -Title-Dates: 1864 - - - -Title-Type: Sonata -Title-For: 2 Pianos -Title-Key: F minor -Title-Opus: 34b - - - -Title-RAW: Variations on a Theme by Paganini -Title-For: Piano -Title-Opus: 35 -Title-Dates: 1862-1863 - - - -Title-Type: String Sextet -Title-No: 2 -Title-Opus: 36 - - - -Title-Count: Three -Title-Type: Sacred Choruses -Title-Opus: 37 - - - -Title-Type: Cello Sonata -Title-No: 1 -Title-Key: E minor -Title-Opus: 38 -Title-Dates: 1862-65 - - - -Title-Count: Sixteen -Title-Type: Waltzes -Title-For: piano, four hands -Title-Opus: 39 -Title-Dates: 1865 - - - -Title-Type: Trio -Title-For: Horn, Violin and Piano -Title-Key: E flat major -Title-Opus: 40 -Title-Dates: 1865 - - - -Title-Count: Five -Title-Type: Songs -Title-For: male voices -Title-Opus: 41 - - - -Title-Count: Three -Title-Type: secular songs -Title-For: choir -Title-Opus: 42 - - - -Title-Count: Four -Title-Type: Songs -Title-Opus: 43 - - - -Title-Count: Twelve -Title-Type: Songs and Romances -Title-Opus: 44 - - - -Title-Name: Ein deutsches Requiem -Title-Opus: 45 -Title-Dates: 1868 - - - -Title-Count: Four -Title-Type: Songs -Title-Opus: 46 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 47 - - - -Title-Count: Seven -Title-Type: Songs -Title-Opus: 48 - - - -Title-RAW: Five Songs -- (#4, "Wiegenlied", is also known as "Brahms' Lullaby") -Title-Opus: 49 - - - -Title-Name: Rinaldo -Title-Opus: 50 - - - -Title-Count: Two -Title-Type: String Quartets -Title-Opus: 51 - - - -Title-Count: Eighteen -Title-Name: Liebeslieder-Waltzer -Title-For: piano, four hands and vocal quartet -Title-Name: ad libitum -Title-Opus: 52 -Title-Dates: 1874 - - - -Title-RAW: Alto Rhapsody -Title-Opus: 53 - - - -Title-Name: Schicksalslied -Title-Opus: 54 - - - -Title-Name: Triumphlied -Title-Opus: 55 - - - -Title-RAW: Variations on a Theme by Joseph Haydn -Title-Opus: 56 -Title-Dates: 1873 - - - -Title-Count: Eight -Title-Type: Songs -Title-Opus: 57 - - - -Title-Count: Eight -Title-Type: Songs -Title-Opus: 58 - - - -Title-Count: Eight -Title-Type: Songs -Title-Opus: 59 - - - -Title-Type: Piano Quartet -Title-No: 3 -Title-Key: C minor -Title-Opus: 60 - - - -Title-Count: Four -Title-Type: Duets -Title-Opus: 61 - - - -Title-Count: Seven -Title-Type: secular songs -Title-For: choir -Title-Opus: 62 - - - -Title-Count: Nine -Title-Type: Songs -Title-Opus: 63 - - - -Title-Count: Three -Title-Type: Vocal Quartets -Title-Opus: 64 - - - -Title-RAW: Neue Liebeslieder - 15 Waltzes -Title-Opus: 65 - - - -Title-Count: Five -Title-Type: Duets -Title-Opus: 66 - - - -Title-Type: String Quartet -Title-No: 3 -Title-Key: B flat major -Title-Opus: 67 -Title-Dates: 1876 - - - -Title-Type: Symphony -Title-No: 1 -Title-Key: C minor -Title-Opus: 68 -Title-Dates: 1876 premiиre - - - -Title-Count: Nine -Title-Type: Songs -Title-Opus: 69 - - - -Title-Count: Four -Title-Type: Songs -Title-Opus: 70 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 71 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 72 - - - -Title-Type: Symphony -Title-No: 2 -Title-Key: D major -Title-Opus: 73 -Title-Dates: 1877 - - - -Title-Count: Two -Title-Type: Motets -Title-Opus: 74 - - - -Title-Count: Four -Title-Type: Ballads and Romances -Title-Opus: 75 - - - -Title-Count: Eight -Title-Type: Pieces -Title-For: piano -Title-Opus: 76 -Title-Dates: 1878 - - - -Title-Type: Violin Concerto -Title-Key: D major -Title-Opus: 77 -Title-Dates: 1878 - - - -Title-Type: Violin Sonata -Title-No: 1 -Title-Key: G major -Title-Opus: 78 - - - -Title-Count: Two -Title-Type: Rhapsodies -Title-For: piano -Title-Opus: 79 -Title-Dates: 1879 - - - -Title-Name: Academic Festival Overture -Title-For: orchestra -Title-Opus: 80 -Title-Dates: 1880 - - - -Title-Name: Tragic Overture -Title-For: orchestra -Title-Opus: 81 -Title-Dates: 1880 - - - -Title-Name: Nдnie -Title-Opus: 82 -Title-Dates: 1881 - - - -Title-Type: Piano Concerto -Title-No: 2 -Title-Key: B flat major -Title-Opus: 83 -Title-Dates: 1881 - - - -Title-Type: Romances and Songs -Title-Opus: 84 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 85 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 86 - - - -Title-Type: Piano Trio -Title-No: 2 -Title-Key: C major -Title-Opus: 87 - - - -Title-Type: String Quintet -Title-No: 1 -Title-Key: F major -Title-Opus: 88 -Title-Dates: 1882 - - - -Title-Name: Gesang der Parzen -Title-Opus: 89 - - - -Title-Type: Symphony -Title-No: 3 -Title-Key: F major -Title-Opus: 90 -Title-Dates: 1883 - - - -Title-Count: Two -Title-Type: Songs -Title-For: Voice, Viola & Piano -Title-Opus: 91 - - - -Title-Count: Four -Title-Type: Vocal Quartets -Title-Opus: 92 - - - -Title-Count: Six -Title-Type: Songs and Romances -Title-For: choir -Title-Opus: 93 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 94 - - - -Title-Count: Seven -Title-Type: Songs -Title-Opus: 95 - - - -Title-Count: Four -Title-Type: Songs -Title-Opus: 96 - - - -Title-Count: Six -Title-Type: Songs -Title-Opus: 97 - - - -Title-Type: Symphony -Title-No: 4 -Title-Key: E minor -Title-Opus: 98 -Title-Dates: 1885 - - - -Title-Type: Cello Sonata -Title-No: 2 -Title-Key: F major -Title-Opus: 99 -Title-Dates: 1886 - - - -Title-Type: Violin Sonata -Title-No: 2 -Title-Key: A major -Title-Opus: 100 -Title-Dates: 1886 - - - -Title-Type: Piano Trio -Title-No: 3 -Title-Key: C minor -Title-Opus: 101 -Title-Dates: 1886 - - - -Title-Type: Double Concerto -Title-For: Violin and Cello -Title-Key: A minor -Title-Opus: 102 -Title-Dates: 1887 - - - -Title-Name: Zigeunerlieder -Title-Opus: 103 - - - -Title-Count: Five -Title-Type: songs -Title-For: choir -Title-Opus: 104 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 105 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 106 - - - -Title-Count: Five -Title-Type: Songs -Title-Opus: 107 - - - -Title-Type: Violin Sonata -Title-No: 3 -Title-Key: D minor -Title-Opus: 108 - - - -Title-Name: Fest- und Gedenksprьche -Title-For: choir -Title-Opus: 109 - - - -Title-Count: Three -Title-Type: Motets -Title-Opus: 110 - - - -Title-Type: String Quintet -Title-No: 2 -Title-Key: G major -Title-Name: Prater -Title-Opus: 111 -Title-Dates: 1890 - - - -Title-Count: Six -Title-Type: Vocal Quartets -Title-Opus: 112 - - - -Title-Count: Thirteen -Title-Type: Canons -Title-For: female choir -Title-Opus: 113 - - - -Title-Type: Trio -Title-For: Piano, Clarinet, and Cello -Title-Key: A minor -Title-Opus: 114 -Title-Dates: 1891 - - - -Title-Type: Quintet -Title-For: Clarinet and Strings -Title-Key: B minor -Title-Opus: 115 -Title-Dates: 1891 - - - -Title-Count: Seven -Title-Type: Fantasias -Title-For: piano -Title-Opus: 116 -Title-Dates: 1892 - - - -Title-Count: Three -Title-Type: Intermezzi -Title-For: piano -Title-Opus: 117 -Title-Dates: 1892 - - - -Title-Count: Six -Title-Type: Pieces -Title-For: Piano -Title-Opus: 118 -Title-Dates: 1893 - - - -Title-Count: Four -Title-Type: Pieces -Title-For: piano -Title-Opus: 119 -Title-Dates: 1893 - - - -Title-Count: Two -Title-Type: Clarinet Sonatas -Title-Opus: 120 - - - -Title-Name: Vier ernste Gesдnge -Title-RAW: ("Four Serious Songs") -Title-Opus: 121 -Title-Dates: 1896 - - - -Title-Count: Eleven -Title-Type: Chorale Preludes -Title-For: organ -Title-Opus: 122 -Title-Dates: 1896 - - - -Title-RAW: Hungarian Dances (1869) (Brahms considered these adaptations, not original works, and so he did not assign an Opus #) [1] -Title-Opus: WoO 1 - - - -Title-RAW: Chorale Prelude and Fugue on „O Traurigkeit, o Herzeleid“ -Title-For: organ -Title-Opus: WoO 7 - - - -Title-Type: Fugue -Title-Key: A flat minor -Title-For: organ -Title-Opus: WoO 8 - - - -Title-Type: Prelude and Fugue -Title-Key: A minor -Title-For: organ -Title-Opus: WoO 9 - - - -Title-Type: Prelude and Fugue -Title-Key: G minor -Title-For: organ -Title-Opus: WoO 10 - - - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/L_van_Beethoven.comp b/fhem/FHEM/lib/Normalize/Text/Music_Fields/L_van_Beethoven.comp deleted file mode 100644 index aad1e4668..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/L_van_Beethoven.comp +++ /dev/null @@ -1,4227 +0,0 @@ -# format = mail-header - - - - -## Format: "title; opus (date)" -## The dates are taken from CODM, beethovenlv, or wikipedia -## The most expanded date is taken; if there is a conflict, the first -## available date (in the order above) is taken - - - -# dup_opus_rex ^(?i)WoO\s+(15|74|105|116|158)\b - -# opus_prefix Op. - - - -## These titles are taken from wikipedia site: - -Title-Count: Three -Title-Type: Piano Trios -Title-Opus: 1 -Title-Dates: 1792--1794 - -Title-Type: Piano Trio -Title-No: 1 -Title-Key: E flat major -Title-Opus: 1-1 -Title-Dates: 1792--1793 - -Title-Type: Piano Trio -Title-No: 2 -Title-Key: G major -Title-Opus: 1-2 -Title-Dates: 1792--1794 - -Title-Type: Piano Trio -Title-No: 3 -Title-Key: C minor -Title-Opus: 1-3 -Title-Dates: 1792--1794 - -Title-Count: Three -Title-Type: Piano Sonatas -Title-Opus: 2 -Title-Dates: 1794--1795 - -Title-Type: Piano Sonata -Title-No: 1 -Title-Key: F minor -Title-Opus: 2-1 -Title-Dates: 1793--1795 - -Title-Type: Piano Sonata -Title-No: 2 -Title-Key: A major -Title-Opus: 2-2 -Title-Dates: 1794--1795 - -Title-Type: Piano Sonata -Title-No: 3 -Title-Key: C major -Title-Opus: 2-3 -Title-Dates: 1794--1795 - -Title-Type: String Trio -Title-No: 1 -Title-Key: E flat major -Title-Opus: 3 -Title-Dates: pre-1794 - -Title-Type: String Quintet -Title-Key: E flat major -Title-Opus: 4 -Title-Dates: 1795 - -Title-Count: Two -Title-Type: Cello Sonatas -Title-Opus: 5 -Title-Dates: 1796 - -Title-Type: Sonata -Title-For: Piano and Cello -Title-No: 1 -Title-Key: F major -Title-Opus: 5-1 -Title-Dates: 1796 - -Title-Type: Sonata -Title-For: Piano and Cello -Title-No: 2 -Title-Key: G minor -Title-Opus: 5-2 -Title-Dates: 1796 - -Title-Type: Piano Sonata -Title-For: four hands -Title-Opus: 6 -Title-Dates: 1797 - -Title-Type: Piano Sonata -Title-No: 4 -Title-Key: E flat major -Title-Opus: 7 -Title-Dates: 1796 - -Title-Type: Serenade -Title-Key: D major -Title-For: string trio -Title-Opus: 8 -Title-Dates: 1797 - -Title-Count: Three -Title-Type: String Trios -Title-Opus: 9 -Title-Dates: 1798 - -Title-Type: String Trio -Title-No: 2 -Title-Key: G major -Title-Opus: 9-1 -Title-Dates: 1798 - -Title-Type: String Trio -Title-No: 3 -Title-Key: D major -Title-Opus: 9-2 -Title-Dates: 1798 - -Title-Type: String Trio -Title-No: 4 -Title-Key: C minor -Title-Opus: 9-3 -Title-Dates: 1798 - -Title-Count: Three -Title-Type: Piano Sonatas -Title-Opus: 10 -Title-Dates: 1798 - -Title-Type: Piano Sonata -Title-No: 5 -Title-Key: C minor -Title-Opus: 10-1 -Title-Dates: 1795--1797 - -Title-Type: Piano Sonata -Title-No: 6 -Title-Key: F major -Title-Opus: 10-2 -Title-Dates: 1796--1797 - -Title-Type: Piano Sonata -Title-No: 7 -Title-Key: D major -Title-Opus: 10-3 -Title-Dates: 1797--1798 - -Title-Type: Piano Trio -Title-No: 4 -Title-Key: B flat major -Title-Opus: 11 -Title-Dates: 1797 - -Title-Count: Three -Title-Type: Violin Sonatas -Title-Opus: 12 -Title-Dates: 1798 - -Title-Type: Violin Sonata -Title-No: 1 -Title-Key: D major -Title-Opus: 12-1 -Title-Dates: 1798 - -Title-Type: Violin Sonata -Title-No: 2 -Title-Key: A major -Title-Opus: 12-2 -Title-Dates: 1798 - -Title-Type: Violin Sonata -Title-No: 3 -Title-Key: E flat major -Title-Opus: 12-3 -Title-Dates: 1798 - -Title-Type: Piano Sonata -Title-No: 8 -Title-Key: C minor -Title-Name: Pathetique -Title-Opus: 13 -Title-Dates: 1799 - -Title-Count: Two -Title-Type: Piano Sonatas -Title-Opus: 14 -Title-Dates: 1799 - -Title-Type: Piano Sonata -Title-No: 9 -Title-Key: E major -Title-Opus: 14-1 -Title-Dates: 1798--1799 - -Title-Type: Piano Sonata -Title-No: 10 -Title-Key: G major -Title-Opus: 14-2 -Title-Dates: 1799 - -Title-Type: Piano Concerto -Title-No: 1 -Title-Key: C major -Title-Punct: ; -Title-Comment: Op. 15 (comp. 1795--1798, f.p. (presumed) Vienna, 1800-4-2, soloist Beethoven, cond. Wranitzky; pubd. 1801-3) - -Title-Type: Quintet -Title-For: Piano and Winds -Title-Opus: 16 -Title-Dates: 1796, pubd. 1801 - -Title-Type: Horn Sonata -Title-Key: F major -Title-Opus: 17 -Title-Dates: 1800 - -Title-Count: Six -Title-Type: String Quartets -Title-Opus: 18 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 1 -Title-Key: F major -Title-Opus: 18-1 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 2 -Title-Key: G major -Title-Opus: 18-2 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 3 -Title-Key: D major -Title-Opus: 18-3 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 4 -Title-Key: C minor -Title-Opus: 18-4 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 5 -Title-Key: A major -Title-Opus: 18-5 -Title-Dates: 1800 - -Title-Type: String Quartet -Title-No: 6 -Title-Key: B flat major -Title-Opus: 18-6 -Title-Dates: 1800 - -Title-Type: Piano Concerto -Title-No: 2 -Title-Key: B flat major -Title-Opus: 19 -Title-Dates: comp. 1794--1795, f.p. Vienna, 1795-03-29, soloist Beethoven; pubd. 1801-12 - -Title-Type: Septet -Title-Key: E flat major -Title-Opus: 20 -Title-Dates: 1799 - -Title-Type: Symphony -Title-No: 1 -Title-Key: C major -Title-Opus: 21 -Title-Dates: comp. 1799--1800, f.p. Vienna, 1800-04-02, cond. P. Wranitzky; pubd. 1801 - -Title-Type: Piano Sonata -Title-No: 11 -Title-Key: B flat major -Title-Opus: 22 -Title-Dates: 1800 - -Title-Type: Violin Sonata -Title-No: 4 -Title-Key: A minor -Title-Opus: 23 -Title-Dates: 1800 - -Title-Type: Violin Sonata -Title-No: 5 -Title-Key: F major -Title-Name: Spring -Title-Opus: 24 -Title-Dates: 1801 - -Title-Type: Serenade -Title-Key: D major -Title-For: Flute, Violin and Viola -Title-Opus: 25 -Title-Dates: 1801 - -Title-Type: Piano Sonata -Title-No: 12 -Title-Key: A flat major -Title-Opus: 26 -Title-Dates: 1801 - -Title-Count: Two -Title-Type: Piano Sonatas -Title-Opus: 27 -Title-Dates: 1801 - -Title-Type: Piano Sonata -Title-No: 13 -Title-Key: E flat major -Title-Opus: 27-1 -Title-Dates: 1801 - -Title-Type: Piano Sonata -Title-No: 14 -Title-Key: C sharp minor -Title-Name: Moonlight -Title-Opus: 27-2 -Title-Dates: 1800--1801 - -Title-Type: Piano Sonata -Title-No: 15 -Title-Key: D major -Title-Opus: 28 -Title-Dates: 1801 - -Title-Type: String Quintet -Title-Key: C major -Title-Opus: 29 -Title-Dates: 1801 - -Title-Count: Three -Title-Type: Violin Sonatas -Title-Opus: 30 -Title-Dates: 1801--1802 - -Title-Type: Violin Sonata -Title-No: 6 -Title-Key: A major -Title-Opus: 30-1 -Title-Dates: 1801--1802 - -Title-Type: Violin Sonata -Title-No: 7 -Title-Key: C minor -Title-Opus: 30-2 -Title-Dates: 1801--1802 - -Title-Type: Violin Sonata -Title-No: 8 -Title-Key: G major -Title-Opus: 30-3 -Title-Dates: 1801--1802 - -Title-Count: Three -Title-Type: Piano Sonatas -Title-Opus: 31 -Title-Dates: 1802 - -Title-Type: Piano Sonata -Title-No: 16 -Title-Key: G major -Title-Opus: 31-1 -Title-Dates: 1802 - -Title-Type: Piano Sonata -Title-No: 17 -Title-Key: D minor -Title-Name: Tempest -Title-Opus: 31-2 -Title-Dates: 1802 - -Title-Type: Piano Sonata -Title-No: 18 -Title-Key: E flat major -Title-Name: The Hunt -Title-Opus: 31-3 -Title-Dates: 1802 - -Title-RAW: Song - An die Hoffnung -Title-Opus: 32 -Title-Dates: 1805 - -Title-Count: Seven -Title-Type: Bagatelles -Title-For: piano -Title-Opus: 33 -Title-Dates: 1802 - -Title-Count: Six -Title-Type: variations -Title-For: piano -Title-Related-On: an original theme -Title-Key: F major -Title-Opus: 34 -Title-Dates: 1802 - -Title-RAW: Fifteen variations and a fugue for piano on an original theme -Title-Key: E flat major -Title-Name: Eroica -Title-Opus: 35 -Title-Dates: 1802 - -Title-Type: Symphony -Title-No: 2 -Title-Key: D major -Title-Opus: 36 -Title-Dates: comp. 1801--1802, f.p. Vienna, 1803-04-05, cond. Beethoven; pubd. 1804 - -Title-Type: Piano Concerto -Title-No: 3 -Title-Key: C minor -Title-Opus: 37 -Title-Dates: comp. 1800--1801, f.p. Vienna, 1803-04-05, soloist Beethoven; pubd. 1804 - -Title-RAW: Piano Trio No. 8 (Arrangement of the Septet; Op. 20)) -Title-Opus: 38 -Title-Dates: 1820--1823 - -Title-RAW: Two Preludes through all twelve major keys -Title-For: piano -Title-Opus: 39 -Title-Dates: 1789 - -Title-Type: Romance -Title-For: Violin -Title-Key: G major -Title-Opus: 40 -Title-Dates: 1802 - -Title-Type: Serenade -Title-For: Piano and Flute or Violin -Title-Key: D major -Title-Opus: 41 -Title-Dates: 1803 - -Title-Type: Notturno -Title-For: Viola and Piano -Title-Key: D major -Title-Opus: 42 -Title-Dates: 1803 - -Title-RAW: The Creatures of Prometheus, Overture and Ballet music -Title-Opus: 43 -Title-Dates: 1801 - -Title-RAW: Piano Trio No. 10 (Variations on an original theme in E flat major) -Title-Opus: 44 -Title-Dates: 1802--1803 - -Title-Count: Three -Title-Type: Marches -Title-For: Piano, 4 hands -Title-Opus: 45 -Title-Dates: 1803 - -Title-RAW: Song - Adelaide -Title-Opus: 46 -Title-Dates: 1795 - -Title-Type: Violin Sonata -Title-No: 9 -Title-Key: A major -Title-Name: Kreutzer -Title-Opus: 47 -Title-Dates: 1802 - -Title-Count: Six -Title-Type: Songs -Title-Opus: 48 -Title-Dates: 1802 - -Title-RAW: Bitten -Title-Opus: 48-1 -Title-Dates: 1802 - -Title-RAW: Die Liebe des Nдchsten -Title-Opus: 48-2 -Title-Dates: 1802 - -Title-RAW: Vom Tode -Title-Opus: 48-3 -Title-Dates: 1802 - -Title-RAW: Die Ehre Gottes aus der Natur -Title-Opus: 48-4 -Title-Dates: 1802 - -Title-RAW: Gottes Macht und Vorsehung, BuЯlied -Title-Opus: 48-5 -Title-Dates: 1802 - -Title-Count: Two -Title-Type: Piano Sonatas -Title-Opus: 49 -Title-Dates: 1802 - -Title-Type: Piano Sonata -Title-No: 19 -Title-Key: G minor -Title-Opus: 49-1 -Title-Dates: 1797 - -Title-Type: Piano Sonata -Title-No: 20 -Title-Key: G major -Title-Opus: 49-2 -Title-Dates: 1795--1796 - -Title-Type: Romance -Title-For: Violin -Title-Key: F major -Title-Opus: 50 -Title-Dates: 1798 - -Title-Count: Two -Title-Type: Rondos -Title-For: Piano -Title-Opus: 51 -Title-Dates: 1797 - -Title-Type: Rondo -Title-Key: C major -Title-Opus: 51-1 -Title-Dates: 1796--1797 - -Title-Type: Rondo -Title-Key: G major -Title-Opus: 51-2 -Title-Dates: 1798 - -Title-Count: Eight -Title-Type: Songs -Title-Opus: 52 -Title-Dates: 1785--1793 - -Title-RAW: Urians Reise um die Welt -Title-Opus: 52-1 -Title-Dates: 1785--1793 - -Title-RAW: Feuerfab -Title-Opus: 52-2 -Title-Dates: 1785--1793 - -Title-RAW: Das Liedchen von der Ruhe -Title-Opus: 52-3 -Title-Dates: 1785--1793 - -Title-RAW: Maigesang -Title-Opus: 52-4 -Title-Dates: 1785--1793 - -Title-RAW: Mollys Abschied -Title-Opus: 52-5 -Title-Dates: 1785--1793 - -Title-RAW: Die Liebe -Title-Opus: 52-6 -Title-Dates: 1785--1793 - -Title-RAW: Marmotte -Title-Opus: 52-7 -Title-Dates: 1785--1793 - -Title-RAW: Das Blьmchen Wunderhold -Title-Opus: 52-8 -Title-Dates: 1785--1793 - -Title-Type: Piano Sonata -Title-No: 21 -Title-Key: C major -Title-Name: Waldstein -Title-Opus: 53 -Title-Dates: 1804 - -Title-Type: Piano Sonata -Title-No: 22 -Title-Key: F major -Title-Opus: 54 -Title-Dates: 1804 - -Title-Type: Symphony -Title-No: 3 -Title-Key: E flat major -Title-Name: Eroica -Title-Opus: 55 -Title-Dates: comp. 1803--1804, f.pub.p. Vienna, 1805-04-07; pubd. 1806 - -Title-Type: Triple Concerto -Title-Key: C major -Title-Opus: 56 -Title-Dates: comp. 1804, f.p. 1808; pubd. 1807 - -Title-Type: Piano Sonata -Title-No: 23 -Title-Key: F minor -Title-Name: Appassionata -Title-Opus: 57 -Title-Dates: 1805 - -Title-Type: Piano Concerto -Title-No: 4 -Title-Key: G major -Title-Opus: 58 -Title-Dates: comp. 1805--1806, f.p. Vienna, 1808-12-22, soloist Beethoven; pubd. 1808 - -Title-RAW: Three String Quartets, the Rasumovsky quartets -Title-Opus: 59 -Title-Dates: comp. 1806 - -Title-Type: String Quartet -Title-No: 7 -Title-Key: F major -Title-Opus: 59-1 -Title-Dates: comp. 1806 - -Title-Type: String Quartet -Title-No: 8 -Title-Key: E minor -Title-Opus: 59-2 -Title-Dates: comp. 1806 - -Title-Type: String Quartet -Title-No: 9 -Title-Key: C major -Title-Opus: 59-3 -Title-Dates: comp. 1806 - -Title-Type: Symphony -Title-No: 4 -Title-Key: B flat major -Title-Opus: 60 -Title-Dates: comp. 1806, f.pub.p. Vienna, 1807-11-15, cond. Clement; pubd. 1808 - -Title-Type: Concerto -Title-For: Violin and Orchestra -Title-Key: D major -Title-Opus: 61 -Title-Dates: arr. for pf. by Beethoven 1807, pubd. 1808 / comp. 1806, f.p. Vienna, 1806-12-23, soloist Franz Clement; pub. 1809 - -Title-RAW: Overture - Coriolan -Title-Opus: 62 -Title-Dates: 1807 - -Title-RAW: Arrangement of String Quintet (Op. 4) -Title-For: Piano Trio -Title-Opus: 63 -Title-Dates: 1806 - -Title-RAW: Arrangement of String Trio (Op. 3) -Title-For: Piano and Cello -Title-Opus: 64 -Title-Dates: 1807 - -Title-RAW: Aria - Ah perfido! -Title-Opus: 65 -Title-Dates: comp. 1796 - -Title-RAW: Variations for Cello on Mozart's Ein Mдdchen oder Weibchen -Title-Opus: 66 -Title-Dates: 1796 - -Title-Type: Symphony -Title-No: 5 -Title-Key: C minor -Title-Opus: 67 -Title-Dates: comp. 1804--1808, f.p. Vienna, 1808-12-22, cond. Beethoven; pubd. 1809 - -Title-Type: Symphony -Title-No: 6 -Title-Key: F major -Title-Name: Pastoral -Title-Opus: 68 -Title-Dates: comp. 1807--1808, f.p. Vienna, 1808-12-22, cond. Beethoven; pubd. 1809 - -Title-Type: Sonata -Title-For: Piano and Violoncello -Title-No: 3 -Title-Key: A major -Title-Opus: 69 -Title-Dates: 1808 - -Title-Count: Two -Title-Type: Piano Trios -Title-Opus: 70 -Title-Dates: 1808 - -Title-Type: Piano Trio -Title-No: 5 -Title-Key: D major -Title-Name: Ghost -Title-Opus: 70-1 -Title-Dates: 1808 - -Title-Type: Piano Trio -Title-No: 6 -Title-Key: E flat major -Title-Opus: 70-2 -Title-Dates: 1808 - -Title-Type: Wind sextet -Title-Key: E flat major -Title-Opus: 71 -Title-Dates: 1796 - -Title-RAW: Opera - Fidelio (c. 1803-5; Fidelio Overture composed 1814) -Title-Opus: 72 -Title-Dates: 1805, rev. 1806 and 1814 / 1814 - -Title-RAW: Opera - Leonore (earlier version of Fidelio, with Leonore No. 2 Overture) -Title-Opus: 72a -Title-Dates: 1805 - -Title-RAW: Opera - Leonore (earlier version of Fidelio, with Leonore No. 3 Overture) -Title-Opus: 72b -Title-Dates: 1806 - -Title-Type: Piano Concerto -Title-No: 5 -Title-Key: E flat major -Title-Name: Emperor -Title-Opus: 73 -Title-Dates: comp. 1809, f.p. Leipzig, 1810-12, soloist F. Schneider, f. Vienna p. 1812-02-12, soloist Czerny; pubd. 1811 - -Title-Type: String Quartet -Title-No: 10 -Title-Key: E flat major -Title-Name: Harp -Title-Opus: 74 -Title-Dates: 1809 - -Title-Count: Six -Title-Type: Songs -Title-Opus: 75 -Title-Dates: 1809 - -Title-Type: Mignon -Title-Opus: 75-1 -Title-Dates: 1809 - -Title-RAW: Neue Liebe neues Leben -Title-Opus: 75-2 -Title-Dates: 1809 - -Title-RAW: Aus Goethes Faust: Es war einmal ein Kцnig -Title-Opus: 75-3 -Title-Dates: 1809 - -Title-RAW: Gretels Warnung -Title-Opus: 75-4 -Title-Dates: 1809 - -Title-RAW: An die fernen Geliebten -Title-Opus: 75-5 -Title-Dates: 1809 - -Title-RAW: Der Zufriedene -Title-Opus: 75-6 -Title-Dates: 1809 - -Title-Count: Six -Title-Type: variations -Title-For: piano -Title-Related-On: an original theme -Title-Key: D major -Title-Opus: 76 -Title-Dates: 1810 - -Title-Type: Piano Fantasia -Title-Opus: 77 -Title-Dates: 1810 - -Title-Type: Piano Sonata -Title-No: 24 -Title-Key: F sharp major -Title-Opus: 78 -Title-Dates: 1809 - -Title-Type: Piano Sonata -Title-No: 25 -Title-Key: G major -Title-Opus: 79 -Title-Dates: 1809 - -Title-Type: Fantasy -Title-Key: C minor -Title-For: piano, chorus, and orchestra -Title-Opus: 80 -Title-Dates: 1808 - -Title-Type: Piano Sonata -Title-No: 26 -Title-Key: E flat major -Title-Name: Les Adieux -Title-Opus: 81a -Title-Dates: 1809 - -Title-Type: Sextet -Title-Key: E flat major -Title-Opus: 81b -Title-Dates: ?1795 - -Title-RAW: Four Ariettas and a Duet -Title-Opus: 82 -Title-Dates: 1809 - -Title-RAW: Dimmi, ben mio, che m'ami -Title-Opus: 82-1 -Title-Dates: 1809 - -Title-RAW: T'intendo si, mio cor -Title-Opus: 82-2 -Title-Dates: 1809 - -Title-RAW: L'amante impaziente (first version) -Title-Opus: 82-3 -Title-Dates: 1809 - -Title-RAW: L'amante impatiente (second version) -Title-Opus: 82-4 -Title-Dates: 1809 - -Title-RAW: Duet: Odi 'laura che dolce sospira -Title-Opus: 82-5 -Title-Dates: 1809 - -Title-Count: Three -Title-Type: Songs -Title-Opus: 83 -Title-Dates: 1810 - -Title-RAW: Wonne der Wehmut -Title-Opus: 83-1 -Title-Dates: 1810 - -Title-RAW: Sehnsucht -Title-Opus: 83-2 -Title-Dates: 1810 - -Title-RAW: Mit einem gemalten Band -Title-Opus: 83-3 -Title-Dates: 1810 - -Title-RAW: Egmont (Overture and Incidental Music) -Title-Opus: 84 -Title-Dates: 1810 - -Title-RAW: Christus am Цlberge or Christ on the Mount of Olives -Title-Opus: 85 -Title-Dates: 1803 - -Title-Type: Mass -Title-Key: C major -Title-Opus: 86 -Title-Dates: 1807 - -Title-Type: Trio -Title-For: two Oboes and English Horn -Title-Key: C major -Title-Opus: 87 -Title-Dates: 1795 - -Title-RAW: Song - Das Gluck der Freundschaft -Title-Opus: 88 -Title-Dates: 1803 - -Title-Type: Polonaise -Title-Key: C major -Title-Opus: 89 -Title-Dates: 1814 - -Title-Type: Piano Sonata -Title-No: 27 -Title-Key: E minor -Title-Opus: 90 -Title-Dates: 1814 - -Title-RAW: Wellington's Victory ("Battle" Symphony) -Title-Opus: 91 -Title-Dates: comp. 1813, f.p. Vienna, 1813-12-08, cond. Beethoven; pubd. 1816 - -Title-Type: Symphony -Title-No: 7 -Title-Key: A major -Title-Opus: 92 -Title-Dates: comp. 1811--1812, f.p. Vienna, 1813-12-08, cond. Beethoven; pubd. 1816 - -Title-Type: Symphony -Title-No: 8 -Title-Key: F major -Title-Opus: 93 -Title-Dates: comp. 1812, f.p. Vienna, 1814-02-27, cond. Beethoven; pubd. 1816 - -Title-RAW: Song - An die Hoffnung -Title-Opus: 94 -Title-Dates: 1813--1815 - -Title-Type: String Quartet -Title-No: 11 -Title-Key: F minor -Title-Name: Serioso -Title-Opus: 95 -Title-Dates: 1810 - -Title-Type: Violin Sonata -Title-No: 10 -Title-Key: G major -Title-Opus: 96 -Title-Dates: 1812, rev. 1815 - -Title-Type: Piano Trio -Title-No: 7 -Title-Key: B flat major -Title-Name: Archduke -Title-Opus: 97 -Title-Dates: 1810--1811 - -Title-RAW: Song Cycle - An die ferne Geliebte -Title-Opus: 98 -Title-Dates: 1816 - -Title-RAW: Song - Der Mann von Wort -Title-Opus: 99 -Title-Dates: 1816 - -Title-RAW: Song - Merkenstein -Title-Opus: 100 -Title-Dates: 1815 - -Title-Type: Piano Sonata -Title-No: 28 -Title-Key: A major -Title-Opus: 101 -Title-Dates: 1816 - -Title-Count: Two -Title-Type: Cello Sonatas -Title-Opus: 102 -Title-Dates: 1815 - -Title-Type: Sonata -Title-For: Piano and Cello -Title-No: 4 -Title-Key: C major -Title-Opus: 102-1 -Title-Dates: 1815 - -Title-Type: Sonata -Title-For: Piano and Cello -Title-No: 5 -Title-Key: D minor -Title-Opus: 102-2 -Title-Dates: 1815 - -Title-Type: Wind octet -Title-Key: E flat major -Title-Opus: 103 -Title-Dates: 1792 - -Title: String Quintet (arrangement of Piano Trio No. 3, 1817); Op. 104 (arr. by Beethoven in 1817 of his pf. trio (1792-4)) - -Title-Count: Six -Title-Type: sets of variations -Title-For: Piano and Flute -Title-Opus: 105 -Title-Dates: 1819 - -Title-Type: Piano Sonata -Title-No: 29 -Title-Key: B flat major -Title-Name: Hammerklavier -Title-Opus: 106 -Title-Dates: 1818 - -Title-Count: Ten -Title-Type: sets of variations -Title-For: Piano and Flute -Title-Opus: 107 -Title-Dates: 1820 - -Title-RAW: Twenty-Five Scottish Songs -Title-Opus: 108 -Title-Dates: 1815-1816 - -Title-Type: Piano Sonata -Title-No: 30 -Title-Key: E major -Title-Opus: 109 -Title-Dates: 1820 - -Title-Type: Piano Sonata -Title-No: 31 -Title-Key: A flat major -Title-Opus: 110 -Title-Dates: 1821 - -Title-Type: Piano Sonata -Title-No: 32 -Title-Key: C minor -Title-Opus: 111 -Title-Dates: 1822 - -Title-RAW: Meeresstille und glьckliche Fahrt (for chorus and orchestra) -Title-Opus: 112 -Title-Dates: 1815 - -Title-RAW: Overture and incidental music for Die Ruinen von Athen (The ruins of Athens) -Title-Opus: 113 -Title-Dates: 1811 - -Title-RAW: March and Chorus - Die Weihe des Hauses ("The Consecration of the House"; 1822) -Title-Opus: 114 -Title-Dates: 1822 - -Title-RAW: Overture - Zur Namensfeier -Title-Opus: 115 -Title-Dates: 1815 - -Title-RAW: Vocal Trio with Orchestra - Tramte, empi tremate -Title-Opus: 116 -Title-Dates: 1802 - -Title-RAW: Overture to King Stephen -Title-Opus: 117 -Title-Dates: 1811 - -Title-RAW: Elegischer Gesang (for chorus and orchestra) -Title-Opus: 118 -Title-Dates: 1814 - -Title-RAW: Eleven new Bagatelles -Title-For: piano -Title-Opus: 119 -Title-Dates: 1821 - -Title-RAW: Thirty-three variations for piano on a waltz by Diabelli, C major (Diabelli Variations) -Title-Opus: 120 -Title-Dates: 1823 - -Title-RAW: Piano Trio No. 11 (Variations on Ich bin der Schneider Kakadu) -Title-Opus: 121 -Title-Dates: 1803 - -Title-RAW: Opferlied (for chorus and orchestra) -Title-Opus: 121b -Title-Dates: 1822 - -Title-RAW: Bundeslied (for chorus and orchestra) -Title-Opus: 122 -Title-Dates: 1824 - -Title-RAW: Mass in D major (Missa Solemnis) -Title-Opus: 123 -Title-Dates: 1819--1822 - -Title-RAW: Overture - Die Weihe des Hauses (Consecration of the House) -Title-Opus: 124 -Title-Dates: 1822 - -Title-Type: Symphony -Title-No: 9 -Title-Key: D minor -Title-Name: Choral -Title-Opus: 125 -Title-Dates: comp. 1817--1823, f.p. Vienna, 1824-05-07, cond. Beethoven; pubd. 1826 - -Title-Count: Six -Title-Type: Bagatelles -Title-For: piano -Title-Opus: 126 -Title-Dates: 1824 - -Title-Type: String Quartet -Title-No: 12 -Title-Key: E flat major -Title-Opus: 127 -Title-Dates: 1825 - -Title-RAW: Song - Der Kuss -Title-Opus: 128 -Title-Dates: 1822 - -Title-RAW: Rondo Capriccio for piano in G major (Rage over a lost penny) -Title-Opus: 129 -Title-Dates: 1825--1826 - -Title-Type: String Quartet -Title-No: 13 -Title-Key: B flat major -Title-Opus: 130 -Title-Dates: 1825 - -Title-Type: String Quartet -Title-No: 14 -Title-Key: C sharp minor -Title-Opus: 131 -Title-Dates: 1826 - -Title-Type: String Quartet -Title-No: 15 -Title-Key: A minor -Title-Opus: 132 -Title-Dates: 1825 - -Title-RAW: GroЯe Fuge -Title-Key: B flat major -Title-For: string quartet -Title-Opus: 133 -Title-Dates: 1825 - -Title-RAW: Piano arrangement (4 hands) of GroЯe Fuge -Title-Opus: 134 -Title-Dates: 1826 - -Title-Type: String Quartet -Title-No: 16 -Title-Key: F major -Title-Opus: 135 -Title-Dates: 1826 - -Title-RAW: Cantata - Der glorreiche Augenblick -Title-Opus: 136 -Title-Dates: 1814 - -Title-RAW: String Quintet (fugue) -Title-Key: D major -Title-Opus: 137 -Title-Dates: 1817 - -Title-RAW: Opera - Leonore (earlier version of Fidelio, with Leonore No. 1 Overture) -Title-Opus: 138 -Title-Dates: 1807 - -## Music for a Ritterballett; WoO 1 (1790--1791) -## Triumphal March for orchestra for Christoph Kuffner's tragedy Tarpeja; WoO 2a -## Prelude to Act II of Tarpeja; WoO 2b -## "Gratulations-Menuett", minuet for orchestra; WoO 3 (1822) -## Piano Concerto in E flat major (solo part only with indications of orchestration); WoO 4 (1784) -## Violin Concerto movement in C major, fragment; WoO 5 (1790--1792) -## Rondo in B flat major for piano and orchestra, fragment, possibly part of initial version of the Piano Concerto No. 2; WoO 6 (1793) -## Twelve minuets for orchestra; WoO 7 (1795) -## Twelve German Dances for orchestra (later arranged for piano); WoO 8 (1795) -## Six minuets for two violins and cello; WoO 9 (1795) -## Six minuets for orchestra (original version lost, only an arrangement for piano is extant); WoO 10 (1795) -## Seven Lдndler for two violins and cello (original version lost, only an arrangement for piano is extant); WoO 11 (1799) -## Twelve minuets for orchestra (probably spurious, actually by Beethoven's brother Carl); WoO 12 (1799) -## Twelve German Dances for orchestra (only a version for piano is extant); WoO 13 (1792--1797) -## Twelve contredanses for orchestra; WoO 14 -## Six Laendler for two violins and cello (also arranged for piano); WoO 15 (1802) -## Twelve Ecossaises for orchestra (probably spurious); WoO 16 -## Eleven "Mцdlinger Tдnze" for seven instruments (probably spurious); WoO 17 (1819) -## March for Military Band (trio added later); WoO 18 (1809--1810) -## March for Military Band (trio added later); WoO 19 (1810) -## March for Military Band (trio added later); WoO 20 (1809--1822) -## Polonaise for Military Band; WoO 21 (1810) -## Ecossaise for Military Band; WoO 22 (1809--1810) -## Ecossaise for Military Band (only a piano arrangement by Carl Czerny is extant); WoO 23 (1810) -## March for Military Band; WoO 24 (1816) -## Rondo for two oboes, two clarinets, two French horns and two bassoons (original finale of the Octet, opus 103; WoO 25 (1792--1793) -## Duo for two flutes; WoO 26 (1792) -## Three duets for clarinet and bassoon (possibly spurious); WoO 27 -## Variations for two oboes and cor anglais on "Lа ci darem la mano" from Wolfgang Amadeus Mozart's opera Don Giovanni; WoO 28 (1795) -## March for wind; WoO 29 (1797--1798) -## Three Equali for four trombones (also arranged for four male voices); WoO 30 (1812) -## Fugue for organ; WoO 31 (1783) -## Duo for viola and cello, "mit zwei obligaten Augenglдsern" ("with two obbligato eyeglasses"); WoO 32 (1796--1797) -## Five pieces for mechanical clock or flute; WoO 33 -## Duet for two violins; WoO 34 (1822) -## Canon for two violins; WoO 35 (1825) -## Three piano quartets; WoO 36 (1785) -## Trio in G major for piano, flute and bassoon; WoO 37 (1786) -## Piano Trio No. 8 in E flat major; WoO 38 (1785--1791) -## Allegretto in B flat major for piano trio; WoO 39 (1812) -## Twelve variations for piano and violin on "Se vuol ballare" from Mozart's The Marriage of Figaro; WoO 40 (1792--1793) -## Rondo in G major for piano and violin; WoO 41 (1793--1794) -## Six German Dances for violin and piano; WoO 42 (1796) -## Sonatina for mandolin and harpsichord; WoO 43a -## Adagio for mandolin and harpsichord; WoO 43b -## Sonatina for mandolin and piano; WoO 44a -## Andante and variations for mandolin and harpsichord; WoO 44b -## Twelve variations for cello and piano "See the conqu'ring hero comes" from George Frideric Hдndel's oratorio Judas Maccabaeus; WoO 45 (1796) -## Seven variations for cello and piano on "Bei Mдnnern, welche Liebe fьhlen" from Mozart's opera Die Zauberflцte; WoO 46 (1801) -## Andante Favori - Original middle movement from Piano Sonata No. 21 (Waldstein); WoO 57 (1803--1804) -## Fьr Elise - Bagatelle in A minor for solo piano; WoO 59 (1808) -## String Quintet in C major (Fragment, Piano Transcription); WoO 62 (1826) -## Nine variations for piano on a march by Ernst Christoph Dressler; WoO 63 (1782) -## Six variations for piano or harp on a Swiss song; WoO 64 (1790--1792) -## Twenty-four variations for piano on Vincenzio Righini's aria "Venni Amore"; WoO 65 (1790--1791) -## Thirteen variations for piano on the aria "Es war einmal ein alter Mann" from Carl Ditters von Dittersdorf's opera Das rote Kдppchen; WoO 66 (1792) -## Eight variations for piano four hands on a theme by Count Waldstein; WoO 67 (1792) -## Twelve variations for piano on the "Menuet a la Vigano" from Jakob Haibel's ballet La nozza disturbate; WoO 68 (1795) -## Nine variations for piano on "Quant'e piu bello" from Giovanni Paisiello's opera La Molinara; WoO 69 (1795) -## Six variations for piano on "Nel cor piu non mi sento" from Giovanni Paisiello's opera La Molinara; WoO 70 (1795) -## Twelve variations for piano on the Russian dance from Paul Wranitzky's ballet Das Waldmдdchen; WoO 71 (1796--1797) -## Eight variations for piano on "Mich brennt ein heisses Fieber" from Andrй-Ernest-Modeste Grйtry's opera Richard Lцwenherz; WoO 72 (1795--1798) -## Ten variations for piano on "La stessa, la stessissima" from Antonio Salieri's opera Falstaff; WoO 73 (1799) -## "Ich denke dein" - song with six variations for piano four hands; WoO 74 (1799--1803) -## Seven variations for piano on "Kind, willst du ruhig schlafen" from Peter Winter's opera Das unterbrochene Opferfest; WoO 75 (1792--1799) -## Eight variations for piano on "Tandeln und scherzen" from Franz Xaver Sьssmayr's opera Soliman II; WoO 76 (1799) -## Six easy variations for piano on an original theme; WoO 77 (1800) -## Seven variations for piano on "God Save the King"; WoO 78 (1802--1803) -## Five variations for piano on "Rule Britannia"; WoO 79 (1803) -## Thirty-two variations in C minor on an original theme; WoO 80 (1806) - - - -## These titles are taken from beethovenlv site: - -Title-RAW: Ballet Music "Ritterballet", music for a ballet of knights -Title-Opus: WoO 1 -Title-Dates: 1790--1791 - -Title-RAW: Triumphal March -Title-For: Orchestra -Title-Key: C major -Title-Name: Tarpeja -Title-Opus: WoO 2-1 -Title-Dates: 1813 - -Title-RAW: Entr’acte -Title-Key: D major -Title-Name: Tarpeja -Title-Comment: (now thought to be from the opening of Act II from Leonore 1805) -Title-Opus: WoO 2-2 -Title-Dates: 1813 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: E flat major -Title-Name: Gratulations - Menuett -Title-Opus: WoO 3 -Title-Dates: 1822 - -Title-Type: Concerto -Title-For: Piano & Orchestra -Title-Key: E flat major -Title-Punct: ; -Title-Comment: authorship: reconstruction -Title-Opus: WoO 4 -Title-Dates: 1784 - -Title-Type: Concerto -Title-For: Violin & Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: fragment of first movement; three completions made; authorship: unfinished -Title-Opus: WoO 5 -Title-Dates: 1790--1792 - -Title-Type: Rondo -Title-For: Piano & Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: fragment, completed by Carl Czerny -Title-Opus: WoO 6 -Title-Dates: 1793 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 1 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-1 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 2 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-2 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 3 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-3 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 4 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-4 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 5 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-5 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 6 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-6 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 7 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-7 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 8 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-8 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 9 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-9 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 10 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-10 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 11 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-11 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: F major -Title-Punct: : -Title-Comment: No. 12 of 12 Minuets for Orchestra; piano version is Hess 101 -Title-Opus: WoO 7-12 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 1 of 12 German Dances -Title-Opus: WoO 8-1 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 2 of 12 German Dances -Title-Opus: WoO 8-2 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: F major -Title-Punct: : -Title-Comment: No. 3 of 12 German Dances -Title-Opus: WoO 8-3 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 4 of 12 German Dances -Title-Opus: WoO 8-4 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 5 of 12 German Dances -Title-Opus: WoO 8-5 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 6 of 12 German Dances -Title-Opus: WoO 8-6 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 7 of 12 German Dances -Title-Opus: WoO 8-7 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 8 of 12 German Dances -Title-Opus: WoO 8-8 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: F major -Title-Punct: : -Title-Comment: No. 9 of 12 German Dances -Title-Opus: WoO 8-9 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 10 of 12 German Dances -Title-Opus: WoO 8-10 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 11 of 12 German Dances -Title-Opus: WoO 8-11 -Title-Dates: 1795 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 12 of 12 German Dances -Title-Opus: WoO 8-12 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violins & Cello -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 1 of 6 Minuets -Title-Opus: WoO 9-1 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violins & Cello -Title-Key: G major -Title-Punct: : -Title-Comment: No. 2 of 6 Minuets -Title-Opus: WoO 9-2 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violins & Cello -Title-Key: C major -Title-Punct: : -Title-Comment: No. 3 of 6 Minuets -Title-Opus: WoO 9-3 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violins & Cello -Title-Key: F major -Title-Punct: : -Title-Comment: No. 4 of 6 Minuets -Title-Opus: WoO 9-4 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violin & Cello -Title-Key: D major -Title-Punct: : -Title-Comment: No. 5 of 6 Minuets -Title-Opus: WoO 9-5 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Violins & Cello -Title-Key: G major -Title-Punct: : -Title-Comment: No. 6 of 6 Minuets -Title-Opus: WoO 9-6 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 1 of 6 minuets; surviving piano version -Title-Opus: WoO 10-1 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 2 of 6 minuets; surviving piano version -Title-Opus: WoO 10-2 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 3 of 6 minuets; surviving piano version -Title-Opus: WoO 10-3 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 4 of 6 minuets; surviving piano version -Title-Opus: WoO 10-4 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 5 of 6 minuets; surviving piano version -Title-Opus: WoO 10-5 -Title-Dates: 1795 - -Title-Type: Minuet -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 6 of 6 minuets; surviving piano version -Title-Opus: WoO 10-6 -Title-Dates: 1795 - -Title-Count: 7 -Title-Type: Lдndler -Title-For: Violins & Cello -Title-Key: D major -Title-Punct: : -Title-Comment: surviving piano version -Title-Opus: WoO 11 -Title-Dates: 1799 - -Title-RAW: 12 Minuets for Orchestra; authorship: not certain -Title-Opus: WoO 12 -Title-Dates: 1799 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 1 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-1 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 2 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-2 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 3 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-3 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 4 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-4 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: F major -Title-Punct: : -Title-Comment: No. 5 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-5 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 6 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-6 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 7 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-7 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 8 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-8 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 9 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-9 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 10 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-10 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 11 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-11 -Title-Dates: 1792--1797 - -Title-Type: Dance -Title-For: Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 12 of 12 German Dances; surviving piano version -Title-Opus: WoO 13-12 -Title-Dates: 1792--1797 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 1 of 12 Contredanses -Title-Opus: WoO 14-1 -Title-Dates: 1791--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 2 of 12 Contredanses -Title-Opus: WoO 14-2 -Title-Dates: 1801--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: D major -Title-Punct: : -Title-Comment: No. 3 of 12 Contredanses -Title-Opus: WoO 14-3 -Title-Dates: 1795--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 4 of 12 Contredanses -Title-Opus: WoO 14-4 -Title-Dates: 1795--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 5 of 12 Contredanses -Title-Opus: WoO 14-5 -Title-Dates: 1791--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 6 of 12 Contredanses -Title-Opus: WoO 14-6 -Title-Dates: 1795--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 7 of 12 Contredanses -Title-Opus: WoO 14-7 -Title-Dates: 1800--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 8 of 12 Contredanses -Title-Opus: WoO 14-8 -Title-Dates: 1791--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: A major -Title-Punct: : -Title-Comment: No. 9 of 12 Contredanses -Title-Opus: WoO 14-9 -Title-Dates: 1801--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: C major -Title-Punct: : -Title-Comment: No. 10 of 12 Contredanses -Title-Opus: WoO 14-10 -Title-Dates: 1801--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: G major -Title-Punct: : -Title-Comment: No. 11 of 12 Contredanses -Title-Opus: WoO 14-11 -Title-Dates: 1800--1802 - -Title-Type: Contredanse -Title-For: Small Orchestra -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 12 of 12 Contredanses -Title-Opus: WoO 14-12 -Title-Dates: 1791--1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D major -Title-Punct: : -Title-Comment: No. 1 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-1 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: No. 1 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-1 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D major -Title-Punct: : -Title-Comment: No. 2 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-2 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: No. 2 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-2 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D major -Title-Punct: : -Title-Comment: No. 3 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-3 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: No. 3 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-3 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D minor -Title-Punct: : -Title-Comment: No. 4 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-4 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D minor -Title-Punct: : -Title-Comment: No. 4 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-4 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D major -Title-Punct: : -Title-Comment: No. 5 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-5 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: No. 5 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-5 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Violins & Bass -Title-Key: D major -Title-Punct: : -Title-Comment: No. 6 of 6 lдndlerische Tдnze -Title-Opus: WoO 15-6 -Title-Dates: 1802 - -Title-Type: Dance -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: No. 6 of 6 lдndlerische Tдnze, piano version -Title-Opus: WoO 15-6 -Title-Dates: 1802 - -Title-RAW: 12 Ecossaises for Piano; authorship: fraudulent -Title-Opus: WoO 16 - -Title-Type: Waltz -Title-For: Instrument(s) -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 1 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-1 -Title-Dates: 1819 - -Title-Type: Minuet -Title-For: Instrument(s) -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 2 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-2 -Title-Dates: 1819 - -Title-Type: Waltz -Title-For: Instrument(s) -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 3 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-3 -Title-Dates: 1819 - -Title-Type: Minuet -Title-For: Instrument(s) -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 4 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-4 -Title-Dates: 1819 - -Title-Type: Minuet -Title-For: Instrument(s) -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 5 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-5 -Title-Dates: 1819 - -Title-Type: Lдndler -Title-For: Instrument(s) -Title-Key: E flat major -Title-Punct: : -Title-Comment: No. 6 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-6 -Title-Dates: 1819 - -Title-Type: Minuet -Title-For: Instrument(s) -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 7 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-7 -Title-Dates: 1819 - -Title-Type: Lдndler -Title-For: Instrument(s) -Title-Key: B flat major -Title-Punct: : -Title-Comment: No. 8 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-8 -Title-Dates: 1819 - -Title-Type: Minuet -Title-For: Instrument(s) -Title-Key: G major -Title-Punct: : -Title-Comment: No. 9 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-9 -Title-Dates: 1819 - -Title-Type: Waltz -Title-For: Instrument(s) -Title-Key: D major -Title-Punct: : -Title-Comment: No. 10 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-10 -Title-Dates: 1819 - -Title-Type: Waltz -Title-For: Instrument(s) -Title-Key: D major -Title-Punct: : -Title-Comment: No. 11 of 11 Mцdlinger Tдnze for 7 String & Wind Instruments; authorship: probably spurious -Title-Opus: WoO 17-11 -Title-Dates: 1819 - -Title-RAW: March & Trio -Title-For: Wind Band -Title-Key: F major -Title-Name: York’scher (Yorkscher) March fьr die bohmische Landwehr -Title-Opus: WoO 18 -Title-Dates: 1809--1810 - -Title-RAW: March & Trio -Title-For: Wind Band -Title-Key: F major -Title-Opus: WoO 19 -Title-Dates: 1810 - -Title-RAW: March & Trio -Title-For: Wind Band -Title-Key: C major -Title-Name: Zapfenstreich -Title-Comment: (The Tattoo) -Title-Opus: WoO 20 -Title-Dates: 1809--1822 - -Title-Type: Polonaise -Title-For: Wind Band -Title-Key: D major -Title-Opus: WoO 21 -Title-Dates: 1810 - -Title-Type: Ecossaise -Title-For: Wind Band -Title-Key: D major -Title-Opus: WoO 22 -Title-Dates: 1809--1810 - -Title-Type: Ecossaise -Title-For: Wind Band -Title-Key: G major -Title-Punct: ; -Title-Comment: authorship: reconstruction -Title-Opus: WoO 23 -Title-Dates: 1810 - -Title-Type: March -Title-For: Wind Band -Title-Key: D major -Title-Opus: WoO 24 -Title-Dates: 1816 - -Title-Type: Rondino -Title-For: Oboes, Clarinets, Horns & Bassoons -Title-Key: E flat major -Title-Opus: WoO 25 -Title-Dates: 1792--1793 - -Title-Type: Duo -Title-For: Flutes -Title-Key: G major -Title-Punct: : -Title-Comment: Allegro and Minuet -Title-Opus: WoO 26 -Title-Dates: 1792 - -Title-Type: Duo -Title-No: 1 -Title-For: Clarinet & Bassoon -Title-Key: C major -Title-Punct: ; -Title-Comment: authorship: doubtful -Title-Opus: WoO 27-1 - -Title-Type: Duo -Title-No: 2 -Title-For: Clarinet & Bassoon -Title-Key: F major -Title-Punct: ; -Title-Comment: authorship: doubtful -Title-Opus: WoO 27-2 - -Title-Type: Duo -Title-No: 3 -Title-For: Clarinet & Bassoon -Title-Key: B flat major -Title-Punct: ; -Title-Comment: authorship: doubtful -Title-Opus: WoO 27-3 - -Title-Type: Variations -Title-For: Oboes & English Horn -Title-Key: C major -Title-Punct: : -Title-Comment: on "Lа ci darem la mano" from Mozart’s opera -Title-Name: Don Giovanni -Title-Opus: WoO 28 -Title-Dates: 1795 - -Title-Type: March -Title-For: Clarinets, Horns & Bassoons -Title-Key: B flat major -Title-Name: Grenadiermarsch -Title-Opus: WoO 29 -Title-Dates: 1797--1798 - -Title-Type: Equali -Title-For: Trombones -Title-Key: D minor -Title-Opus: WoO 30-1 -Title-Dates: 1812 - -Title-Type: Equali -Title-For: Trombones -Title-Key: D major -Title-Opus: WoO 30-2 -Title-Dates: 1812 - -Title-Type: Equali -Title-For: Trombones -Title-Key: B flat major -Title-Opus: WoO 30-3 -Title-Dates: 1812 - -Title-Type: Fugue -Title-For: Organ -Title-Key: D major -Title-Opus: WoO 31 -Title-Dates: 1783 - -Title-Type: Duo -Title-For: Viola & Cello -Title-Key: E flat major -Title-Name: mit zwei obligaten Augenglдsern -Title-Comment: (with 2 obbligato eyeglasses) -Title-Opus: WoO 32 -Title-Dates: 1796--1797 - -Title-RAW: Piece for Musical Clock -Title-Key: F major -Title-Punct: : -Title-Comment: or for flute; Adagio assai; No. 1 of 5 pieces -Title-Opus: WoO 33-1 -Title-Dates: 1799 - -Title-RAW: Piece for Musical Clock -Title-Key: G major -Title-Punct: : -Title-Comment: or for flute; Scherzo-Allegro; No. 2 of 5 pieces -Title-Opus: WoO 33-2 -Title-Dates: 1799--1800 - -Title-RAW: Piece for Musical Clock -Title-Key: G major -Title-Punct: : -Title-Comment: or for flute; Allegro; No. 3 of 5 pieces -Title-Opus: WoO 33-3 -Title-Dates: 1799 - -Title-RAW: Piece for Musical Clock -Title-Key: C major -Title-Punct: : -Title-Comment: or for flute; Allegro non piu molto; No. 4 of 5 pieces -Title-Opus: WoO 33-4 -Title-Dates: 1794 - -Title-RAW: Piece for Musical Clock -Title-Key: C major -Title-Punct: : -Title-Comment: or for flute; Minuet-Allegretto; No. 5 of 5 pieces -Title-Opus: WoO 33-5 -Title-Dates: 1794 - -Title-Type: Duo -Title-For: Violins -Title-Key: A major -Title-Punct: : -Title-Comment: for Alexandre Boucher -Title-Opus: WoO 34 -Title-Dates: 1822 - -Title-Type: Canon -Title-Key: A major -Title-Punct: : -Title-Comment: for 2 violins or for 2 cellos; for Samson de Boer -Title-Opus: WoO 35 -Title-Dates: 1825 - -Title-Type: Piano Quartet -Title-Key: E flat major -Title-Opus: WoO 36-1 -Title-Dates: 1785 - -Title-Type: Piano Quartet -Title-Key: D major -Title-Opus: WoO 36-2 -Title-Dates: 1785 - -Title-Type: Piano Quartet -Title-Key: C major -Title-Opus: WoO 36-3 -Title-Dates: 1785 - -Title-Type: Trio -Title-For: Piano, Flute & Bassoon -Title-Key: G major -Title-Opus: WoO 37 -Title-Dates: 1786 - -Title-Type: Piano Trio -Title-No: 8 -Title-Key: E flat major -Title-Opus: WoO 38 -Title-Dates: 1785--1791 - -Title-Type: Allegretto -Title-For: Piano Trio -Title-Key: B flat major -Title-Opus: WoO 39 -Title-Dates: 1812 - -Title-Count: 12 -Title-Type: Variations -Title-For: Piano & Violin -Title-Key: F major -Title-Punct: : -Title-Comment: on the theme "Se vuol ballare" from Mozart’s opera -Title-Name: The Marriage of Figaro -Title-Opus: WoO 40 -Title-Dates: 1792--1793 - -Title-Type: Rondo -Title-For: Piano & Violin -Title-Key: G major -Title-Opus: WoO 41 -Title-Dates: 1793--1794 - -Title-RAW: 6 German Dances for Piano & Violin: Allemandes in F -Title-Key: D major -Title-Key: F major -Title-Key: A major -Title-Key: D major -Title-Key: G major -Title-Opus: WoO 42 -Title-Dates: 1796 - -Title-Type: Sonatina -Title-For: Mandolin & Harpsichord -Title-Key: C minor -Title-Punct: : -Title-Comment: (WoO 43a) -Title-Opus: WoO 43-1 -Title-Dates: 1796 - -Title-RAW: Adagio -Title-For: Mandolin & Harpsichord -Title-Key: E flat major -Title-Punct: : -Title-Comment: (WoO 43b) -Title-Opus: WoO 43-2 -Title-Dates: 1796 - -Title-Type: Sonatina -Title-For: Mandolin & Harpsichord -Title-Key: C major -Title-Punct: : -Title-Comment: (WoO 44a) -Title-Opus: WoO 44-1 -Title-Dates: 1796 - -Title-RAW: Andante con Variazioni -Title-For: Mandolin & Harpsichord -Title-Key: D major -Title-Punct: : -Title-Comment: (WoO 44b) -Title-Opus: WoO 44-2 -Title-Dates: 1796 - -Title-Count: 12 -Title-Type: Variations -Title-For: Piano & Cello -Title-Key: G major -Title-Punct: : -Title-Comment: on "See the conquering hero comes" fm Handel’s oratorio -Title-Name: Judas Maccabaeus -Title-Opus: WoO 45 -Title-Dates: 1796 - -Title-Count: 7 -Title-Type: Variations -Title-For: Piano & Cello -Title-Key: E flat major -Title-Punct: : -Title-Comment: on the duet "Bei Mдnnern, welche Liebe fьhlen" from Mozart’s -Title-Name: Zauberflцte -Title-Opus: WoO 46 -Title-Dates: 1801 - -Title-Type: Piano Sonata -Title-Key: E flat major -Title-Name: Kurfьrstensonate -Title-Comment: (Electoral) -Title-No: 1 -Title-Opus: WoO 47-1 -Title-Dates: 1783 - -Title-Type: Piano Sonata -Title-Key: F minor -Title-Name: Kurfьrstensonate -Title-Comment: (Electoral) -Title-No: 2 -Title-Opus: WoO 47-2 -Title-Dates: 1783 - -Title-Type: Piano Sonata -Title-Key: D major -Title-Name: Kurfьrstensonate -Title-Comment: (Electoral) -Title-No: 3 -Title-Opus: WoO 47-3 -Title-Dates: 1783 - -Title-Type: Rondo -Title-For: Piano -Title-Key: C major -Title-Opus: WoO 48 -Title-Dates: 1783 - -Title-Type: Rondo -Title-For: Piano -Title-Key: A major -Title-Opus: WoO 49 -Title-Dates: 1783 - -Title-RAW: 2 Sonata Movements -Title-For: Piano -Title-Key: F major -Title-Opus: WoO 50 -Title-Dates: 1790--1792 - -Title-RAW: Easy Piano Sonata -Title-Key: C major -Title-Opus: WoO 51 -Title-Dates: 1791--1798 - -Title-Type: Bagatelle -Title-For: Piano -Title-Key: C minor -Title-Punct: : -Title-Comment: presto -Title-Opus: WoO 52 -Title-Dates: 1795--1822 - -Title-Type: Allegretto -Title-For: Piano -Title-Key: C minor -Title-Opus: WoO 53 -Title-Dates: 1796--1797 - -Title-Type: Piece -Title-For: Piano -Title-Key: C major -Title-Name: Lustig - traurig -Title-Comment: (Merry - Sad) in C & c -Title-Opus: WoO 54 -Title-Dates: 1802 - -Title-Type: Prelude -Title-For: Piano -Title-Key: F minor -Title-Opus: WoO 55 -Title-Dates: 1803 - -Title-Type: Bagatelle -Title-For: Piano -Title-Key: C major -Title-Punct: : -Title-Comment: Allegretto -Title-Opus: WoO 56 -Title-Dates: 1803--1822 - -Title-Type: Andante -Title-For: Piano -Title-Key: F major -Title-Name: Andante favori -Title-Opus: WoO 57 -Title-Dates: 1803--1804 - -Title-Type: Cadenza -Title-For: Piano -Title-Key: D minor -Title-Punct: : -Title-Comment: for Mozart’s piano concerto in d minor K 466 1st mvmt -Title-Opus: WoO 58-1 -Title-Dates: 1809 - -Title-Type: Cadenza -Title-For: Piano & Orchestra -Title-Key: D minor -Title-Punct: : -Title-Comment: for Mozart’s piano concerto in d minor K 466 3rd mvmt -Title-Opus: WoO 58-2 -Title-Dates: 1809 - -Title-Type: Bagatelle -Title-For: Piano -Title-Key: A minor -Title-Name: Fьr Elise -Title-Opus: WoO 59 -Title-Dates: 1808 - -Title-Type: Bagatelle -Title-For: Piano -Title-Key: B flat major -Title-Name: Zeimlich lebhaft -Title-Comment: (A little lively) -Title-Opus: WoO 60 -Title-Dates: 1818 - -Title-Type: Allegretto -Title-For: Piano -Title-Key: B minor -Title-Opus: WoO 61 -Title-Dates: 1821 - -Title-Type: Bagatelle -Title-For: Piano -Title-Key: G minor -Title-Punct: : -Title-Comment: called -Title-Opus: WoO 61a -Title-Opus: WoO 61-1 -Title-Dates: 1825 - -Title-Type: String Quintet -Title-Key: C major -Title-Name: Letzter musikalischer Gedanke -Title-Comment: (last musical thought); authorship: unfinished at death -Title-Opus: WoO 62 -Title-Dates: 1826 - -Title-Count: 9 -Title-Type: Variations -Title-For: Piano -Title-Key: C minor -Title-Punct: : -Title-Comment: on a march by Ernst Christoph Dressler -Title-Opus: WoO 63 -Title-Dates: 1782 - -Title-Count: 6 -Title-Type: Variations -Title-For: Piano or Harp -Title-Key: F major -Title-Punct: : -Title-Comment: on a Swiss air -Title-Opus: WoO 64 -Title-Dates: 1790--1792 - -Title-Count: 24 -Title-Type: Variations -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: on Vincenzo Righini’s arietta -Title-Name: Venni Amore -Title-Opus: WoO 65 -Title-Dates: 1790--1791 - -Title-Count: 13 -Title-Type: Variations -Title-For: Piano -Title-Key: A major -Title-Punct: : -Title-Comment: on Dittersdorf’s arietta -Title-Name: Es war einmal ein alter Mann -Title-Related-How: from -Title-Related-Name: Das rote Kдppchen -Title-Opus: WoO 66 -Title-Dates: 1792 - -Title-Count: 8 -Title-Type: Variations -Title-For: Piano Four Hands -Title-Key: C major -Title-Punct: : -Title-Comment: on a theme by Count Ferdinand von Waldstein -Title-Opus: WoO 67 -Title-Dates: 1792 - -Title-Count: 12 -Title-Type: Variations -Title-For: Piano -Title-Key: C major -Title-Punct: : -Title-Comment: on the "Menuett а la Viganт" from Jakob Haibel’s ballet -Title-Name: Le nozze disturbate -Title-Opus: WoO 68 -Title-Dates: 1795 - -Title-Count: 9 -Title-Type: Variations -Title-For: Piano -Title-Key: A major -Title-Punct: : -Title-Comment: on Giovanni Paisello’s air -Title-Name: Quant’ и piщ bello -Title-Related-How: from -Title-Related-Name: La Molinara -Title-Opus: WoO 69 -Title-Dates: 1795 - -Title-Count: 6 -Title-Type: Variations -Title-For: Piano -Title-Key: G major -Title-Punct: : -Title-Comment: on the duet "Nel cor piщ non mi sento" from Giovanni Paisello’s opera -Title-Name: La Molinara -Title-Opus: WoO 70 -Title-Dates: 1795 - -Title-Count: 12 -Title-Type: Variations -Title-For: Piano -Title-Key: A major -Title-Punct: : -Title-Comment: on a Russian dance from Paul Wranitsky’s ballet -Title-Name: Das Waldmдdchen -Title-Opus: WoO 71 -Title-Dates: 1796--1797 - -Title-Count: 8 -Title-Type: Variations -Title-For: Piano -Title-Key: C major -Title-Punct: : -Title-Comment: on the Romance "Une fiиvre brыlante" from Grйtry’s opera -Title-Name: Richard Cњur de Lion -Title-Opus: WoO 72 -Title-Dates: 1795--1798 - -Title-Count: 10 -Title-Type: Variations -Title-For: Piano -Title-Key: B major -Title-Punct: : -Title-Comment: on Salieri’s duet -Title-Name: La stessa la stessissima -Title-Related-How: from -Title-Related-Name: Falstaff -Title-Opus: WoO 73 -Title-Dates: 1799 - -Title-Type: Song -Title-Name: Ich denke dein -Title-Alternative-Name: Ich denke dein, wenn mir der Sonne Schimmer -Title-Opus: WoO 74 -Title-Dates: 1799--1803 - -Title-Count: 6 -Title-Type: Variations -Title-For: Piano Four Hands -Title-Key: D major -Title-Punct: : -Title-Related-How: on -Title-Related-Name: Ich denke dein -Title-Opus: WoO 74 -Title-Dates: 1799--1803 - -Title-Count: 7 -Title-Type: Variations -Title-For: Piano -Title-Key: F major -Title-Punct: : -Title-Comment: on the Quartet "Kind, willst du ruhig schlafen?" from Peter Winter’s opera -Title-Name: Das unterbrochene Opferfest -Title-Opus: WoO 75 -Title-Dates: 1792--1799 - -Title-Count: 8 -Title-Type: Variations -Title-For: Piano -Title-Key: F major -Title-Punct: : -Title-Comment: on the Trio "Tдndeln und Scherzen" from Franz Xaver Sьssmayr’s opera -Title-Name: Soliman II -Title-Opus: WoO 76 -Title-Dates: 1799 - -Title-Count: 6 -Title-Type: Easy Variations -Title-For: Piano -Title-Key: G major -Title-Punct: : -Title-Comment: on an original theme -Title-Opus: WoO 77 -Title-Dates: 1800 - -Title-Count: 7 -Title-Type: Variations -Title-For: Piano -Title-Key: C major -Title-Punct: : -Title-Comment: on the English folk song -Title-Name: God Save the King -Title-Opus: WoO 78 -Title-Dates: 1802--1803 - -Title-Count: 5 -Title-Type: Variations -Title-For: Piano -Title-Key: D major -Title-Punct: : -Title-Comment: on the English song "Rule Britannia" from Arne’s -Title-Name: Alfred -Title-Opus: WoO 79 -Title-Dates: 1803 - -Title-Count: 32 -Title-Type: Variations -Title-For: Piano -Title-Key: C minor -Title-Punct: : -Title-Comment: on an original theme -Title-Opus: WoO 80 -Title-Dates: 1806 - -Title-Type: Allemande -Title-For: Piano -Title-Key: A major -Title-Opus: WoO 81 -Title-Dates: 1793--1822 - -Title-Type: Minuet -Title-For: Piano -Title-Key: E flat major -Title-Opus: WoO 82 -Title-Dates: 1803 - -Title-Count: 6 -Title-Type: Ecossaises -Title-For: Piano -Title-Key: E flat major -Title-Opus: WoO 83 -Title-Dates: 1806 - -Title-Type: Waltz -Title-For: Piano -Title-Key: E flat major -Title-Opus: WoO 84 -Title-Dates: 1824 - -Title-Type: Waltz -Title-For: Piano -Title-Key: D major -Title-Opus: WoO 85 -Title-Dates: 1825 - -Title-Type: Ecossaise -Title-For: Piano -Title-Key: E flat major -Title-Opus: WoO 86 -Title-Dates: 1825 - -Title-RAW: Cantata "Trauerkantate auf den Tod Joseph II" (on the Death of Joseph II) -Title-Opus: WoO 87 -Title-Dates: 1790 - -Title-RAW: Cantata "Kantate auf die Erhebung Leopold II zur Kaiserwьrde" (on the Elevation of Leopold II to the Imperial Dignity) -Title-Opus: WoO 88 -Title-Dates: 1790 - -Title-Type: Aria -Title-Key: F major -Title-Name: Prьfung des Kьssens -Title-Punct: ; -Title-For: bass & orchestra -Title-Name: Meine weise Mutter spricht -Title-Opus: WoO 89 -Title-Dates: 1790--1792 - -Title-Type: Aria -Title-Key: D major -Title-Name: Mit Mдdeln sich vertragen -Title-Punct: ; -Title-For: bass & orchestra -Title-Opus: WoO 90 -Title-Dates: 1790--1792 - -Title-Type: Aria -Title-Key: F major -Title-Name: O welch ein Leben! -Title-Punct: ; -Title-Comment: for tenor & orchestra for Umlauf’s Singspiel "Die schцne Schusterin" (The Beautiful Shoemaker’s Wife) -Title-Opus: WoO 91-1 -Title-Dates: 1795 - -Title-Type: Aria -Title-Key: B flat major -Title-Name: Soll ein Schuh nicht drьcken? -Title-Punct: ; -Title-Comment: for soprano & orchestra for Umlauf’s Singspiel "Die schцne Schusterin" (The Beautiful Shoemaker’s Wife) -Title-Opus: WoO 91-2 -Title-Dates: 1795 - -Title-RAW: Scene & Aria -Title-Key: A major -Title-Name: Primo amore -Title-Punct: ; -Title-Comment: for soprano w/ orchestra -Title-Opus: WoO 92 -Title-Dates: 1791--1792 - -Title-RAW: Scene & Aria "No, non turbarti"; for soprano w/ string orchestra (WoO 92a) -Title-Opus: WoO 92-1 -Title-Dates: 1802 - -Title-RAW: Duo for Solo Voice(s) & Orchestra "Ne’ giorni tuoi felici"; for soprano & tenor w/ orchestra -Title-Opus: WoO 93 -Title-Dates: 1802 - -Title-RAW: Music for a drama -Title-For: Orchestra, Chorus & Solo Voice(s) -Title-Key: B flat major -Title-Name: Germania -Title-Punct: , -Title-Comment: finale for Trietschke’s Singspiel "Die gute Nachricht" (The Good News) -Title-Opus: WoO 94 -Title-Dates: 1814 - -Title-Type: Chorus -Title-For: Orchestra & Chorus -Title-Key: A major -Title-Name: Chor auf die verbьndeten Fьrsten -Title-Comment: (Chorus for the Allied Princes) -Title-Name: Ihr weisen Grьnder -Title-Opus: WoO 95 -Title-Dates: 1814 - -Title-RAW: Music for a drama -Title-For: Orchestra, Chorus & Solo Voice(s) -Title-Name: Leonore Prohaska -Title-Opus: WoO 96 -Title-Dates: 1815 - -Title-Type: Chorus -Title-For: Orchestra, Chorus & Solo Voice(s) -Title-Key: D major -Title-Name: Es ist vollbracht -Title-Comment: (It is fulfilled), final chorus from Treitschke’s Singspiel "Die Ehrenpforten" (The Triumphal Arches) -Title-Opus: WoO 97 -Title-Dates: 1815 - -Title-RAW: Chorus for Orchestra, Chorus & Solo Voice(s) "Wo sich die Pulse jugendlich jagen" chorus with soprano solo for the festive play -Title-Name: Die Weihe des Hauses -Title-Opus: WoO 98 -Title-Dates: 1822 - -Title-Type: Duet -Title-Name: Bei labbri, che Amore -Title-Opus: WoO 99-1 -Title-Dates: 1801--1803 - -Title-Type: Trio -Title-For: Solo Voice(s) -Title-Name: Chi mai di questo core -Title-Opus: WoO 99-2 -Title-Dates: 1801--1803 - -Title-RAW: Duet "Fra tutte le pene" (WoO 99, No. 3a) 1 of 3 settings -Title-Opus: WoO 99-3.1 -Title-Dates: 1801--1803 - -Title-RAW: Trio for Solo Voice(s) "Fra tutte le pene" (WoO 99, No. 3b); 2 of 3 settings -Title-Opus: WoO 99-3.2 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Fra tutte le pene" (WoO 99, No. 3c) 3 of 3 settings -Title-Opus: WoO 99-3.3 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Giа la notte s’avvicina" (WoO 99, No. 4a) 1 of 2 settings -Title-Opus: WoO 99-4.1 -Title-Dates: 1801--1803 - -Title-RAW: Trio for Solo Voice(s) "Giа la notte s’avvicina" (WoO 99, No. 4b) 2 of 2 settings -Title-Opus: WoO 99-4.2 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Giura il nocchier" (WoO 99, No. 5a) 1 of 2 settings -Title-Opus: WoO 99-5.1 -Title-Dates: 1801--1803 - -Title-RAW: Trio for Solo Voice(s) "Giura il nocchier" (WoO 99, No. 5b) 2 of 2 settings -Title-Opus: WoO 99-5.2 -Title-Dates: 1801--1803 - -Title-Type: Trio -Title-For: Solo Voice(s) -Title-Name: Ma tu tremi -Title-Opus: WoO 99-6 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Nei campi e nelle selve" (WoO 99, No. 7a) 1 of 2 settings -Title-Opus: WoO 99-7.1 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Nei campi e nelle selve" (WoO 99, No. 7b) 2 of 2 settings -Title-Opus: WoO 99-7.2 -Title-Dates: 1801--1803 - -Title-Type: Song -Title-Key: G major -Title-Name: O care selve -Title-Punct: , -Title-Comment: with unison chorus -Title-Opus: WoO 99-8 -Title-Dates: 1794--1795 - -Title-Type: Trio -Title-For: Solo Voice(s) -Title-Name: Per te d’amico aprile -Title-Opus: WoO 99-9 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Quella cetra ah pur tu sei" (WoO 99, No. 10a) 1 of 3 settings -Title-Opus: WoO 99-10.1 -Title-Dates: 1801--1803 - -Title-RAW: Trio for Solo Voice(s) "Quella cetra ah pur tu sei" (WoO 99, No. 10b) 2 of 3 settings -Title-Opus: WoO 99-10.2 -Title-Dates: 1801--1803 - -Title-RAW: Quartet for Solo Voice(s) "Quella cetra ah pur tu sei" (WoO 99, No. 10c) 3 of 3 settings -Title-Opus: WoO 99-10.3 -Title-Dates: 1801--1803 - -Title-Type: Duet -Title-Name: Scrivo in te -Title-Opus: WoO 99-11 -Title-Dates: 1801--1803 - -Title-Type: Quartet -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Silvio, amante disperato -Title-Opus: WoO 99-12 -Title-Dates: 1801--1802 - -Title-Type: Joke -Title-Key: G major -Title-Name: Lob auf den Dicken -Title-Name: Schuppanzigh ist ein Lump -Title-Opus: WoO 100 -Title-Dates: 1801 - -Title-Type: Joke -Title-Key: E flat major -Title-Name: Graf, liebster Graf, liebstes Schaf -Title-Opus: WoO 101 -Title-Dates: 1802 - -Title-RAW: Song "Abschiedsgesang" (Song of Farewell) -Title-For: tenor & 2 basses -Title-Name: Die Stunde schlдgt -Title-Opus: WoO 102 -Title-Dates: 1814 - -Title-Type: Cantata -Title-Key: B flat major -Title-Name: Un lieto brindisi: Cantata campestre -Title-Comment: for 4 voices & piano acc -Title-Name: Johannisfeier begehn wir heute -Title-Opus: WoO 103 -Title-Dates: 1814 - -Title-RAW: Song "Gesang der Mцnche" (Song of the Monks) from Schiller’s -Title-Name: William Tell -Title-Alternative-Name: Rasch tritt der Tod den Menchen an -Title-Opus: WoO 104 -Title-Dates: 1817 - -Title-Type: Song -Title-Key: C major -Title-Name: Hochzeitslied -Title-For: bass, chorus & piano -Title-Name: Auf Freunde, singt dem Gott der Ehen! -Title-Opus: WoO 105 -Title-Dates: 1819 - -Title-Type: Song -Title-Key: A major -Title-Name: Hochzeitslied -Title-Comment: unison version of Hess 124 -Title-Opus: WoO 105 -Title-Dates: 1819 - -Title-Type: Cantata -Title-Name: Lobkowitz-Kantate -Title-For: soprano, chorus & piano -Title-Opus: WoO 106 -Title-Dates: 1823 - -Title-Type: Song -Title-Name: Schilderung eines Mдdchens -Title-Alternative-Name: Schildern, willst du Freund, soll ich dir Elisen? -Title-Opus: WoO 107 -Title-Dates: 1782 - -Title-Type: Song -Title-Key: A major -Title-Name: An einen Sдugling -Title-Alternative-Name: Noch weisst du nicht, wes Kind du bist -Title-Opus: WoO 108 -Title-Dates: 1783 - -Title-Type: Song -Title-Key: C major -Title-Name: Trinklied (beim Abschied zu singen) -Title-Alternative-Name: Erhebt das Glas mit froher Hand -Title-Opus: WoO 109 -Title-Dates: 1791--1792 - -Title-Type: Song -Title-Key: F minor -Title-Name: Elegie auf den Tod eines Pudels -Title-Alternative-Name: Stirb immerhin, es welken ja so viele der Freuden -Title-Opus: WoO 110 -Title-Dates: 1790 - -Title-Type: Song -Title-Key: G major -Title-Name: Punschlied -Title-Alternative-Name: Wer nicht, wenn warm von Hand zu Hand -Title-Opus: WoO 111 -Title-Dates: 1791--1792 - -Title-Type: Song -Title-Key: G major -Title-Name: An Laura -Title-Alternative-Name: Freud’ umblьhe dich auf allen Wegen -Title-Opus: WoO 112 -Title-Dates: 1792 - -Title-Type: Song -Title-Key: E major -Title-Name: Klage -Title-Alternative-Name: Dein Silver schien durch Eichengrьn -Title-Opus: WoO 113 -Title-Dates: 1790 - -Title-Type: Song -Title-Key: E major -Title-Name: Ein Selbstgesprдch -Title-Alternative-Name: Ich, der mit flatterndem Sinn -Title-Opus: WoO 114 -Title-Dates: 1793 - -Title-Type: Song -Title-Key: D major -Title-Name: An Minna -Title-Alternative-Name: Nur bei dir, an deinem Herzen -Title-Opus: WoO 115 -Title-Dates: 1792 - -Title-Type: Song -Title-Key: C minor -Title-Name: Que le temps me dure -Title-Comment: 1st version -Title-Opus: WoO 116 -Title-Dates: 1793 - -Title-Type: Song -Title-Key: C major -Title-Name: Que le temps me dure -Title-Comment: 2nd version -Title-Opus: WoO 116 -Title-Dates: 1793 - -Title-Type: Song -Title-Key: C major -Title-Name: Der freie Mann -Title-Punct: ; -Title-Comment: "Wer ist ein freier Mann?"; with unison chorus -Title-Opus: WoO 117 -Title-Dates: 1792--1794 - -Title-RAW: Song "Seufzer eines Ungeliebten"; "Hast du nicht Liebe zugemessen", and -Title-Name: Gegenliebe -Title-Alternative-Name: Wьsst’ ich, wьsst’ ich -Title-Opus: WoO 118 -Title-Dates: 1794--1795 - -Title-Type: Song -Title-Key: G major -Title-Name: O care selve -Title-Punct: , -Title-Comment: with unison chorus -Title-Opus: WoO 119 -Title-Dates: 1794--1795 - -Title-Type: Song -Title-Key: F major -Title-Name: Man strebt, die Flamme zu verhehlen -Title-Opus: WoO 120 -Title-Dates: 1800--1802 - -Title-Type: Song -Title-Key: G major -Title-Name: Abschiedsgesang an Wiens Bьrger -Title-Alternative-Name: Keine Klage soll erschallen -Title-Opus: WoO 121 -Title-Dates: 1796 - -Title-Type: Song -Title-Key: C major -Title-Name: Kriegslied der Osterreicher -Title-Punct: ; -Title-Comment: "Ein grosses deutches Volk sind wir" (with unison chorus) -Title-Opus: WoO 122 -Title-Dates: 1797 - -Title-Type: Song -Title-Key: G major -Title-Name: Zдrtliche Liebe -Title-Comment: (Tender Love) -Title-Alternative-Name: Ich liebe dich, so wie du mich -Title-Opus: WoO 123 -Title-Dates: 1795 - -Title-Type: Song -Title-Key: A major -Title-Name: La partenza -Title-Comment: (Der Abschied) -Title-Alternative-Name: Ecco quel fiero istante! -Title-Opus: WoO 124 -Title-Dates: 1795 - -Title-Type: Song -Title-Key: E flat major -Title-Name: La tiranna -Title-Punct: , -Title-Comment: Canzonetta -Title-Alternative-Name: Ah grief to think! -Title-Opus: WoO 125 -Title-Dates: 1798--1799 - -Title-Type: Song -Title-Key: E major -Title-Name: Opferlied -Title-Comment: (Sacrificial Song) -Title-Alternative-Name: Die Flamme lodert -Title-Opus: WoO 126 -Title-Dates: 1794--1795 - -Title-Type: Song -Title-Key: C major -Title-Name: Neue Liebe, neues Leben -Title-Comment: (New love, new life); "Herz, mein Herz, was soll das geben?" (1st setting) -Title-Opus: WoO 127 -Title-Dates: 1798--1799 - -Title-Type: Song -Title-Key: G major -Title-Name: Plaisir d’aimer -Title-Name: Plaisir d’aimer besoin d’une вme tendre -Title-Opus: WoO 128 -Title-Dates: 1798--1799 - -Title-Type: Song -Title-Key: F major -Title-Name: Der Wachtelschlag -Title-Comment: (The Quail’s Call) -Title-Name: Ach, wie schalt’s dorten so lieblich hervor -Title-Opus: WoO 129 -Title-Dates: 1803 - -Title-Type: Song -Title-Key: C minor -Title-Name: Gedenke mein -Title-Alternative-Name: Gedenke mein, ich denke dein -Title-Opus: WoO 130 -Title-Dates: 1804--1820 - -Title-RAW: Sketch -Title-For: Solo Voice(s) & Instrument(s) -Title-Key: D minor -Title-Name: Erlkцnig -Title-Comment: "Wer reitet so spat durch Nacht und Wind?"; authorship: unfinished -Title-Opus: WoO 131 -Title-Dates: 1794--1796 - -Title-Type: Song -Title-Key: E flat major -Title-Name: Als die Geliebte sich trennen wollte -Title-Alternative-Name: Der Hoffnung letzter Schimmer sinkt dahin -Title-Opus: WoO 132 -Title-Dates: 1806 - -Title-Type: Song -Title-Key: A flat major -Title-Name: In questa tomba oscura -Title-Punct: , -Title-Comment: Arietta (In this dark Tomb) -Title-Opus: WoO 133 -Title-Dates: 1806--1807 - -Title-Type: Song -Title-Key: G minor -Title-Name: Sehnsucht -Title-Punct: ; -Title-Comment: "Nur wer die Sehnsucht kennt" (1st setting) -Title-Opus: WoO 134-1 -Title-Dates: 1807--1808 - -Title-Type: Song -Title-Key: G minor -Title-Name: Sehnsucht -Title-Punct: ; -Title-Comment: "Nur wer die Sehnsucht kennt" (2nd setting) -Title-Opus: WoO 134-2 -Title-Dates: 1807--1808 - -Title-Type: Song -Title-Key: E flat major -Title-Name: Sehnsucht -Title-Punct: ; -Title-Comment: "Nur wer die Sehnsucht kennt" (3rd setting) -Title-Opus: WoO 134-3 -Title-Dates: 1807--1808 - -Title-Type: Song -Title-Key: G minor -Title-Name: Sehnsucht -Title-Punct: ; -Title-Comment: "Nur wer die Sehnsucht kennt" (4th setting) -Title-Opus: WoO 134-4 -Title-Dates: 1807--1808 - -Title-Type: Song -Title-Key: C minor -Title-Name: Die laute Klage -Title-Alternative-Name: Turteltaube, du klagtest so laut -Title-Opus: WoO 135 -Title-Dates: 1814--1815 - -Title-Type: Song -Title-Key: D major -Title-Name: Andenken -Title-Comment: (Memories) -Title-Alternative-Name: Ich denke dein -Title-Opus: WoO 136 -Title-Dates: 1808 - -Title-Type: Song -Title-Key: B flat major -Title-Name: Gesang aus der Ferne -Title-Comment: (Song from far away); "Als mir noch die Trдne" (2nd setting) -Title-Opus: WoO 137 -Title-Dates: 1809 - -Title-Type: Song -Title-Key: B flat major -Title-Name: Der Jьngling in der Fremde -Title-Alternative-Name: Der Frьling entblьhet dem SchoЯ der Natur -Title-Opus: WoO 138 -Title-Dates: 1809 - -Title-Type: Song -Title-Key: D major -Title-Name: Der Liebende -Title-Alternative-Name: Welch ein wunderbares Leben -Title-Opus: WoO 139 -Title-Dates: 1809 - -Title-RAW: Song "An die Geliebte"; "O daЯ ich dir vom stillen Auge" (1st setting) -Title-Opus: WoO 140-1 -Title-Dates: 1811 - -Title-RAW: Song "An die Geliebte"; "O daЯ ich dir vom stillen Auge" (2nd setting) -Title-Opus: WoO 140-2 -Title-Dates: 1814 - -Title-Type: Song -Title-Key: C major -Title-Name: Der Gesang der Nachtigall -Title-Alternative-Name: Hцre, die Nachtigall singt -Title-Opus: WoO 141 -Title-Dates: 1813 - -Title-Type: Song -Title-Key: E minor -Title-Name: Der Bardengeist -Title-Alternative-Name: Dort auf dem hohen Felsen sang -Title-Opus: WoO 142 -Title-Dates: 1813 - -Title-Type: Song -Title-Key: E flat major -Title-Name: Des Kriegers Abschied -Title-Alternative-Name: Ich zieh’ ins Feld von Lieb’entbrannt -Title-Opus: WoO 143 -Title-Dates: 1814 - -Title-Type: Song -Title-Key: E flat major -Title-Name: Merkenstein -Title-Comment: (1st setting) -Title-Opus: WoO 144 -Title-Dates: 1814 - -Title-Type: Song -Title-Key: G major -Title-Name: Das Geheimnis (Liebe and Wahrheit) -Title-Alternative-Name: Wo blьht das Blьmchen, das nie verblьht? -Title-Opus: WoO 145 -Title-Dates: 1815 - -Title-Type: Song -Title-Key: E major -Title-Name: Sehnsucht -Title-Comment: (Longing) -Title-Alternative-Name: Die stille Nacht umdunkelt -Title-Opus: WoO 146 -Title-Dates: 1816 - -Title-Type: Song -Title-Key: A major -Title-Name: Ruf vom Berge -Title-Alternative-Name: Wenn ich ein Vцglein wдr -Title-Opus: WoO 147 -Title-Dates: 1816 - -Title-Type: Song -Title-Key: F major -Title-Name: So oder so -Title-Alternative-Name: Nord oder Sьd! -Title-Opus: WoO 148 -Title-Dates: 1817 - -Title-Type: Song -Title-Key: D major -Title-Name: Resignation -Title-Alternative-Name: Lisch aus, mein Licht! -Title-Opus: WoO 149 -Title-Dates: 1817 - -Title-Type: Song -Title-Key: E major -Title-Name: Abendlied unter’m gestirnten Himmel -Title-Comment: (Evening Song beneath the Starry Sky) -Title-Alternative-Name: Wenn die Sonne nieder sinket -Title-Opus: WoO 150 -Title-Dates: 1820 - -Title-Type: Song -Title-Key: G major -Title-Name: Der edle Mensch sei hьlfreich und gut -Title-Opus: WoO 151 -Title-Dates: 1823 - -Title-RAW: Folksong Setting "The Return to Ulster", "Once again, but how chang’d"; No. 1 of 25 Irish songs -Title-Opus: WoO 152-1 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Sweet Power of Song!"; No. 2 of 25 Irish songs -Title-Opus: WoO 152-2 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Once more I hail thee"; No. 3 of 25 Irish songs -Title-Opus: WoO 152-3 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The morning air plays on my face"; No. 4 of 25 Irish songs -Title-Opus: WoO 152-4 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "On the massacre of Glencoe", "O! tell me, harper"; No. 5 of 25 Irish songs -Title-Opus: WoO 152-5 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "What shall I do to shew how much I love her?"; No. 6 of 25 Irish songs -Title-Opus: WoO 152-6 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "His boat comes on the sunny tide"; No. 7 of 25 Irish songs -Title-Opus: WoO 152-7 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Come draw we round a cheerful ring"; No. 8 of 25 Irish songs -Title-Opus: WoO 152-8 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Soldier’s Dream", "Our bugles sung truce"; No. 9 of 25 Irish songs -Title-Opus: WoO 152-9 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Deserter" (The evening previous to his execution), "If sadly thinking and spirits sinking"; No. 10 of 25 Irish songs -Title-Opus: WoO 152-10 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "Thou emblem of faith" (Upon returning a ring); No. 11 of 25 Irish songs -Title-Opus: WoO 152-11 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "English Bulls, or The Irishman in London", "Och! have you not heard, Pat"; No. 12 of 25 Irish songs -Title-Opus: WoO 152-12 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Musing on the roaring ocean"; No. 13 of 25 Irish songs -Title-Opus: WoO 152-13 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "Dermot and Shelah", "O who sits so sadly"; No. 14 of 25 Irish songs -Title-Opus: WoO 152-14 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Let brainspinning swains"; No. 15 of 25 Irish songs -Title-Opus: WoO 152-15 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Hide not thy anguish"; No. 16 of 25 Irish songs -Title-Opus: WoO 152-16 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "In vain to this desert my fate I deplore"; No. 17 of 25 Irish songs -Title-Opus: WoO 152-17 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "They bid me slight my Dermot dear"; No. 18 of 25 Irish songs -Title-Opus: WoO 152-18 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Wife, Children and Friends", "When the blackletter’d list to the gods"; No. 19 of 25 Irish songs -Title-Opus: WoO 152-19 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "Farewell bliss and farewell Nancy"; No. 20 of 25 Irish songs -Title-Opus: WoO 152-20 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Morning a cruel turmoiler is"; No. 21 of 25 Irish songs -Title-Opus: WoO 152-21 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "From Garyone, my happy home", air: "Garyone"; No. 22 of 25 Irish songs -Title-Opus: WoO 152-22 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "A wand’ring gypsey, Sirs, am I"; No. 23 of 25 Irish songs -Title-Opus: WoO 152-23 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Traugh Welcome", "Shall a son of O’Donnell be cheerless and cold"; No. 24 of 25 Irish songs -Title-Opus: WoO 152-24 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "O harp of Erin", "O harp of Erin thou art now laid low"; air: "I once had a true love"; No. 25 of 25 Irish songs -Title-Opus: WoO 152-25 -Title-Dates: 1812 - -Title-RAW: Folksong Setting "When eve’s last rays in twilight die"; No. 1 of 20 Irish songs -Title-Opus: WoO 153-1 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "No. riches from his scanty store"; No. 2 of 20 Irish songs -Title-Opus: WoO 153-2 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The British Light Dragoons, or The Plain of Badajos", "’Twas a Marechal of France"; No. 3 of 20 Irish songs -Title-Opus: WoO 153-3 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Since greybeards inform us that youth will decay"; No. 4 of 20 Irish songs -Title-Opus: WoO 153-4 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "I dream’d I lay where flow’rs were springing"; No. 5 of 20 Irish songs -Title-Opus: WoO 153-5 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Sad and luckless was the season"; No. 6 of 20 Irish songs -Title-Opus: WoO 153-6 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "O soothe me, my lyre"; No. 7 of 20 Irish songs -Title-Opus: WoO 153-7 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Norah of Balamagairy", "Farewell mirth and hilarity"; No. 8 of 20 Irish songs -Title-Opus: WoO 153-8 -Title-Dates: 1812--1813 - -Title-RAW: Folksong Setting "The kiss, dear maid, thy lip has left"; No. 9 of 20 Irish songs -Title-Opus: WoO 153-9 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Oh, thou hapless soldier"; No. 10 of 20 Irish songs -Title-Opus: WoO 153-10 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "When far from the home"; No. 11 of 20 Irish songs -Title-Opus: WoO 153-11 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "I’ll praise the saints with early song"; No. 12 of 20 Irish songs -Title-Opus: WoO 153-12 -Title-Dates: 1813 - -Title-RAW: Folksong Setting: ‘"Tis sunshine at last"; No. 13 of 20 Irish songs -Title-Opus: WoO 153-13 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Paddy O’Rafferty"; No. 14 of 20 Irish songs -Title-Opus: WoO 153-14 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "‘Tis but in vain, for nothing thrives"; No. 15 of 20 Irish songs -Title-Opus: WoO 153-15 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "O might I but my Patrick love!" (English); No. 16 of 20 Irish songs -Title-Opus: WoO 153-16 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Come, Darby dear! easy, be easy"; No. 17 of 20 Irish songs -Title-Opus: WoO 153-17 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "No. more, my Mary, I sigh for splendour"; No. 18 of 20 Irish songs -Title-Opus: WoO 153-18 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Judy, lovely, matchless creature"; No. 19 of 20 Irish songs -Title-Opus: WoO 153-19 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Thy ship must sail, my Henry dear"; No. 20 of 20 Irish songs -Title-Opus: WoO 153-20 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The Elfin Fairies", "We fairy elves in secret dells", air: "Planxty Kelly"; No. 1 of 12 Irish songs -Title-Opus: WoO 154-1 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "O harp of Erin", "O harp of Erin thou art now laid low", air: "I once had a true love"; No. 2 of 12 Irish songs -Title-Opus: WoO 154-2 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The Farewell Song", "O Erin", air: "The old woman"; No. 3 of 12 Irish songs -Title-Opus: WoO 154-3 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The pulse of a Irishman", air: "St Patrick’s Day"; No. 4 of 12 Irish songs -Title-Opus: WoO 154-4 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "O who, my dear Dermot", air: "Crooghan a Venee"; No. 5 of 12 Irish songs -Title-Opus: WoO 154-5 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Put round the bright wine", air: "Chiling O’Guiry"; No. 6 of 12 Irish songs -Title-Opus: WoO 154-6 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "From Garyone, my happy home", air: "Garyone"; No. 7 of 12 Irish songs -Title-Opus: WoO 154-7 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Save me from the grave and wise", air: "Nora Creina"; No. 8 of 12 Irish songs -Title-Opus: WoO 154-8 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "O would I were but that sweet linnet!", air: "The pretty girl milking the cows"; No. 9 of 12 Irish songs -Title-Opus: WoO 154-9 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The hero may perish", air: "The fox’s sleep"; No. 10 of 12 Irish songs -Title-Opus: WoO 154-10 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The Soldier in a Foreign Land", "The piper who sat on his low mossy seat", air: "The Brown Maid"; No. 11 of 12 Irish songs -Title-Opus: WoO 154-11 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "He promis’d me at parting", air: "Killeavy"; No. 12 of 12 Irish songs -Title-Opus: WoO 154-12 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Chase of the Wolf" or "Sion, the Son of Evan", "Hear the shouts of Evan’s son"; No. 1 of 26 Welsh songs -Title-Opus: WoO 155-1 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Monks of Bangor’s March", "When the heathen trumpet’s clang"; No. 2 of 26 Welsh songs -Title-Opus: WoO 155-2 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Cottage Maid", "I envy not the splendour fine"; No. 3 of 26 Welsh songs -Title-Opus: WoO 155-3 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Love without Hope", "Her features speak the warmest heart"; No. 4 of 26 Welsh songs -Title-Opus: WoO 155-4 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Golden Robe", "A golden robe my Love shall wear"; No. 5 of 26 Welsh songs -Title-Opus: WoO 155-5 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Fair Maid of Mona", "How, my love, could hapless doubts o’ertake thee"; No. 6 of 26 Welsh songs -Title-Opus: WoO 155-6 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "O let the night my blushes hide"; No. 7 of 26 Welsh songs -Title-Opus: WoO 155-7 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Farewell, thou noisy town"; No. 8 of 26 Welsh songs -Title-Opus: WoO 155-8 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "To the Aeolian Harp", "Harp of the winds"; No. 9 of 26 Welsh songs -Title-Opus: WoO 155-9 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Ned Pugh’s Farewell", "To leave my dear girl, my country, and friends"; No. 10 of 26 Welsh songs -Title-Opus: WoO 155-10 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Merch Megan, or Peggy’s Daughter"1 "In the white cot where Peggy dwells"; No. 11 of 26 Welsh songs -Title-Opus: WoO 155-11 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Waken, lords and ladies gay"; No. 12 of 26 Welsh songs -Title-Opus: WoO 155-12 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Helpless Woman", "How cruel are the parents"; No. 13 of 26 Welsh songs -Title-Opus: WoO 155-13 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Dream", "Last night worn with anguish"; No. 14 of 26 Welsh songs -Title-Opus: WoO 155-14 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "When mortals all to rest retire" (English); No. 15 of 26 Welsh songs -Title-Opus: WoO 155-15 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "The Damsels of Cardigan", "Fair Tivy"; No. 16 of 26 Welsh songs -Title-Opus: WoO 155-16 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Dairy House", "A spreading hawthorn shades the seat"; No. 17 of 26 Welsh songs -Title-Opus: WoO 155-17 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Sweet Richard", "Yes, thou art chang’d since first we met"; No. 18 of 26 Welsh songs -Title-Opus: WoO 155-18 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Vale of Clwyd", "Think not I’ll leave"; No. 19 of 26 Welsh songs -Title-Opus: WoO 155-19 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "To the Blackbird", "Sweet warbler of a strain divine"; No. 20 of 26 Welsh songs -Title-Opus: WoO 155-20 -Title-Dates: 1813 - -Title-RAW: Folksong Setting "Cupid’s Kindness", "Dear brother"; No. 21 of 26 Welsh songs -Title-Opus: WoO 155-21 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Constancy", "Tho’ cruel fate should bid us part"; No. 22 of 26 Welsh songs -Title-Opus: WoO 155-22 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Old Strain", "My pleasant home beside the Dee!"; No. 23 of 26 Welsh songs -Title-Opus: WoO 155-23 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "Three Hundred Pounds", "In yonder snug cottage"; No. 24 of 26 Welsh songs -Title-Opus: WoO 155-24 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Parting Kiss", "Laura, thy sighs must now No. more"; No. 25 of 26 Welsh songs -Title-Opus: WoO 155-25 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Good Night", "Ere yet we slumber seek"; No. 26 of 26 Welsh songs -Title-Opus: WoO 155-26 -Title-Dates: 1810 - -Title-RAW: Folksong Setting "The Banner of Buccleuch", "From the brown crest of Newark"; No. 1 of 12 Scottish songs -Title-Opus: WoO 156-1 -Title-Dates: 1819 - -Title-RAW: Folksong Setting "Duncan Gray", "Duncan Gray came here to; woo"; No. 2 of 12 Scottish songs -Title-Opus: WoO 156-2 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "Up! quit thy bower"; No. 3 of 12 Scottish songs -Title-Opus: WoO 156-3 -Title-Dates: 1819 - -Title-RAW: Folksong Setting "Ye shepherds of this pleasant vale"; No. 4 of 12 Scottish songs -Title-Opus: WoO 156-4 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "Cease your funning"; No. 5 of 12 Scottish songs -Title-Opus: WoO 156-5 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "Highland Harry", "My Harry was a gallant gay"; No. 6 of 12 Scottish songs -Title-Opus: WoO 156-6 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Polly Stewart", "O lovely Polly Stewart"; No. 7 of 12 Scottish songs -Title-Opus: WoO 156-7 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "Womankind", "The hero may perish his country to save"; No. 8 of 12 Scottish songs -Title-Opus: WoO 156-8 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "Lochnagar", "Away ye gay landscapes"; No. 9 of 12 Scottish songs -Title-Opus: WoO 156-9 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "Glencoe", "O tell us, Harper"; No. 10 of 12 Scottish songs -Title-Opus: WoO 156-10 -Title-Dates: 1819 - -Title-RAW: Folksong Setting "Auld Lang Syne" "Should auld acquaintance be forgot"; No. 11 of 12 Scottish songs -Title-Opus: WoO 156-11 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "The Quaker’s Wife", "Dark was the morn and black the sea"; No. 12 of 12 Scottish songs -Title-Opus: WoO 156-12 -Title-Dates: 1818 - -Title-RAW: Folksong Setting "God Save the King", "God save our Lord the King" (English); No. 1 of 12 assorted folk songs -Title-Opus: WoO 157-1 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "The Soldier", "Then, Soldier! come" (Irish); No. 2 of 12 assorted folk songs -Title-Opus: WoO 157-2 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Charlie is my darling" (Scottish); No. 3 of 12 assorted folk songs -Title-Opus: WoO 157-3 -Title-Dates: 1819 - -Title-RAW: Folksong Setting "O sanctissima" (Sicilian); No. 4 of 12 assorted folk songs -Title-Opus: WoO 157-4 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "The Miller of Dee", "There was a jolly miller once" (English); No. 5 of 12 assorted folk songs -Title-Opus: WoO 157-5 -Title-Dates: 1819 - -Title-RAW: Folksong Setting "A health to the brave" (Irish); No. 6 of 12 assorted folk songs -Title-Opus: WoO 157-6 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Robin Adair", "Since all thy vows, false maid" (Irish); No. 7 of 12 assorted folk songs -Title-Opus: WoO 157-7 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "By the side of the Shannon" (Irish); No. 8 of 12 assorted folk songs -Title-Opus: WoO 157-8 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "Highlander’s Lament", "My Harry was a gallant gay" (Scottish); No. 9 of 12 assorted folk songs -Title-Opus: WoO 157-9 -Title-Dates: 1820 - -Title-RAW: Folksong Setting "Sir Johnnie Cope" (Scottish); No. 10 of 12 assorted folk songs -Title-Opus: WoO 157-10 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "The Wandering Minstrel", "I am bow’d down" (Irish); No. 11 of 12 assorted folk songs -Title-Opus: WoO 157-11 -Title-Dates: 1815 - -Title-RAW: Folksong Setting "La gondoletta", "La biondina in gondoletta" (Venetian); No. 12 of 12 assorted folk songs -Title-Opus: WoO 157-12 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Ridder Stigs Runer" (Danish); WoO 158a, No. 1 of 23 continental folk songs -Title-Opus: WoO 158-1 -Title-Dates: 1813,1817 - -Title-RAW: Folksong Setting "Horch auf, mein Liebchen" (German); WoO 158a, No. 2 of 23 continental folk songs -Title-Opus: WoO 158-2 -Title-Dates: 1813,1816,1817 - -Title-RAW: Folksong Setting "Wegen meiner blieb d’Frдula" (German); WoO 158a, No. 3 of 23 continental folk songs -Title-Opus: WoO 158-3 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting "Wann i in der Frьh aufsteh" (Tyrolean); WoO 158a, No. 4 of 23 continental folk songs -Title-Opus: WoO 158-4 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting "Teppichkrдmer-Lied"; "I bin a Tyroler Bua" (Tyrolean); WoO 158a, No. 5 of 23 continental folk songs -Title-Opus: WoO 158-5 -Title-Dates: 1815,1816,1818 - -Title-RAW: Folksong Setting "A Madel, ja a Madel" (Tyrolean); WoO 158a, No. 6 of 23 continental folk songs -Title-Opus: WoO 158-6 -Title-Dates: 1810,1815,1816 - -Title-RAW: Folksong Setting "Wer solche Buema afipackt" (Tyrolean); WoO 158a, No. 7 of 23 continental folk songs -Title-Opus: WoO 158-7 -Title-Dates: 1810,1817 - -Title-RAW: Folksong Setting "Ih mag di nit nehma, du tцppeter Hecht" (Tyrolean); WoO 158a, No. 8 of 23 continental folk songs -Title-Opus: WoO 158-8 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "Oj, oj upilem sie w karczmie" (Polish); WoO 158a, No. 9 of 23 continental folk songs -Title-Opus: WoO 158-9 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Poszla baba po popiol" (Polish); WoO 158a, No. 10 of 23 continental folk songs -Title-Opus: WoO 158-10 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Yo No. quiero embarcarme" (Iberian); WoO 158a, No. 11 of 23 continental folk songs -Title-Opus: WoO 158-11 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Seus lindos olhos" (Portuguese); WoO 158a, No. 12 of 23 continental folk songs -Title-Opus: WoO 158-12 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Vo lesocke komarockov mnogo urodilos" (Im Walde sind viele Mьcklein geboren) (Russian); WoO 158a, No. 13 of 23 continental folk songs -Title-Opus: WoO 158-13 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Akh, recen’ki, recen’ki" (Ach Bдchlein, Bдchlein, kьhle Wasser) (Russian); WoO 158a, No. 14 of 23 continental folk songs -Title-Opus: WoO 158-14 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Kak Posli nasi podruzki" (As They Went) (Unsere Mдdchen gingen in den Wald) (Russian); WoO 158a, No. 15 of 23 continental folk songs -Title-Opus: WoO 158-15 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Schцne Minka, ich muЯ scheiden" (Ukrainian-Cossack); WoO 158a, No. 16 of 23 continental folk songs -Title-Opus: WoO 158-16 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Lilla Carl", Vaggvisa (Swedish lullaby); WoO 158a, No. 17 of 23 continental folk songs -Title-Opus: WoO 158-17 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "An д Bergli bin i gesдsse" (Swiss); WoO 158a, No. 18 of 23 continental folk songs -Title-Opus: WoO 158-18 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Una paloma blanca" (Spanish Bolero a Solo); WoO 158a, No. 19 of 23 continental folk songs -Title-Opus: WoO 158-19 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Como la mariposa soy" (Spanish Bolero a due); WoO 158a, No. 20 of 23 continental folk songs -Title-Opus: WoO 158-20 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Tiranilla Espaсola" (Spanish); "La tiranna se embarca"; WoO 158a, No. 21 of 23 continental folk songs -Title-Opus: WoO 158-21 -Title-Dates: 1816 - -Title-RAW: Folksong Setting "Йdes kinos emlйkezet", "Magyar Szьretцtц Enek" (Hungarian grape harvest song); WoO 158a, No. 22 of 23 continental folk songs -Title-Opus: WoO 158-22 -Title-Dates: 1817 - -Title-RAW: Folksong Setting "Da brava, Catina" (Venetian); WoO 158a, No. 23 of 23 continental folk songs -Title-Opus: WoO 158-23 -Title-Dates: 1816 - -Title-RAW: Folksong Setting -Title-Key: A major -Title-Name: Adieu, my lov’d harp -Title-Comment: (Irish); WoO 158b, No. 1 of 7 British folk songs -Title-Opus: WoO 158-1 -Title-Dates: 1813,1817 - -Title-RAW: Folksong Setting -Title-Key: E flat major -Title-Name: Castle O’Neill -Title-Comment: (Irish), without words; WoO 158b, No. 2 of 7 British folk songs -Title-Opus: WoO 158-2 -Title-Dates: 1813,1816,1817 - -Title-RAW: Folksong Setting "Oh ono chri!" (Scottish) "O was not I a weary wight"; WoO 158b, No. 3 of 7 British folk songs -Title-Opus: WoO 158-3 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting "Red gleams the sun on yon hill tap" (Scottish); WoO 158b, No. 4 of 7 British folk songs -Title-Opus: WoO 158-4 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting -Title-Key: G major -Title-Name: Erin! O Erin! -Title-Comment: (Scottish-Irish) "Like the bride lamp that lay"; WoO 158b, No. 5 of 7 British folk songs -Title-Opus: WoO 158-5 -Title-Dates: 1815,1816,1818 - -Title-RAW: Folksong Setting "O Mary ye’s be clad in silk" (Scottish); WoO 158b, No. 6 of 7 British folk songs -Title-Opus: WoO 158-6 -Title-Dates: 1810,1815,1816 - -Title-RAW: Folksong Setting "Lament for Owen Roe O’Neill" (Irish) without words; WoO 158b, No. 7 of 7 British folk songs -Title-Opus: WoO 158-7 -Title-Dates: 1810,1817 - -Title-RAW: Folksong Setting -Title-Key: E minor -Title-Name: When my Hero in court appears -Title-Punct: ; -Title-Comment: WoO 158c, No. 1 of 6 assorted folk songs -Title-Opus: WoO 158-1 -Title-Dates: 1813,1817 - -Title-RAW: Folksong Setting -Title-Key: B major -Title-Name: Air de Colin -Title-Comment: from Rousseau’s "Le Devin du Village"; "Non, non, Colette n’est point trompeuse"; WoO 158c, No. 2 of 6 assorted folk songs -Title-Opus: WoO 158-2 -Title-Dates: 1813,1816,1817 - -Title-RAW: Folksong Setting -Title-Key: B major -Title-Name: Mark yonder pomp of costly fashion -Title-Comment: (Scottish); WoO 158c, No. 3 of 6 assorted folk songs -Title-Opus: WoO 158-3 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting -Title-Key: A major -Title-Name: Bonnie wee thing -Title-Comment: (Scottish) for 3 voices and piano; WoO 158c, No. 4 of 6 assorted folk songs -Title-Opus: WoO 158-4 -Title-Dates: 1816,1817,1820 - -Title-RAW: Folksong Setting -Title-Key: B flat major -Title-Name: From thee, Eliza, I must go -Title-Comment: (Scottish) for 3 voices and piano trio; WoO 158c, No. 5 of 6 assorted folk songs -Title-Opus: WoO 158-5 -Title-Dates: 1815,1816,1818 - -Title-RAW: Folksong Setting -Title-Key: E minor -Title-Punct: : -Title-Comment: Untitled (Scottish) without words; WoO 158c, No. 6 of 6 assorted folk songs -Title-Opus: WoO 158-6 -Title-Dates: 1810,1815,1816 - -Title-RAW: Folksong Setting -Title-Key: F major -Title-Name: Air Franзais -Title-Comment: (French) -Title-Opus: WoO 158d -Title-Opus: WoO 158 - -Title-Type: 3-part Canon -Title-Key: F major -Title-Name: Im Arm der Liebe ruht sich’s wohl -Title-Opus: WoO 159 -Title-Dates: 1795 - -Title-Type: 3-part Canon -Title-Key: G major -Title-Punct: : -Title-Comment: for Three Unison Voices (Allegretto) without Text -Title-Opus: WoO 160-1 -Title-Dates: 1795 - -Title-RAW: 4-part Canon: for Four Unison Voices (Moderato) without Text -Title-Opus: WoO 160-2 -Title-Dates: 1795 - -Title-Type: 3-part Canon -Title-Key: C major -Title-Name: Ewig dein! -Title-Comment: (Forever thine!) -Title-Opus: WoO 161 -Title-Dates: 1811 - -Title-Type: 4-part Canon -Title-Key: B flat major -Title-Name: Ta ta ta, lieber Mдlzel -Title-Punct: ; -Title-Comment: authorship: spurious -Title-Opus: WoO 162 -Title-Dates: 1812 - -Title-Type: 3-part Canon -Title-Key: F minor -Title-Name: Kurz ist der Schmerz, und ewig ist die Freude -Title-Comment: (Suffering is transitory, but joy is eternal) (1st setting) -Title-Opus: WoO 163 -Title-Dates: 1813 - -Title-Type: 3-part Canon -Title-Key: C major -Title-Name: Freundschaft ist die Quelle wahrer Glьckseligkeit -Title-Comment: (Friendship is the source of true bliss) -Title-Opus: WoO 164 -Title-Dates: 1814 - -Title-RAW: 4-part Canon "Glьck zum neuen Jahr!" (1st setting) -Title-Opus: WoO 165 -Title-Dates: 1815 - -Title-Type: 3-part Canon -Title-Key: F major -Title-Name: Kurz ist der Schmerz, und ewig ist die Freude -Title-Comment: (Suffering is transitory, but joy is eternal) (2nd setting) -Title-Opus: WoO 166 -Title-Dates: 1815 - -Title-Type: 3-part Canon -Title-Key: C major -Title-Name: Brauchle, Linke -Title-Opus: WoO 167 -Title-Dates: 1815 - -Title-Type: 3-part Riddle Canon -Title-Key: F major -Title-Name: Das Schweigen -Title-Alternative-Name: Lerne Schweigen, o Freund -Title-Opus: WoO 168-1 -Title-Dates: 1816 - -Title-Type: 3-part Canon -Title-Key: F major -Title-Name: Das Reden -Title-Alternative-Name: Rede, wenn’s um einen Freund dir gilt -Title-Opus: WoO 168-2 -Title-Dates: 1816 - -Title-Type: 2-part Riddle Canon -Title-Key: C major -Title-Name: Ich kьЯe Sie, drьcke Sie an mein Herz -Title-Opus: WoO 169 -Title-Dates: 1816 - -Title-Type: 2-part Canon -Title-Key: C major -Title-Name: Ars longa, vita brevis -Title-Comment: (first version) -Title-Opus: WoO 170 -Title-Dates: 1816 - -Title-Type: 4-part Canon -Title-Key: G major -Title-Name: Glьck fehl’ dir vor allem! -Title-Punct: ; -Title-Comment: authorship: spurious -Title-Opus: WoO 171 -Title-Dates: 1817 - -Title-Type: 3-part Canon -Title-Key: E flat major -Title-Name: Ich bitt’ dich, schreib’ mir die Es-Scala auf -Title-Opus: WoO 172 -Title-Dates: 1818 - -Title-Type: 2-part Riddle Canon -Title-Key: B flat major -Title-Name: Hol’ euch der Teufel! B’hьt euch Gott! -Title-Opus: WoO 173 -Title-Dates: 1819 - -Title-Type: 4-part Canon -Title-Key: B flat major -Title-Name: Glaube und hoffe -Title-Opus: WoO 174 -Title-Dates: 1819 - -Title-Type: 4-part Riddle Canon -Title-Name: Sankt Petrus war ein Fels/ Bernardus war ein Sankt -Title-Opus: WoO 175 -Title-Dates: 1820 - -Title-Type: 3-part Canon -Title-Key: F major -Title-Name: Glьck zum neuen Jahr! -Title-Comment: (2nd setting) -Title-Opus: WoO 176 -Title-Dates: 1819 - -Title-Type: Canon -Title-Key: E major -Title-Name: Bester Magistrat, Ihr friert -Title-Punct: ; -Title-Comment: canon for 2 male voices & 2 double-basses -Title-Opus: WoO 177 -Title-Dates: 1820 - -Title-Type: 3-part Canon -Title-Key: B flat major -Title-Name: Signor Abate -Title-Opus: WoO 178 -Title-Dates: 1820 - -Title-RAW: Intro & 4-part Canon -Title-Key: C major -Title-Name: Seiner Kaiserlichen Hoheit...alles Gute, alles Schцne -Title-Opus: WoO 179 -Title-Dates: 1819 - -Title-Type: 2-part Canon -Title-Key: C major -Title-Name: Auf einen, welcher Hoffmann geheiЯen -Title-Alternative-Name: Hoffmann, sei ja kein Hofmann -Title-Opus: WoO 180 -Title-Dates: 1820 - -Title-Type: 4-part Canon -Title-Key: C major -Title-Name: Gedenket heute an Baden -Title-Opus: WoO 181-1 -Title-Dates: 1820 - -Title-Type: 4-part Canon -Title-Key: C major -Title-Name: Gehabt euch wohl -Title-Opus: WoO 181-2 -Title-Dates: 1820 - -Title-Type: 3-part Canon -Title-Key: C major -Title-Name: Tugend ist kein leerer Name -Title-Opus: WoO 181-3 -Title-Dates: 1820 - -Title-Type: 3-part Canon -Title-Key: D minor -Title-Name: O Tobias! -Title-Opus: WoO 182 -Title-Dates: 1821 - -Title-Type: 4-part Canon -Title-Key: F major -Title-Name: Bester Herr Graf, Sie sind ein Schaf -Title-Opus: WoO 183 -Title-Dates: 1823 - -Title-Type: 5-part Canon -Title-Key: G major -Title-Name: Falstafferel, lass dich sehen! -Title-Opus: WoO 184 -Title-Dates: 1823 - -Title-Type: 6-part Canon -Title-Name: Edel sei der Mensch, hьlfreich und gut -Title-Opus: WoO 185 -Title-Dates: 1823 - -Title-Type: 2-part Canon -Title-Key: E flat major -Title-Name: Te solo adoro -Title-Opus: WoO 186 -Title-Dates: 1824 - -Title-Type: 4-part Canon -Title-Key: F major -Title-Name: Auf einen, welcher Schwenke geheiЯen -Title-Alternative-Name: Schwenke dich ohne Schwдnke -Title-Opus: WoO 187 -Title-Dates: 1824 - -Title-Type: 2-part Riddle Canon -Title-Key: B flat major -Title-Name: Gott ist eine feste Burg -Title-Opus: WoO 188 -Title-Dates: 1825 - -Title-Type: 4-part Canon -Title-Key: C major -Title-Name: Doktor, sperrt das Tor dem Tod -Title-Opus: WoO 189 -Title-Dates: 1825 - -Title-Type: 2-part Canon -Title-Key: C major -Title-Name: Ich war hier, Doktor, ich war hier -Title-Opus: WoO 190 -Title-Dates: 1825 - -Title-Type: 3-part Canon -Title-Key: B flat major -Title-Name: Kьhl, nicht lau -Title-Opus: WoO 191 -Title-Dates: 1825 - -Title-Type: 4-part Riddle Canon -Title-Key: F major -Title-Name: Ars longa, vita brevis -Title-Comment: (second version) -Title-Opus: WoO 192 -Title-Dates: 1825 - -Title-Type: Riddle Canon -Title-Key: C major -Title-Name: Ars longa, vita brevis -Title-Comment: (third version) -Title-Opus: WoO 193 -Title-Dates: 1825 - -Title-Type: Riddle Canon -Title-Key: F major -Title-Name: Si non per portas, per muros -Title-Opus: WoO 194 -Title-Dates: 1825 - -Title-Type: 2-part Canon -Title-Key: A minor -Title-Name: Freu dich des Lebens -Title-Opus: WoO 195 -Title-Dates: 1825 - -Title-Type: 4-part Riddle Canon -Title-Key: F major -Title-Name: Es muЯ sein! -Title-Opus: WoO 196 -Title-Dates: 1826 - -Title-Type: 5-part Canon -Title-Key: C major -Title-Name: Das ist das Werk, sorgt um das Geld! -Title-Opus: WoO 197 -Title-Dates: 1826 - -Title-Type: 2-part Riddle Canon -Title-Key: C major -Title-Name: Wir irren allesamt -Title-Opus: WoO 198 -Title-Dates: 1826 - -Title-Type: Joke -Title-Key: D major -Title-Name: Ich bin der Herr von zu -Title-Comment: (I am the man for you) -Title-Opus: WoO 199 -Title-Dates: 1814 - -Title-Type: Piece -Title-For: Piano -Title-Key: G major -Title-Name: O Hoffnung! -Title-Opus: WoO 200 -Title-Dates: 1818 - -Title-Type: Joke -Title-Key: C major -Title-Name: Ich bin bereit! Amen -Title-Comment: (I am ready), beginning of a double fugue -Title-Opus: WoO 201 -Title-Dates: 1818 - -Title-Type: Riddle Canon -Title-Key: F major -Title-Name: Das Schцne zum Guten! -Title-Punct: , -Title-Comment: musical motto (1st version) -Title-Opus: WoO 202 -Title-Dates: 1823 - -Title-Type: Riddle Canon -Title-Key: A major -Title-Name: Das Schцne zu dem Guten! -Title-Punct: , -Title-Comment: musical motto (2nd version) -Title-Opus: WoO 203 -Title-Dates: 1825 - -Title-Type: Joke -Title-Key: D minor -Title-Name: Holz, Holz, geigt die Quartette so -Title-Comment: (Holz, Holz, you play the quartets as if you were chopping cabbage) -Title-Opus: WoO 204 -Title-Dates: 1825 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Baron, Baron, Baron -Title-Punct: , -Title-Comment: No. 1 of 10 musical greetings -Title-Opus: WoO 205-1 -Title-Dates: 1798 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Allein, allein, allein, jedoch. Silentium!! -Title-Punct: , -Title-Comment: No. 2 of 10 musical greetings -Title-Opus: WoO 205-2 -Title-Dates: 1814 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: A minor -Title-Name: O Adjutant -Title-Punct: , -Title-Comment: No. 3 of 10 musical greetings -Title-Opus: WoO 205-3 -Title-Dates: 1817 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Wo? Wo? -Title-Punct: , -Title-Comment: No. 4 of 10 musical greetings -Title-Opus: WoO 205-4 -Title-Dates: 1817 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: D major -Title-Name: Erfьllung, Erfьllung -Title-Punct: , -Title-Comment: No. 5 of 10 musical greetings -Title-Opus: WoO 205-5 -Title-Dates: 1819 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: F major -Title-Name: Scheut euch nicht -Title-Punct: , -Title-Comment: No. 6 of 10 musical greetings -Title-Opus: WoO 205-6 -Title-Dates: 1822 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: E major -Title-Name: Tobias! PaternostergдЯler. Tobias! PaternostergдЯlerischer, Bierhдuslerischer musikalischer Philister! -Title-Punct: , -Title-Comment: No. 7 of 10 musical greetings -Title-Opus: WoO 205-7 -Title-Dates: 1824 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: D major -Title-Name: Tobias Tobias -Title-Punct: , -Title-Comment: No. 8 of 10 musical greetings -Title-Opus: WoO 205-8 -Title-Dates: 1825 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Bester To----(bias) -Title-Punct: , -Title-Comment: No. 9 of 10 musical greetings -Title-Opus: WoO 205-9 -Title-Dates: 1826 - -Title-Type: Musical greetings -Title-For: Solo Voice(s) -Title-Key: C major -Title-Name: Erster aller Tobiasse -Title-Punct: , -Title-Comment: No. 10 of 10 musical greetings -Title-Opus: WoO 205-10 -Title-Dates: 1826 - diff --git a/fhem/FHEM/lib/Normalize/Text/Music_Fields/Music_Fields-rus.lst b/fhem/FHEM/lib/Normalize/Text/Music_Fields/Music_Fields-rus.lst deleted file mode 100644 index 973ff624d..000000000 --- a/fhem/FHEM/lib/Normalize/Text/Music_Fields/Music_Fields-rus.lst +++ /dev/null @@ -1,218 +0,0 @@ -# charset = cp1251 - -### Aliases should be at the front; correct => misspell1, misspell2... -# alias Чёрный => Черный -# alias Кушелёв-Безбородко => Кушелев-Безбородко -# alias Кушелёв-Безбородко => Кушелев-Безбородко -# alias Гумилёв => Гумилев - -Александр Дольский -Александр Мирзаян -Александр Суханов -Александр Вертинский (1889-03-21--1957-05-21) -Александр Городницкий -Булат Окуджава (1924-5-9--1997-6-12) -Елена Камбурова -Михаил Щербаков -Новелла Матвеева -Вера Матвеева (1945-10-23--1976-8-11) -Ада (Ариадна Адамовна) Якушева -Владимир Сергеевич Дашкевич - -## First prefered: -Сергей и Татьяна Никитины -##Татьяна и Сергей Никитины - -Сергей Никитин -Валерий Агафонов (1941-10-3-1984-9-5) -Виктор Берковский (1932-07-13--2005-07-22) -Владимир Высоцкий (1938-1-25--1980-7-25) -Юлий Ким -фольклор МГУ -Дмитрий Сухарев -Арсений Тарковский (1907-6-24--1989-5-27) -Агния Барто (1906-2-17--1981-4-1) -Вадим Владимирович Егоров -Иван Семенович Киуру -Григорий Поженян -Лариса Критская - -Андрей Вознесенский -Александр Кушнер -Борис Леонидович Пастернак (1890-2-10--1960-5-30) -Осип Эмильевич Мандельштам (1891-1-15--1938-12-27) -Владимир Владимирович Маяковский (1893-07-19--1930-4-14) -Андрей Миронов (1941-3-8--1987-8-16) -Андрей Петров -Александр Блок (1880-11-28--1921-8-7) -Борис Владимирович Заходер (1918-9-9-2000-11-7) -Борис Натанович Стругацкий -Борис Слуцкий (1919-5-7--1986-2-22) -Юрий Визбор (1934-6-20--1984-9-17) -Юрий Давыдович Левитанский (1922-1-21--1996-1-24) -Ада Якушева -Александр Галич (1918-10-19--1977-12-15) -Александр Дулов -Вероника Тушнова (1915-1965) -Андрей Макаревич -Борис Гребенщиков -Александр Карпов -Андрей Корф -Домино -Игорь Белый -Кирилл Волошин -Леонид Сергеев -Наталья Приезжева -Олег Митяев -Скай -Светлана Ветрова -Таня Королева -Тимур Шаов -Три Сучка -Вадим и Валерий Мищуки -Вероника Долина -Владимир Ланцберг - -## This causes infinite loop of expansion Иващенко => Васильев и Иващенко => Иващенко -## Васильев и Иващенко - -Михаил Светлов (1903-6-17--1964-7-28) -Эдуард Багрицкий (1895-11-4--1939-2-16) -Виктор Соснора -Николай Заболоцкий (1903-5-7--1958-10-14) -Георгий Иванов (1894-11-10--1958-8-26) -Даниил Хармс (1905-12-30--1942-2-2) -Дон Аминадо (1888-5-7--1957-11-14) -Евгений Евтушенко -Евгений Клячкин (1934-3-23--1994-7-30) -Иосиф Александрович Бродский (1940-5-24--1996-1-28) -Олег Чухонцев -Павел Коган (1918-7-7--1942) -Поль Верлен (1844-3-30--1896-1-8) -Юрий Аделунг (1945-4-3--1993-1-6) -Давид Самуилович Самойлов (1920-6-1--1990-2-23) -Генрих Вениаминович Сапгир (1928-11-20--1999-10-7) -Овсей Дриз (1908-5-16--1971-2-14) -Иван Крылов (1769-2-13--1844-11-21) -Самуил Яковлевич Маршак (1887-11-3--1964-7-4) -Константин Библ (1898-2-26--1951-11-12) -Марина Ивановна Цветаева (1992-10-8--1941-8-31) -Саша Чёрный (1880-10-13--1932-7-5) -Вениамин Борисович Смехов -Максимилиан Александрович Волошин (1877-5-28--1932-8-11) -Николай Степанович Гумилёв (1886-4-15--1921-8) -Григорий Александрович Кушелёв-Безбородко (1832-2-1--1870-5-13), -Пётр Андреевич Вяземский (1792-7-23--1878-11-22) -Михаил Львович Матусовский (1915-7-23--1990-7-16) -Александр Александрович Алябьев (1787-8-15--1851-3-6) -Борис Алексеевич Прозоровский (1891-6-30--1937) - -## Maurice Car^eme -Морис Карем (1899-5-12--1978-1-13) - -## dates not checked -Михаил Кудимов -Борис Носик -Вадим Егоров -Тим Собакин -Юрий Кузнецов -Агнешка Осеецкая - -А. Н. Островский -Антон Павлович Чехов (1860-1-29--1904-7-15) -Александр Сергеевич Грибоедов (1790(5?)-1-15-1829-2-11) -Александр Сергеевич Пушкин (1799-6-6-1837-2-10) -Андре Моруа (1885-1967) -Аркадий Аверченко (1881-3-18--1925-3-18) -Василь Быков (1924-6-19--2003-6-22) -Владимир Алексеевич Гиляровский (1853-12-8---1935-10-1) -Денис Иванович Фонвизин (1744(5?)-4-3--1792) -Джек Лондон (1876-1-12--1916-11-22) -Иван Алексеевич Бунин (1870-10-22--1953-11-8) -Илья Ильф (1897-10-15--1937-4-12) -Евгений Петров (1903-12-13--1942-7) -Иван Сергеевич Тургенев (1818-10-28--1883-11-22) -Исаак Бабель (1894-7-13-1940-1-27) -Лев Николаевич Толстой (1828-9-9--1910-11-20) -Михаил Афанасьевич Булгаков (1891-5-15--1940-3-10) -Михаил Юрьевич Лермонтов (1814-10-15--1841-7-27) -Николай Васильевич Гоголь (1809-4-1--1852-3-4) -Николай Семёнович Лесков (1831-2-16--1895-3-5) -О. Генри (1862-7-11--1910-6-5) -Оскар Уайльд (1984-10-16--1900-11-13) -Фёдор Михайлович Достоевский (1821-11-11--1881-2-9) -Ганс Христиан Андерсен (1805-4-2--1875-8-4) -Ярослав Гашек (1883-4-30--1923-3-3) -Джозеф Редьярд Киплинг (1865-12-30--1936-1-18) - -Юрий Аделунг (1945-4-3--1993-1-6) -Алексей Николаевич Апухтин (1840(1?)-11-27--1893-8-29) -Афанасий Афанасьевич Фет (1820-12-5--1892-12-3) -Алексей Константинович Толстой (1817-9-5--1875-10-10) -Владимир Владимирович Набоков (1899-4-24--1977-7-2) -Роберт Иванович Рождественский (1932-6-20--1994-3-20) -Владимир Туриянский -Вадим Сергеевич Шефнер (1915-2002) -Иннокентий Фёдорович Анненский (1855-9-1--1909-12-11) -Илья Львович Сельвинский (1899-10-24--1968-3-22) -Исаак Иосифович Шварц -Илья Григорьевич Эренбург (1891-1-27--1967-8-31) -Михаил Сергеевич Боярский -Максимилиан Александрович Волошин (1877-5-28-1932-8-11) -Микаэл Таривердиев (1931-8-15--1996-6-24) -Николай Михайлович Рубцов (1936-1-3--1971-1-19) -Федор Иванович Тютчев (1803-12-5--1873-7-27) -Николоз Мелитонович Бараташвили (1817-12-27--1845-10-21) -Вера Ильинична Матвеева (1945-10-23--1976-8-11) -Геннадий Фёдорович Шпаликов (1937-09-06--1974-11-01) -Александр Моисеевич Володин (1919-2-10--2001-12-17) -Юрий Абрамович Левитин (1912-12-18--1993-8-2) -Сергей Александрович Есенин (1895-10-3--1925-12-28) - -## В. Берестов -## В. Золотухин -## В. Смехов - -Олег Анофриев -Олег Иванович Даль (1941-5-25--1981-5-3) -Перси Биши Шелли (1792-8-4--1822-7-8) -Римма Фёдоровна Казакова -Эльдар Рязанов -Эдуард Николаевич Успенский -Юрий Алексеевич Кукин -Юнна Петровна Мориц - -## Я. Пригожий - -### These should be at the end - -### Possible misspellings of the first name -# fix_firstname фолклор МГУ - -### Misspelling of older versions fixed: misspelled => correct_shortcut -# fix Ivan Krylov (1769-1844) => Крылов -# fix Samuil Marshak (1887-1964) => Маршак -# fix А. С. Грибоедов (1790(5?)-1829) => Александр Сергеевич Грибоедов (1790(5?)-1-15-1829-2-11) -# fix Д. И. Фонвизин (1744(5?)-1792) => Денис Иванович Фонвизин (1744(5?)-4-3--1792) -# fix Х. К. Андерсен => Андерсен -# fix П.-Б. Шелли => Шелли -# fix Эдуард Багрицкий (1922-1942) => Багрицкий -# fix Иосиф Александрович Бродский (19405-24--1996-1-28) => Бродский -# fix Татьяна и Сергей Никитины => Сергей и Татьяна Никитины -# fix Р. Киплинг => Киплинг - -## Non-automatic shortnames -# shortname Дм. Сухарев -# shortname Никитины -# shortname Арс. Тарковский -# shortname И. Киуру -# shortname А. Апухтин -# shortname Дж. Киплинг -# shortname Дж. Лондон - -## This might be wrongly expanded when combinations like -## Сергей и Татьяна Никитины, Виктор Берковский -## are broken over "," and "и" - -# keep Татьяна Никитины -# keep Сергей Никитины