Skip to content

Instantly share code, notes, and snippets.

@pmgreen
Last active February 7, 2020 17:41
Show Gist options
  • Save pmgreen/266132224ce66bee063657faa8e06dd5 to your computer and use it in GitHub Desktop.
Save pmgreen/266132224ce66bee063657faa8e06dd5 to your computer and use it in GitHub Desktop.
Rough script for generating MARC records from tabular data for the Valva music collection: https://library.princeton.edu/music/valva
#!/usr/bin/env ruby
# For the Valva project
# Creates marc records from a spreadsheet
# 201911
require 'csv'
require 'marc'
require 'optparse'
require 'facets/string/titlecase'
options = {}
OptionParser.new do |opts|
opts.banner = 'Usage: convert.rb [options]'
opts.on('-f', '--file FILE', 'File to process') do |f|
options[:file] = f # f == the filename given after -f or --file
end
end.parse!
## process contributer fields
## composer, lyracist, arranger
def process_contributers(contributer, record, tag, role)
comp = contributer.split(';').map(&:strip) if contributer
fuller = nil
death = nil
name = nil
return unless comp
token_count = 0
comp.each do |c|
token_count += 1
next if (tag == '700') && (role == 'composer') && (token_count == 1) # skip the first token
tokens = c.split('ǂ')
# if starts with d or q => subf, else new a
tokens.each do |token|
if token =~ /^q /
fuller = token.gsub(/^q /, '').strip
elsif token =~ /^d /
death = token.gsub(/^d /, '').strip
else
name = token.strip
end
end
puts name
if fuller && death
punct = !death.end_with?('-') ? ',' : ''
record.append(MARC::DataField.new(tag, '1', ' ', ['a', name], ['q', fuller], ['d', death + punct], ['e', role]))
elsif death && !fuller
punct = !death.end_with?('-') ? ',' : ''
record.append(MARC::DataField.new(tag, '1', ' ', ['a', name], ['d', death + punct], ['e', role]))
elsif fuller && !death
record.append(MARC::DataField.new(tag, '1', ' ', ['a', name], ['e', fuller + ','], ['e', role]))
else
record.append(MARC::DataField.new(tag, '1', ' ', ['a', name + ','], ['e', role]))
end
break if tag == '100'
end
end
## write out marc records
def write_marc(options)
input = CSV.read(options[:file], headers: true, encoding: 'UTF-8')
counter = 1
input.each do |line|
record = MARC::Record.new
ti_article = line[1]&.strip
ti_ind2 = ti_article ? (ti_article.length + 1).to_s : '0'
title = line[2]&.strip
subtitle = line[3]&.strip
composer = line[4]&.strip
arranger = line[5]&.strip
lyracist = line[6]&.strip
pub_loc = line[7]&.strip
publisher = line[8]&.strip
pub_date = line[9]&.strip
plate_num = line[10]&.strip
instrument = line[11]&.strip
notes = line[12]&.strip
box_folder = line[13]&.strip
## LDR
record.leader = '00000ccm a2200433 i 4500' # printed music
## 008
date1 = pub_date || '1875'
date2 = pub_date || '1930'
pub_status = pub_date ? 't' : 'q'
place = 'xxu'
cf008 = "190531#{pub_status}#{date1}#{date2}#{place}zzze n zxx d"
record.append(MARC::ControlField.new('008', cf008))
## 028
record.append(MARC::DataField.new('028', '2', '0', ['a', plate_num], ['b', publisher])) if plate_num
## 040
record.append(MARC::DataField.new('040', ' ', ' ', %w[a NjP], %w[b eng], %w[c NjP]))
## 100
process_contributers(composer, record, '100', 'composer')
## 245
if subtitle
record.append(MARC::DataField.new('245', '1', ti_ind2, ['a', title + ' :'], ['b', subtitle]))
else
record.append(MARC::DataField.new('245', '1', ti_ind2, ['a', title]))
end
## 264
if pub_date
if pub_loc && publisher
record.append(MARC::DataField.new('264', ' ', '1', ['a', pub_loc + ' :'], ['b', publisher + ','], ['c', '[' + pub_date + ']']))
elsif publisher && pub_loc.nil?
record.append(MARC::DataField.new('264', ' ', '1', ['b', publisher + ','], ['c', '[' + pub_date + ']']))
end
record.append(MARC::DataField.new('264', ' ', '4', ['c', '©' + pub_date]))
elsif !pub_date
if pub_loc && publisher
record.append(MARC::DataField.new('264', ' ', '1', ['a', pub_loc + ' :'], ['b', publisher + ','], ['c', '[between 1875 and 1930]']))
elsif publisher && pub_loc.nil?
record.append(MARC::DataField.new('264', ' ', '1', ['b', publisher + ','], ['c', '[between 1875 and 1930]']))
else
record.append(MARC::DataField.new('264', ' ', '1', ['c', '[between 1875 and 1930]']))
end
end
## 33x
record.append(MARC::DataField.new('336', ' ', ' ', ['a', 'notated music'], %w[b ntm], %w[2 rdacontent]))
record.append(MARC::DataField.new('337', ' ', ' ', %w[a unmediated], %w[b n], %w[2 rdamedia]))
record.append(MARC::DataField.new('338', ' ', ' ', %w[a volume], %w[b nc], %w[2 rdacontent]))
## 348
record.append(MARC::DataField.new('348', ' ', ' ', %w[a part], %w[2 rdanfm]))
## 500
record.append(MARC::DataField.new('500', ' ', ' ', ['a', 'Instrumentation: ' + instrument.downcase])) if instrument
record.append(MARC::DataField.new('500', ' ', ' ', ['a', notes])) if notes
record.append(MARC::DataField.new('500', ' ', ' ', ['a', 'Box and folder number: ' + box_folder])) if box_folder
## 546
record.append(MARC::DataField.new('546', ' ', ' ', ['b', 'Staff notation']))
# 65x
record.append(MARC::DataField.new('650', ' ', '0', ['a', 'Silent film music']))
record.append(MARC::DataField.new('655', ' ', '7', ['a', 'Parts (Music)'], %w[2 lcgft]))
record.append(MARC::DataField.new('655', ' ', '7', ['a', 'Silent film music'], %w[2 lcgft]))
## 700
process_contributers(composer, record, '700', 'composer')
process_contributers(arranger, record, '700', 'arranger')
process_contributers(lyracist, record, '700', 'lyracist')
## 730
record.append(MARC::DataField.new('730', '0', ' ', ['a', 'Fred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.']))
record.append(MARC::DataField.new('730', '0', ' ', ['a', 'Fred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.']))
xwriter = MARC::XMLWriter.new("./out/marc#{counter}.xml")
xwriter.write(record)
bwriter = MARC::Writer.new("./out/marc#{counter}.mrc")
bwriter.write(record)
counter += 1
puts record
end
end
write_marc(options)
=LDR 01016ccm a2200253 i 4500
=008 190531t19021902xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aCalvin, E. C.,$ecomposer
=245 10$a1863 :$bmarch medley
=264 \1$aSt. Johnsville, N.Y. :$bE. C. Calvin,$c[1902]
=264 \4$c©1902
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, horn, percussion, piano, piccolo, trombone, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages.
=500 \\$aBox and folder number: 010 / 029
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01052ccm a2200265 i 4500
=008 190531t18951895xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aHall, Robert Browne,$d1858-1907,$ecomposer
=245 10$a10th regiment march
=264 \1$aPhila. Pa. :$bHarry Coleman,$c[1895]
=264 \4$c©1895
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages.
=500 \\$aBox and folder number: 009 / 025
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuck, A.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01065ccm a2200253 i 4500
=008 190531t19191919xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBowman, Euday L.$q(Euday Louis),$d1887-1949,$ecomposer
=245 10$a12th St. rag :$bslow foxtrot arrangement
=264 \1$aKansas City, MO :$bJ.W. Jenkins Sons Music Co.,$c[1919]
=264 \4$c©1919
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, saxophone, trombone, viola, violin
=500 \\$aBox and folder number: 084 / 004
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aWheeler, C. E.$q(Clarence E.),$d1885-1966,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01008ccm a2200253 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aWyman, Bob,$ecomposer
=245 10$a15th U. S. cavalry band :$bmarch
=264 \1$bWalter Jacobs,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, saxophone, trombone, viola, violin
=500 \\$a"Jacobs' Orchestra Monthly" written above title.
=500 \\$aBox and folder number: 006 / 030
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01043ccm a2200265 i 4500
=008 190531t19051905xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a500$bHarry Coleman
=040 \\$aNjP$beng$cNjP
=100 1\$aLosey, F. H.$q(Frank Hoyt),$d1870-1931,$ecomposer
=245 10$a16th regiment march
=264 \1$aPhiladelphia, Pa. :$bHarry Coleman,$c[1905]
=264 \4$c©1905
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, percussion, piano, piccolo, trombone, viola, violin
=500 \\$aAddressed "To the 16th Regiment, N. G. P."
=500 \\$aBox and folder number: 003 / 002
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01024ccm a2200265 i 4500
=008 190531t18981898xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a2070$bEdward Schuberth & Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aHerbert, Victor,$d1859-1924,$ecomposer
=245 10$a22nd regiment :$bmarch
=264 \1$bEdward Schuberth & Co.,$c[1898]
=264 \4$c©1898
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 009 / 020
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLangey, Otto,$d1851-1922,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00949ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a7812-28$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLeybach, J.$q(Joseph),$d1817-1891,$ecomposer
=245 10$a5th nocturno
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, horn, oboe, piano, viola, violin
=500 \\$aBox and folder number: 123 / 014
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01063ccm a2200265 i 4500
=008 190531t19031903xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a7812-28, 755$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLeybach, J.$q(Joseph),$d1817-1891,$ecomposer
=245 10$a5th nocturno
=264 \1$aNew York, [NY] :$bCarl Fischer,$c[1903]
=264 \4$c©1903
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 127 / 005
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aTobani, Theo. M.$q(Theodore Moses),$d1855-1933,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01087ccm a2200265 i 4500
=008 190531t18971897xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a838, 4878 - 17$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aNeyer, Ernest,$d1847-1899,$ecomposer
=245 10$a7th regt. (gray jackets) march :$btwo-step
=264 \1$aNew York :$bCarl Fischer,$c[1897]
=264 \4$c©1897
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, tuba, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages.
=500 \\$aBox and folder number: 007 / 005
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01046ccm a2200253 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aHolzmann, Abe,$d1874-1939,$ecomposer
=245 10$aÀ la carte :$bone step
=264 \1$aNew York, NY & Detroit, MI :$bJerome H. Remick & Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 089 / 033
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01066ccm a2200265 i 4500
=008 190531t18821882xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a65, 14202 - 17 1/2$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aWaldteufel, Emil,$d1837-1915,$ecomposer
=245 10$aÀ toi waltz to thee
=264 \1$aNew York :$bCarl Fischer,$c[1882]
=264 \4$c©1882
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages.
=500 \\$aBox and folder number: 028 / 003
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01037ccm a2200253 i 4500
=008 190531t19041904xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aVan Alstyne, Egbert,$d1882-1951,$ecomposer
=245 10$aA-Sa-Ma :$btwo step-intermezzo
=264 \1$aDetroit, MI & New York, NY :$bShapiro, Remick & Co.,$c[1904]
=264 \4$c©1904
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 090 / 042
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00951ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 23 :$bheavy dramatic scene
=264 \1$aNY :$bPhotoplay Music Co.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 120 / 003
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00963ccm a2200241 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 1 :$bheavy misterioso
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 120 / 019
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00957ccm a2200241 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 10 :$bdiabolical scene
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 042
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00933ccm a2200241 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 12 :$bfire scene
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: clarinet, cornet, flute, horn, organ, piano, trombone, viola, violin
=500 \\$aBox and folder number: 120 / 018
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00921ccm a2200241 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 13
=264 \1$aNew York City :$bPhotoplay Music CO.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 041
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00964ccm a2200241 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 16 :$ba heavy dramatic illustration
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, violin
=500 \\$aBox and folder number: 114 / 029
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01071ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a132-17$bPhoto Play Music Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aKempinski, Leo A.,$d1891-1958,$ecomposer
=245 10$aA. B. C. dramatic set, no. 20 :$ba colorful illustration for scenes of dramatic suspense or tension
=264 \1$a1520 Broadway, NYC :$bPhoto Play Music Co.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, violin
=500 \\$aBox and folder number: 120 / 017
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00986ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 25 :$ba classy illustration of agitation with a sorrowful or plaintive aftermath
=264 \1$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 114 / 043
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01012ccm a2200241 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 3 :$bmusical description for fights or tumultuous action resulting in despair
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 121 / 001
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00942ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 4 :$blight agitato
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, piano, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 039
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00956ccm a2200241 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 5 :$bpizz. misterioso
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, violin
=500 \\$aBox and folder number: 114 / 040
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00936ccm a2200241 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. dramatic set, no. 8
=264 \1$aNew York City :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 120 / 002
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01064ccm a2200253 i 4500
=008 190531t19171917xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$aA. B. C. No. 6$bPhotoplay Music Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA. B. C. photo play concert edition, no. 6 :$bfifteen dramatic and pathetic minutes : reverie and elegie
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1917]
=264 \4$c©1917
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 103 / 011
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01289ccm a2200265 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a148-9 1/2$bPhotoplay Music Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 11 :$bwestern scene
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aDescription on top of piano part: "Illustrating the Western Character, Introducing the barroom brawl or fight, followed by a chase. A.1. For illustrating the western character or American cowboy. B.2. To be used at fights or tumultuous screen action. C.3. For chase."
=500 \\$aBox and folder number: 118 / 021
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01021ccm a2200253 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 14 :$bheavy romantic or pathetic descriptive
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 016
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01007ccm a2200253 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 15 :$bsociety reception or cabaret scene
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 015
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01005ccm a2200253 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 2 :$bhy-dramatic desc.
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, oboe, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 019
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00992ccm a2200253 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 6 :$bmisterioso
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 018
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00978ccm a2200253 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 7
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 017
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00993ccm a2200253 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLuz, Ernst,$ecomposer
=245 10$aA.B.C. dramatic set, no. 9 :$bstorm scene
=264 \1$aNew York, NY :$bPhotoplay Music Co.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 020
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLuz, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00990ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a323$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aWaldteufel, Emil,$d1837-1915,$ecomposer
=245 10$aAbandon :$b(ganz verlassen) waltz
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 032 / 025
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00871ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aSchuster, Joe$q(Joseph),$d1896-1959,$ecomposer
=245 10$aAbide with me
=264 \1$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, cornet, flute, percussion, trombone, violin
=500 \\$aBox and folder number: 072 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00872ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aMonk, William Henry,$d1823-1889,$ecomposer
=245 10$aAbide with me
=264 \1$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piano, trombone, violin
=500 \\$aBox and folder number: 074 / 034
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00982ccm a2200253 i 4500
=008 190531t19001900xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aDillea, Herbert,$ecomposer
=245 10$aAbsence makes the heart grow fonder :$bsolo for 'cello, cornet or trombone
=264 \1$bM. Whitmark & Sons,$c[1900]
=264 \4$c©1900
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, cornet, flute, piano, trombone, viola, violin
=500 \\$aBox and folder number: 078 / 22
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aSaddler, Frank,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00993ccm a2200253 i 4500
=008 190531t19021902xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aWeber, Carl Maria von,$d1786-1826,$ecomposer
=245 10$aAbu hassan :$boverture
=264 \1$aBoston, MA & London, UK :$bOliver Ditson Company,$c[1902]
=264 \4$c©1902
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 110 / 005
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aGruenwald, R.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01141ccm a2200277 i 4500
=008 190531t18961896xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a797, 4639 - 17 1/2$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aWaldteufel, Emil,$d1837-1915,$ecomposer
=245 10$aAcclamations :$bwaltz
=264 \1$aNew York :$bCarl Fischer,$c[1896]
=264 \4$c©1896
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages.
=500 \\$aBox and folder number: 017 / 010
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aTobani, Theo. M.$q(Theodore Moses),$d1855-1933,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01038ccm a2200253 i 4500
=008 190531t19251925xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aZamecnik, J. S.$q(John S.),$d1872-1953,$ecomposer
=245 10$aAccusation :$bdramatic scene
=264 \1$aCleveland, [OH] :$bSam Fox Pub. Co.,$c[1925]
=264 \4$c©1925
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, flute, horn, oboe, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aHandwritten on piano part: "Fight starts."
=500 \\$aBox and folder number: 117 / 014
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01045ccm a2200265 i 4500
=008 190531t19181918xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a14, 1155 - 8 1/2$bBelwin, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aBoulton, John,$ecomposer
=245 10$aAces high :$bover the top ; march
=264 \1$aN.Y.C. :$bBelwin, Inc.,$c[1918]
=264 \4$c©1918
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, flute, piccolo, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 006 / 004
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLevy, Sol P.$q(Sol Paul),$d1881-1920,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01005ccm a2200265 i 4500
=008 190531t19071907xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a500$bM. Witmark & Sons
=040 \\$aNjP$beng$cNjP
=100 1\$aSutton, Harry O.,$ecomposer
=245 10$aAcushla :$bmedley two-step
=264 \1$aN.Y. :$bM. Witmark & Sons,$c[1907]
=264 \4$c©1907
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, viola, violin
=500 \\$aBox and folder number: 007 / 029
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aClark, Thomas,$d1854-1943,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00972ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a19808$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aBecker, Will L.,$ecomposer
=245 10$aAdagio :$bfor depicting prison scenes, death scenes, etc.
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, organ, percussion, piano, viola, violin
=500 \\$aBox and folder number: 120 / 002
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01034ccm a2200265 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a32074$bG. Schirmer, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aWieniawski, Henri,$d1835-1880,$ecomposer
=245 10$aAdagio elegiaque
=264 \1$bG. Schirmer, Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, flute, horn, oboe, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 123 / 007
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aSchmid, Adolf,$d1868-1958,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01058ccm a2200253 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a19949-54$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aTchaikovsky, Peter Ilich,$d1840-1893,$ecomposer
=245 10$aAdagio lamentoso :$bfourth movement-finale
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, horn, oboe, organ, percussion, piano, trumpet, viola, violin
=500 \\$aBox and folder number: 128 / 020
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aRoberts, Charles J.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01341ccm a2200277 i 4500
=008 190531t19101910xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a22202$bLeduc, Alphonse, G. Schirmer, Robbins Music Corporation
=040 \\$aNjP$beng$cNjP
=100 1\$aGodard, Benjamin,$d1849-1895,$ecomposer
=245 10$aAdagio pathétique
=264 \1$bLeduc, Alphonse, G. Schirmer, Robbins Music Corporation,$c[1910]
=264 \4$c©1910
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, flute, harmonium, horn, oboe, percussion, piano, trombone, trumpet, viola, violin
=500 \\$a"The Schirmer Galaxy, No. 257 G" printed in upper left corner of some parts. One first violin part handwritten, stamped in lower right corner with "Robbins Music Corporation." One second violin part handwritten.
=500 \\$aBox and folder number: 112 / 008
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aJungnickel, Ross,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01019ccm a2200253 i 4500
=008 190531t19131913xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=245 10$aAdele :$bvalse
=264 \1$aNew York, NY & Detroit, MI :$bJerome H. Remick & Co.,$c[1913]
=264 \4$c©1913
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piccolo, percussion, piano, trombone, viola, violin
=500 \\$aFrom the opera by Jean Briquet
=500 \\$aBox and folder number: 108 / 008
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01119ccm a2200265 i 4500
=008 190531t19131913xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$ecomposer
=245 10$aAdele :$btrot one step march two step
=264 \1$aNew York, NY & Detroit, MI :$bJerome H. Remick & Co.,$c[1913]
=264 \4$c©1913
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piccolo, percussion, piano, trombone, viola, violin
=500 \\$aFrom the opera "Adele" by Jean Briquet
=500 \\$aBox and folder number: 087 / 001
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00949ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aFriml, Rudolf,$d1879-1972,$ecomposer
=245 10$aAdieu
=264 \1$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: cello, clarinet, contrabass, cornet, flute, harmonium, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 128 / 011
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aSanford, Harold,$d1879-1945,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01031ccm a2200253 i 4500
=008 190531t18981898xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$ac (Composer),$ecomposer
=245 10$aAdlyn waltzes
=264 \1$a1285 Broadway, N.Y. :$bThe John T. Hall Music Pub. Co.,$c[1898]
=264 \4$c©1898
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, tuba, viola, violin
=500 \\$a"Respectfully dedicated to my Friend Frank Danz Jr."
=500 \\$aBox and folder number: 013 / 022
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01066ccm a2200265 i 4500
=008 190531t18981898xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a901, 5231 - 17$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLaurendeau, L. P.$q(Louis Philippe),$d1861-1916,$ecomposer
=245 10$aAdmiral Schley's victory :$bmarch
=264 \1$aNew York :$bCarl Fischer,$c[1898]
=264 \4$c©1898
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, horn, percussion, piano, piccolo, trombone, viola, violin
=500 \\$a"Dedicated to Admiral W. S. Schley".
=500 \\$aBox and folder number: 010 / 024
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01073ccm a2200265 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a116226$bG. Ricordi & Co. Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aTyers, Wm. H.$q(William H.),$d1876-1924,$ecomposer
=245 10$aAdmiration :$bHawaiian idyl.
=264 \1$aNew York, NY :$bG. Ricordi & Co. Inc.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 099 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aTyers, Wm. H.$q(William H.),$d1876-1924,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00954ccm a2200241 i 4500
=008 190531t19131913xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aColby, Carleton L.,$ecomposer
=245 10$aAdmiration :$bvalse poetique
=264 \1$aChicago, IL :$bAlford-Colby Co.,$c[1913]
=264 \4$c©1913
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 107 / 015
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00976ccm a2200253 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a1042-18$bBelwin Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aCollinge, F. C.,$ecomposer
=245 10$aAdolesence
=264 \1$aNY :$bBelwin Inc.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bells, cello, clarinet, flute, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 138 / 012
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aBial, Ernst,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01072ccm a2200277 i 4500
=008 190531t19261926xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a1383$bLeo Feist, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aWynburn, Ray,$ecomposer
=245 10$aAdorable :$bfoxtrot
=264 \1$aNew York, NY :$bLeo Feist, Inc.,$c[1926]
=264 \4$c©1926
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, saxophone, tenor banjo, trombone, viola, violin
=500 \\$aBox and folder number: 040 / 016
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aBarry, Frank E.,$earranger
=700 1\$aFord, Tom,$d1896-1977,$elyracist
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00995ccm a2200253 i 4500
=008 190531t19171917xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBorowski, Felix,$d1872-1956,$ecomposer
=245 10$aAdoration
=264 \1$aNew York, NY :$bCarl Fischer,$c[1917]
=264 \4$c©1917
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 094 / 022
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aRoberts, Charles J.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01024ccm a2200253 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a20133-22$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aBorowski, Felix,$d1872-1956,$ecomposer
=245 10$aAdoration
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, organ, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 138 / 010
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aRoberts, Charles J.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01010ccm a2200253 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aMagine, Frank,$d1888-1979,$ecomposer
=245 10$aAdoration waltz :$bsong
=264 \1$aKansas City, Mo. :$bJ. W. Jenkins' Sons Music Co.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, flute, percussion, piano, saxophone, tenor banjo, trombone, trumpet, violin
=500 \\$aBox and folder number: 014 / 001
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aColby, Carleton L.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01088ccm a2200277 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a1217$bLeo. Feist, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aTierney, Harry,$d1890-1965,$ecomposer
=245 10$aAdoring you :$bfoxtrot
=264 \1$aNew York :$bLeo. Feist, Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: banjo, bass, cello, clarinet, cornet, flute, percussion, piano, saxophone, trombone, viola, violin
=500 \\$aBox and folder number: 038 / 016
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aBarry, Frank E.,$earranger
=700 1\$aMcCarthy, Joseph,$d1885-1943,$elyracist
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01047ccm a2200253 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aTchaikovsky, Peter Ilich,$d1840-1893,$ecomposer
=245 10$aAesop's fables-animated cartoons :$bfast moving comedy
=264 \1$aNew York, NY :$bCarl Fischer Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 095 / 027
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aRoberts, Charles J.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01080ccm a2200265 i 4500
=008 190531t19101910xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aScott, J. Watson,$ecomposer
=245 10$aAffinity waltzes
=264 \1$aChicago, Ill. :$bWill Rossiter,$c[1910]
=264 \4$c©1910
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$a"Fred D. Valva, violinist, Worcester, Mass." stamped on all pages. "Dedicated to Miss. Gorgia Davis".
=500 \\$aBox and folder number: 017 / 004
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aAlford, Harry L.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00916ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aGabriel-Marie,$d1852-1928,$ecomposer
=245 10$aAfflizione
=264 \1$aParis :$bSociete Anonyme des Editions Ricordi,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: cello, clarinet, contrabass, flute, harmonium, oboe, piano, violin
=500 \\$aBox and folder number: 115 / 037
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01000ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aAtwater, G. L.$e(George L.),$ecomposer
=245 10$aAfrican dreamland :$bintermezzo-two step
=264 \1$a134 W. 37th St. NY :$bLeo Feist,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, piano, trombone, viola, violin
=500 \\$aBox and folder number: 130 / 024
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aSmith, Maurice F.,$d1872-1925,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01141ccm a2200265 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLincoln, Harry J.,$d1878-1937,$ecomposer
=245 10$aAfter glow :$breverie-serenade
=264 \1$aWilliamsport, PA :$bVandersloot Music Pub. Co.,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$a"10 Pts. & Pa. .75, 14 Pts. & Pa. .95, Full & Pa. 1.15" printed in top left corner of first violin part.
=500 \\$aBox and folder number: 103 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLosey, F. H.$q(Frank Hoyt),$d1870-1931,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01107ccm a2200277 i 4500
=008 190531t19221922xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a364-16 1/2$bJerome H. Remick & Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aSizemore, Arthur,$d1891-1954,$ecomposer
=245 10$aAfter the rain :$bfoxtrot
=264 \1$aNew York, NY :$bJerome H. Remick & Co.,$c[1922]
=264 \4$c©1922
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, flute, percussion, piano, saxophone, tenor banjo, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 037 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aShrigley, Guy,$ecomposer
=700 1\$aCollard, Wm. A.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01055ccm a2200265 i 4500
=008 190531t19221922xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aSizemore, Arthur,$d1891-1954,$ecomposer
=245 10$aAfter the rain :$bfoxtrot
=264 \1$aNew York, Detroit :$bJerome H. Remick & Co.,$c[1922]
=264 \4$c©1922
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: banjo, bass, cello, clarinet, flute, percussion, piano, saxophone, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 037 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aShrigley, Guy,$ecomposer
=700 1\$aCollard, Wm. A.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01091ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aMoret, Neil,$d1878-1943,$ecomposer
=245 10$aAfter vespers :$ba twilight meditation
=264 \1$aNew York & Detroit :$bJerome H. Remick & Co.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bells, cello, chimes, clarinet, cornet, cymbal, flute, horn, percussion, piano, piccolo, tom tom, triangle, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 138 / 025
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aLampe, J. B.$q(Jens Bodewalt),$d1869-1929,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00965ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aCobb, George L.,$d1886-1942,$ecomposer
=245 10$aAfter-glow :$ba tone picture
=264 \1$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, flute, horn, oboe, percussion, trombone, viola, violin
=500 \\$a"Jacobs' Orchestra Monthly" above title.
=500 \\$aBox and folder number: 004 / 028
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01066ccm a2200265 i 4500
=008 190531t19221922xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aTurk, Roy,$d1892-1934,$ecomposer
=245 10$aAggravatin' papa :$bfoxtrot
=264 \1$aNew York :$bWaterson, Berlin & Snyder Co.,$c[1922]
=264 \4$c©1922
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: banjo, bass, cello, clarinet, percussion, piano, piccolo, saxophone, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 036 / 014
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aRobinson, J. Russel,$ecomposer
=700 1\$aLange, Arthur,$d1889-1956,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00958ccm a2200241 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aKilenyi, Edward,$d1884-1968,$ecomposer
=245 10$aAgitated conversation
=264 \1$aNew York, NY :$bCarl Fischer Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 095 / 001
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01120ccm a2200277 i 4500
=008 190531t19251925xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$aP30$bRobbins-Engel, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aBergé, Irénée,$d1867-1926,$ecomposer
=245 10$aAgitated hurry :$bfor flights from danger, hurrying to the rescue, etc
=264 \1$aNew York, [NY] :$bRobbins-Engel, Inc.,$c[1925]
=264 \4$c©1925
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aCapitol Photoplay Series
=500 \\$aBox and folder number: 119 / 022
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aMcCabe, James C.,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00951ccm a2200241 i 4500
=008 190531t19231923xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBorch, Gaston,$d1871-1926,$ecomposer
=245 10$aAgitation
=264 \1$a[London, UK] :$bHawkes & Son,$c[1923]
=264 \4$c©1923
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, flute, harmonium, horn, oboe, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 113 / 002
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00953ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a21338-7$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aBorch, Gaston,$d1871-1926,$ecomposer
=245 10$aAgitation
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piano, triangle, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 121 / 021
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00958ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aGabriel-Marie,$d1852-1928,$ecomposer
=245 10$aAgitation poignante
=264 \1$bS. Chapelier,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bassoon, cello, clarinet, contrabass, cornet, flute, oboe, piano, trombone, tympani, violin
=500 \\$aBox and folder number: 115 / 032
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aOurdine, Hans,$ecomposer
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00958ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a18185-113$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato :$bfor general use
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, drums, flute, horn, piano, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 024
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01008ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a19813-7$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aBecker, Will L.,$ecomposer
=245 10$aAgitato :$bfor scenes of heavy or mysterious action leading to fights or tumults
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, cornet, drums, flute, organ, piano, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 120 / 025
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00954ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBecker, Will L.,$ecomposer
=245 10$aAgitato :$bfor depicting mob scenes, tumults, riots, etc.
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bass drum, clarinet, cornet, flute, organ, piano, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 115 / 024
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00906ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, horn, piano, trombone, viola, violin
=500 \\$aBox and folder number: 121 / 023
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00906ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, horn, piano, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 026
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01113ccm a2200277 i 4500
=008 190531t19221922xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a84-18$bRoss Jungnickel
=040 \\$aNjP$beng$cNjP
=100 1\$aBergé, Irénée,$d1867-1926,$ecomposer
=245 10$aAgitato :$banxious expectation
=264 \1$aNew York, [NY] :$bRoss Jungnickel,$c[1922]
=264 \4$c©1922
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, flute, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aArtist's Orchestra Repertoire, No. 84; Photoplay Series, No. 5
=500 \\$aBox and folder number: 117 / 033
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aJungnickel, Ross,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01008ccm a2200253 i 4500
=008 190531t19191919xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$ano. 4$bSam Fox Pub. Co.
=040 \\$aNjP$beng$cNjP
=100 1\$aZamecnik, J. S.$q(John S.),$d1872-1953,$ecomposer
=245 10$aAgitato :$bheavy, for general use
=264 \1$aCleveland, [OH] :$bSam Fox Pub. Co.,$c[1919]
=264 \4$c©1919
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 117 / 017
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00925ccm a2200229 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato :$bfor general use
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, horn, piano, trombone, viola, violin
=500 \\$aBox and folder number: 114 / 028
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00988ccm a2200253 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a19303-7 1/2, 20$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato :$bfor general use
=264 \1$aNew York, [NY] :$bCarl Fischer,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 034
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01015ccm a2200253 i 4500
=008 190531t19141914xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a18185-113, 6$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato :$bfor depicting sudden or impending danger etc.
=264 \1$aNew York, [NY] :$bCarl Fischer,$c[1914]
=264 \4$c©1914
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 037
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00943ccm a2200241 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato
=264 \1$aNew York, [NY] :$bCarl Fischer Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 095 / 018
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01000ccm a2200241 i 4500
=008 190531t19181918xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aRiesenfeld, Hugo,$d1879-1939,$ecomposer
=245 10$aAgitato :$bfor intense situations, arguments leading to a fight, excitement or riot
=264 \1$bG. Schirmer,$c[1918]
=264 \4$c©1918
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, drums, flute, harmonium, horn, piano, trombone, trumpet, tympani, viola, violin
=500 \\$aBox and folder number: 116 / 002
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00974ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a19812-6$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aBecker, Will L.,$ecomposer
=245 10$aAgitato (allegro) :$bfor general use
=264 \1$aNew York :$bCarl Fischer,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, organ, piano, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 120 / 028
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00991ccm a2200253 i 4500
=008 190531t19161916xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a6/18/19301$bCarl Fischer
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato (heavy) :$bfor general use
=264 \1$aNew York, [NY] :$bCarl Fischer,$c[1916]
=264 \4$c©1916
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 118 / 031
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01014ccm a2200253 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aSavino, Domenico,$d1882-1973,$ecomposer
=245 10$aAgitato a la valse
=264 \1$aNew York, NY :$bRobbins Engel, Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 112 / 029
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aSavino, Domenico,$d1882-1973,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00953ccm a2200241 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aLake, Mayhew,$d1879-1955,$ecomposer
=245 10$aAgitato and furioso
=264 \1$aNew York, NY :$bCarl Fischer Inc.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, bassoon, cello, clarinet, cornet, flute, horn, oboe, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 095 / 025
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00934ccm a2200241 i 4500
=008 190531t19171917xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBorch, Gaston,$d1871-1926,$ecomposer
=245 10$aAgitato appassionato, no. 55
=264 \1$aNew York, NY :$bS.M. Berg,$c[1917]
=264 \4$c©1917
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 113 / 013
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01042ccm a2200253 i 4500
=008 190531t19181918xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a28302$bG. Schirmer
=040 \\$aNjP$beng$cNjP
=100 1\$aBorch, Gaston,$d1871-1926,$ecomposer
=245 10$aAgitato con moto :$bfor every form of excitement, excepting boisterous
=264 \1$aNew York, [NY] :$bG. Schirmer,$c[1918]
=264 \4$c©1918
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, harmonium (ad lib.), horn, percussion, piano, trombone, viola, violin
=500 \\$aBox and folder number: 117 / 009
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01030ccm a2200253 i 4500
=008 190531t19241924xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a17105$bBosworth and Co., Ltd.
=040 \\$aNjP$beng$cNjP
=100 1\$aKetèlbey, Albert W.$q(Albert William),$d1875-1959,$ecomposer
=245 10$aAgitato furioso :$bfor riot, tumult, storms, etc.
=264 \1$aNew York, NY :$bBosworth and Co., Ltd.,$c[1924]
=264 \4$c©1924
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piano, trombone, tympani, violin
=500 \\$aBox and folder number: 120 / 035
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00907ccm a2200241 i 4500
=008 190531t19231923xxuzzze\\\\\\\\n\\\\zxx\d
=040 \\$aNjP$beng$cNjP
=100 1\$aBoehnlein, Victor G.,$ecomposer
=245 10$aAgitato in D minor
=264 \1$bBelwin, Inc.,$c[1923]
=264 \4$c©1923
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, flute, percussion, piano, trombone, trumpet, viola, violin
=500 \\$aBox and folder number: 113 / 040
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01144ccm a2200265 i 4500
=008 190531t19181918xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a28306$bG. Schirmer
=040 \\$aNjP$beng$cNjP
=100 1\$aLangey, Otto,$d1851-1922,$ecomposer
=245 10$aAgitato misterioso
=264 \1$aNew York, NY :$bG. Schirmer,$c[1918]
=264 \4$c©1918
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, harmonium, horn, percussion, piano, viola, violin
=500 \\$a"No. 27, P" printed in upper left corner of every part. "Fear, anxiety, suspense, ominous situations, etc." printed below title on first violin and piano parts.
=500 \\$aBox and folder number: 112 / 005
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01206ccm a2200253 i 4500
=008 190531t19171917xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a6841$bChappell and Co. Ltd.
=040 \\$aNjP$beng$cNjP
=100 1\$aBreil, Joseph Carl,$d1870-1926,$ecomposer
=245 10$aAgitato misterioso and grandioso con morendo :$bfor scenes of fear, inner dread, hopelessness premonition of doom, etc. with an outcry of despair or indignation, a desparate appeal, followed by an utter sense of hopelessness, or a calm and soothing aftermath
=264 \1$bChappell and Co. Ltd.,$c[1917]
=264 \4$c©1917
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, drums, flute, piano, trombone, tympani, violin
=500 \\$aBox and folder number: 120 / 036
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 00962ccm a2200241 i 4500
=008 190531q18751930xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a8/1/1121$bBelwin, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aBorch, Gaston,$d1871-1926,$ecomposer
=245 10$aAgitato pathetique
=264 \1$a701 7th Ave., NYC :$bBelwin, Inc.,$c[between 1875 and 1930]
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, piano, trombone, tympani, viola, violin
=500 \\$aBox and folder number: 120 / 029
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01178ccm a2200301 i 4500
=008 190531t19231923xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$aP1$bRichmond-Robbins Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aRapée, Erno,$d1891-1945,$ecomposer
=245 10$aAgitato, no. 1
=264 \1$aNew York, NY :$bRichmond-Robbins Inc.,$c[1923]
=264 \4$c©1923
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$aCapitol Photoplay Series
=500 \\$aBox and folder number: 119 / 027
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=700 1\$aAxt, William,$d1882-1959,$ecomposer
=700 1\$aRapée, Erno,$d1891-1945,$earranger
=700 1\$aAxt, William,$d1882-1959,$earranger
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01123ccm a2200265 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a26223$bG. Schirmer
=040 \\$aNjP$beng$cNjP
=100 1\$aLangey, Otto,$d1851-1922,$ecomposer
=245 10$aAgitato, no. 1
=264 \1$bG. Schirmer,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: cello, piano, viola, violin
=500 \\$a"Schirmer's Photo-play Series 3 P" printed in upper left corner of every part ("2 P" printed in piano and first violin parts). "(Depicting Excitement, Anxiety, Fear)" printed below title on piano and first violin parts.
=500 \\$aBox and folder number: 112 / 003
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01102ccm a2200265 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a26223$bG. Schirmer
=040 \\$aNjP$beng$cNjP
=100 1\$aLangey, Otto,$d1851-1922,$ecomposer
=245 10$aAgitato, no. 1
=264 \1$bG. Schirmer,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, clarinet, cornet, flute, horn, percussion, trombone, violin
=500 \\$a"Schirmer's Photo-play Series 3 P" printed in upper left corner of every part. "(Depicting Excitement, Anxiety, Fear)" printed below title on first violin part.
=500 \\$aBox and folder number: 112 / 006
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
=LDR 01170ccm a2200265 i 4500
=008 190531t19151915xxuzzze\\\\\\\\n\\\\zxx\d
=028 20$a26233$bG. Schirmer, Inc.
=040 \\$aNjP$beng$cNjP
=100 1\$aAndino, J. E.,$ecomposer
=245 10$aAgitato, no. 2
=264 \1$bG. Schirmer, Inc.,$c[1915]
=264 \4$c©1915
=336 \\$anotated music$bntm$2rdacontent
=337 \\$aunmediated$bn$2rdamedia
=338 \\$avolume$bnc$2rdacontent
=348 \\$apart$2rdanfm
=500 \\$aInstrumentation: bass, cello, clarinet, cornet, flute, horn, percussion, piano, trombone, viola, violin
=500 \\$a"Schirmer's Photo-play Series 9 P" printed in upper left corner of every part. "(Heated argument, or intense situation, leading to a fight or riot, Etc)" printed below title on first violin and piano parts.
=500 \\$aBox and folder number: 112 / 020
=546 \\$bStaff notation
=650 \0$aSilent film music
=655 \7$aParts (Music)$2lcgft
=655 \7$aSilent film music$2lcgft
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theater Orchestra Music.
=730 0\$aFred D. Valva Collection of Silent Film and Vaudeville Theatre Orchestra Music.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment