hydra-pbcore 2.4.0 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +1 -1
- data/Gemfile.lock +135 -0
- data/README.md +32 -25
- data/Rakefile +1 -1
- data/hydra-pbcore.gemspec +3 -1
- data/lib/hydra-pbcore.rb +19 -2
- data/lib/hydra_pbcore/datastream.rb +0 -1
- data/lib/hydra_pbcore/datastream/document.rb +6 -11
- data/lib/hydra_pbcore/datastream/instantiation.rb +5 -10
- data/lib/hydra_pbcore/methods.rb +0 -6
- data/lib/hydra_pbcore/templates.rb +6 -6
- data/lib/hydra_pbcore/version.rb +1 -1
- data/spec/config_spec.rb +88 -0
- data/spec/document_spec.rb +37 -17
- data/spec/fixtures/digital_instantiation_solr.xml +1009 -1009
- data/spec/fixtures/document_solr.xml +441 -430
- data/spec/fixtures/physical_instantiation_solr.xml +291 -282
- data/spec/instantiation_spec.rb +38 -6
- data/spec/spec_helper.rb +1 -0
- metadata +42 -87
- data/lib/hydra_pbcore/conversions.rb +0 -107
- data/lib/hydra_pbcore/datastream/deprecated.rb +0 -6
- data/lib/hydra_pbcore/datastream/deprecated/digital_document.rb +0 -105
- data/lib/hydra_pbcore/datastream/deprecated/document.rb +0 -332
- data/lib/hydra_pbcore/datastream/deprecated/instantiation.rb +0 -263
- data/lib/hydra_pbcore/mapper.rb +0 -50
- data/spec/deprecated/digital_document_spec.rb +0 -242
- data/spec/deprecated/document_spec.rb +0 -282
- data/spec/deprecated/instantiation_spec.rb +0 -214
- data/spec/fixtures/converted_digital_document_rrhof_1904.xml +0 -61
- data/spec/fixtures/converted_digital_document_rrhof_2405.xml +0 -54
- data/spec/fixtures/converted_document_rrhof_2439.xml +0 -19
- data/spec/fixtures/converted_document_rrhof_524.xml +0 -45
- data/spec/fixtures/converted_instantiation_rrhof_1184.xml +0 -39
- data/spec/fixtures/converted_rrhof_524.xml +0 -45
- data/spec/fixtures/converted_rrhof_524_instantiation.xml +0 -18
- data/spec/fixtures/deprecated/pbcore_digital_document_template.xml +0 -67
- data/spec/fixtures/deprecated/pbcore_document_template.xml +0 -90
- data/spec/fixtures/deprecated/pbcore_instantiation_template.xml +0 -62
- data/spec/fixtures/deprecated/pbcore_solr_digital_document_template.xml +0 -500
- data/spec/fixtures/deprecated/pbcore_solr_document_template.xml +0 -592
- data/spec/fixtures/deprecated/pbcore_solr_instantiation_template.xml +0 -784
- data/spec/fixtures/integration/digital_document_rrhof_1904.xml +0 -67
- data/spec/fixtures/integration/digital_document_rrhof_2405.xml +0 -66
- data/spec/fixtures/integration/document_rrhof_2439.xml +0 -54
- data/spec/fixtures/integration/document_rrhof_524.xml +0 -80
- data/spec/fixtures/integration/instantiation_rrhof_1184.xml +0 -44
- data/spec/integration/conversions_spec.rb +0 -76
- data/spec/mapper_spec.rb +0 -18
@@ -1,214 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe HydraPbcore::Datastream::Deprecated::Instantiation do
|
4
|
-
|
5
|
-
before(:each) do
|
6
|
-
@object_ds = HydraPbcore::Datastream::Deprecated::Instantiation.new(nil, nil)
|
7
|
-
end
|
8
|
-
|
9
|
-
describe ".update_indexed_attributes" do
|
10
|
-
it "should update all of the fields in #xml_template and fields not requiring additional inserted nodes" do
|
11
|
-
[
|
12
|
-
[:name],
|
13
|
-
[:location],
|
14
|
-
[:date],
|
15
|
-
[:generation],
|
16
|
-
[:media_type],
|
17
|
-
[:file_format],
|
18
|
-
[:size],
|
19
|
-
[:size_units],
|
20
|
-
[:colors],
|
21
|
-
[:duration],
|
22
|
-
[:rights_summary],
|
23
|
-
[:note],
|
24
|
-
[:checksum_type],
|
25
|
-
[:checksum_value],
|
26
|
-
[:device],
|
27
|
-
[:capture_soft],
|
28
|
-
[:trans_soft],
|
29
|
-
[:operator],
|
30
|
-
[:trans_note],
|
31
|
-
[:vendor],
|
32
|
-
[:condition],
|
33
|
-
[:cleaning],
|
34
|
-
[:color_space],
|
35
|
-
[:chroma],
|
36
|
-
[:video_standard],
|
37
|
-
[:video_encoding],
|
38
|
-
[:video_bit_rate],
|
39
|
-
[:video_bit_rate_units],
|
40
|
-
[:frame_rate],
|
41
|
-
[:frame_size],
|
42
|
-
[:video_bit_depth],
|
43
|
-
[:aspect_ratio],
|
44
|
-
[:audio_standard],
|
45
|
-
[:audio_encoding],
|
46
|
-
[:audio_bit_rate],
|
47
|
-
[:audio_bit_rate_units],
|
48
|
-
[:audio_sample_rate],
|
49
|
-
[:audio_sample_rate_units],
|
50
|
-
[:audio_bit_depth],
|
51
|
-
[:audio_channels],
|
52
|
-
].each do |pointer|
|
53
|
-
test_val = "#{pointer.last.to_s} value"
|
54
|
-
@object_ds.update_indexed_attributes( {pointer=>{"0"=>test_val}} )
|
55
|
-
@object_ds.get_values(pointer).first.should == test_val
|
56
|
-
@object_ds.get_values(pointer).length.should == 1
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
describe "default fields" do
|
62
|
-
|
63
|
-
it "like media type should be 'Moving image'" do
|
64
|
-
@object_ds.get_values([:media_type]).first.should == "Moving image"
|
65
|
-
end
|
66
|
-
|
67
|
-
it "like colors should be 'Color'" do
|
68
|
-
@object_ds.get_values([:colors]).first.should == "Color"
|
69
|
-
end
|
70
|
-
|
71
|
-
end
|
72
|
-
|
73
|
-
describe "#xml_template" do
|
74
|
-
it "should return an empty xml document matching an exmplar" do
|
75
|
-
|
76
|
-
# insert optional fields
|
77
|
-
@object_ds.update_indexed_attributes({ [:checksum_type] => { 0 => "inserted" }} )
|
78
|
-
@object_ds.update_indexed_attributes({ [:note] => { 0 => "inserted" }} )
|
79
|
-
@object_ds.update_indexed_attributes({ [:checksum_value] => { 0 => "inserted" }} )
|
80
|
-
@object_ds.update_indexed_attributes({ [:device] => { 0 => "inserted" }} )
|
81
|
-
@object_ds.update_indexed_attributes({ [:capture_soft] => { 0 => "inserted" }} )
|
82
|
-
@object_ds.update_indexed_attributes({ [:trans_soft] => { 0 => "inserted" }} )
|
83
|
-
@object_ds.update_indexed_attributes({ [:operator] => { 0 => "inserted" }} )
|
84
|
-
@object_ds.update_indexed_attributes({ [:trans_note] => { 0 => "inserted" }} )
|
85
|
-
@object_ds.update_indexed_attributes({ [:vendor] => { 0 => "inserted" }} )
|
86
|
-
@object_ds.update_indexed_attributes({ [:condition] => { 0 => "inserted" }} )
|
87
|
-
@object_ds.update_indexed_attributes({ [:cleaning] => { 0 => "inserted" }} )
|
88
|
-
@object_ds.update_indexed_attributes({ [:color_space] => { 0 => "inserted" }} )
|
89
|
-
@object_ds.update_indexed_attributes({ [:chroma] => { 0 => "inserted" }} )
|
90
|
-
@object_ds.update_indexed_attributes({ [:standard] => { 0 => "inserted" }} )
|
91
|
-
@object_ds.update_indexed_attributes({ [:language] => { 0 => "inserted" }} )
|
92
|
-
|
93
|
-
# insert optional nodes using sample values
|
94
|
-
@object_ds.insert_next("inserted")
|
95
|
-
@object_ds.insert_previous("inserted")
|
96
|
-
|
97
|
-
# Load example deprecated_fixture
|
98
|
-
f = deprecated_fixture "pbcore_instantiation_template.xml"
|
99
|
-
ref_node = Nokogiri::XML(f)
|
100
|
-
f.close
|
101
|
-
|
102
|
-
# Nokogiri-fy our sample document and add in namespace
|
103
|
-
sample_node = Nokogiri::XML(@object_ds.to_xml)
|
104
|
-
with_namespace = HydraPbcore::Behaviors.insert_pbcore_namespace(sample_node)
|
105
|
-
|
106
|
-
# Save this for later...
|
107
|
-
out = File.new("tmp/pbcore_instantiation_sample.xml", "w")
|
108
|
-
out.write(with_namespace.to_s)
|
109
|
-
out.close
|
110
|
-
|
111
|
-
EquivalentXml.equivalent?(ref_node, with_namespace, opts = { :element_order => false, :normalize_whitespace => true }).should be_true
|
112
|
-
|
113
|
-
# TODO: reorder nodes on the instantiaion
|
114
|
-
#Rockhall::Pbcore.validate(with_namespace).should be_empty
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
describe "essence fields" do
|
119
|
-
|
120
|
-
it "shoud have different essenceTrackStandard nodes" do
|
121
|
-
|
122
|
-
# Standard
|
123
|
-
@object_ds.update_indexed_attributes({ [:video_standard] => { 0 => "video standard" }} )
|
124
|
-
@object_ds.update_indexed_attributes({ [:audio_standard] => { 0 => "audio standard" }} )
|
125
|
-
@object_ds.get_values([{:pbcoreInstantiation=>0}, {:instantiationEssenceTrack=>0}, :essenceTrackStandard]).first.should == "video standard"
|
126
|
-
@object_ds.get_values([{:pbcoreInstantiation=>0}, {:instantiationEssenceTrack=>1}, :essenceTrackStandard]).first.should == "audio standard"
|
127
|
-
|
128
|
-
end
|
129
|
-
|
130
|
-
end
|
131
|
-
|
132
|
-
describe ".to_solr" do
|
133
|
-
|
134
|
-
before(:each) do
|
135
|
-
[
|
136
|
-
"name",
|
137
|
-
"location",
|
138
|
-
"generation",
|
139
|
-
"media_type",
|
140
|
-
"file_format",
|
141
|
-
"size",
|
142
|
-
"size_units",
|
143
|
-
"colors",
|
144
|
-
"duration",
|
145
|
-
"rights_summary",
|
146
|
-
"note",
|
147
|
-
"checksum_type",
|
148
|
-
"checksum_value",
|
149
|
-
"device",
|
150
|
-
"capture_soft",
|
151
|
-
"trans_soft",
|
152
|
-
"operator",
|
153
|
-
"trans_note",
|
154
|
-
"vendor",
|
155
|
-
"condition",
|
156
|
-
"cleaning",
|
157
|
-
"color_space",
|
158
|
-
"chroma",
|
159
|
-
"video_standard",
|
160
|
-
"video_encoding",
|
161
|
-
"video_bit_rate",
|
162
|
-
"video_bit_rate_units",
|
163
|
-
"frame_rate",
|
164
|
-
"frame_size",
|
165
|
-
"video_bit_depth",
|
166
|
-
"aspect_ratio",
|
167
|
-
"audio_standard",
|
168
|
-
"audio_encoding",
|
169
|
-
"audio_bit_rate",
|
170
|
-
"audio_bit_rate_units",
|
171
|
-
"audio_sample_rate",
|
172
|
-
"audio_sample_rate_units",
|
173
|
-
"audio_bit_depth",
|
174
|
-
"audio_channels"
|
175
|
-
].each do |field|
|
176
|
-
@object_ds.send("#{field}=".to_sym, field)
|
177
|
-
end
|
178
|
-
|
179
|
-
# Use a real date
|
180
|
-
@object_ds.date = "2012-11"
|
181
|
-
end
|
182
|
-
|
183
|
-
it "should match an exmplar" do
|
184
|
-
# Load example deprecated_fixture
|
185
|
-
f = deprecated_fixture "pbcore_solr_instantiation_template.xml"
|
186
|
-
ref_node = Nokogiri::XML(f)
|
187
|
-
f.close
|
188
|
-
|
189
|
-
# Nokogiri-fy our sample document
|
190
|
-
sample_node = Nokogiri::XML(@object_ds.to_solr.to_xml)
|
191
|
-
|
192
|
-
# Save this for later...
|
193
|
-
out = File.new("tmp/pbcore_solr_instantation_sample.xml", "w")
|
194
|
-
out.write(sample_node.to_s)
|
195
|
-
out.close
|
196
|
-
|
197
|
-
EquivalentXml.equivalent?(ref_node, sample_node, opts = { :element_order => false, :normalize_whitespace => true }).should be_true
|
198
|
-
end
|
199
|
-
|
200
|
-
it "should display dates as they were entered" do
|
201
|
-
@object_ds.to_solr["date_display"].should == ["2012-11"]
|
202
|
-
end
|
203
|
-
|
204
|
-
it "should have dates converted to ISO 8601" do
|
205
|
-
@object_ds.to_solr["date_dt"].should == ["2012-11-01T00:00:00Z"]
|
206
|
-
end
|
207
|
-
|
208
|
-
it "should not index dates as text" do
|
209
|
-
@object_ds.to_solr["date_t"].should be_nil
|
210
|
-
end
|
211
|
-
|
212
|
-
end
|
213
|
-
|
214
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
<pbcoreDescriptionDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pbcore.org/PBCore/PBCoreNamespace.html">
|
2
|
-
<pbcoreIdentifier annotation="PID" source="Rock and Roll Hall of Fame and Museum"/>
|
3
|
-
<pbcoreTitle titleType="Main">Oral history project. Wanda Jackson.</pbcoreTitle>
|
4
|
-
<pbcoreDescription annotation="Summary" descriptionType="Description" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#description" descriptionTypeSource="pbcoreDescription/descriptionType">Jackson discusses her career in rockabilly, her country influences, and her professional relationships with Elvis Presley, Hank Thompson, Jack White, and Ken Nelson.</pbcoreDescription>
|
5
|
-
<pbcoreDescription annotation="Parts List" descriptionType="Table of Contents" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#table-of-contents" descriptionTypeSource="pbcoreDescription/descriptionType">[Interview in four parts.]</pbcoreDescription>
|
6
|
-
<pbcoreRelation>
|
7
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
8
|
-
<pbcoreRelationIdentifier annotation="Event Series">Oral history project (Rock and Roll Hall of Fame and Museum)</pbcoreRelationIdentifier>
|
9
|
-
</pbcoreRelation>
|
10
|
-
<pbcoreRelation>
|
11
|
-
<pbcoreRelationType source="PBCore relationType" ref="http://pbcore.org/vocabularies/relationType#is-part-of">Is Part Of</pbcoreRelationType>
|
12
|
-
<pbcoreRelationIdentifier annotation="Archival Collection">Rock and Roll Hall of Fame and Museum records. Education and Public Programs Division. </pbcoreRelationIdentifier>
|
13
|
-
</pbcoreRelation>
|
14
|
-
<pbcoreRelation>
|
15
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
16
|
-
<pbcoreRelationIdentifier annotation="Accession Number"/>
|
17
|
-
</pbcoreRelation>
|
18
|
-
<pbcoreCoverage>
|
19
|
-
<coverage annotation="Event Place">Oklahoma City, OK</coverage>
|
20
|
-
<coverageType>Spatial</coverageType>
|
21
|
-
</pbcoreCoverage>
|
22
|
-
<pbcoreCoverage>
|
23
|
-
<coverage annotation="Event Date">2011-12-08</coverage>
|
24
|
-
<coverageType>Temporal</coverageType>
|
25
|
-
</pbcoreCoverage>
|
26
|
-
<pbcoreCoverage>
|
27
|
-
<coverage annotation="Event Place">New York, NY</coverage>
|
28
|
-
<coverageType>Spatial</coverageType>
|
29
|
-
</pbcoreCoverage>
|
30
|
-
<pbcoreCoverage>
|
31
|
-
<coverage annotation="Event Date">2011-12-19</coverage>
|
32
|
-
<coverageType>Temporal</coverageType>
|
33
|
-
</pbcoreCoverage>
|
34
|
-
<pbcoreRightsSummary/>
|
35
|
-
<pbcoreAnnotation annotationType="Notes"/>
|
36
|
-
<pbcoreTitle titleType="Alternative">Wanda Jackson oral history</pbcoreTitle>
|
37
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Jackson, Wanda, 1937-</pbcoreSubject>
|
38
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rockabilly music</pbcoreSubject>
|
39
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Women rock musicians</pbcoreSubject>
|
40
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock music--History and criticism</pbcoreSubject>
|
41
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Oral histories</pbcoreGenre>
|
42
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Filmed interviews</pbcoreGenre>
|
43
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Nonfiction films</pbcoreGenre>
|
44
|
-
<pbcoreContributor>
|
45
|
-
<contributor>Jackson, Wanda, 1937-</contributor>
|
46
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
47
|
-
</pbcoreContributor>
|
48
|
-
<pbcoreContributor>
|
49
|
-
<contributor>George-Warren, Holly</contributor>
|
50
|
-
<contributorRole source="MARC relator terms">interviewer</contributorRole>
|
51
|
-
</pbcoreContributor>
|
52
|
-
<pbcoreContributor>
|
53
|
-
<contributor>Rock and Roll Hall of Fame Foundation</contributor>
|
54
|
-
<contributorRole source="MARC relator terms">producer</contributorRole>
|
55
|
-
</pbcoreContributor>
|
56
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Nelson, Ken, 1911-2008</pbcoreSubject>
|
57
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">White, Jack, 1975-</pbcoreSubject>
|
58
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Presley, Elvis, 1935-1977</pbcoreSubject>
|
59
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Thompson, Hank</pbcoreSubject>
|
60
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Inductee</pbcoreSubject>
|
61
|
-
</pbcoreDescriptionDocument>
|
@@ -1,54 +0,0 @@
|
|
1
|
-
<pbcoreDescriptionDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pbcore.org/PBCore/PBCoreNamespace.html">
|
2
|
-
<pbcoreIdentifier annotation="PID" source="Rock and Roll Hall of Fame and Museum"/>
|
3
|
-
<pbcoreTitle titleType="Main">Oral History project. Clive Davis.</pbcoreTitle>
|
4
|
-
<pbcoreDescription annotation="Summary" descriptionType="Description" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#description" descriptionTypeSource="pbcoreDescription/descriptionType">Anthony DeCurtis interviews record executive Clive Davis, who signed such legendary artists as Janis Joplin and Santana, and who founded Arista Records.</pbcoreDescription>
|
5
|
-
<pbcoreDescription annotation="Parts List" descriptionType="Table of Contents" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#table-of-contents" descriptionTypeSource="pbcoreDescription/descriptionType"/>
|
6
|
-
<pbcoreRelation>
|
7
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
8
|
-
<pbcoreRelationIdentifier annotation="Event Series">Oral history project (Rock and Roll Hall of Fame and Museum)</pbcoreRelationIdentifier>
|
9
|
-
</pbcoreRelation>
|
10
|
-
<pbcoreRelation>
|
11
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
12
|
-
<pbcoreRelationIdentifier annotation="Accession Number">LA.2012.05.024</pbcoreRelationIdentifier>
|
13
|
-
</pbcoreRelation>
|
14
|
-
<pbcoreRelation>
|
15
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
16
|
-
<pbcoreRelationIdentifier annotation="Archival Collection">Rock and Roll Hall of Fame and Museum records. Education and Public Programs Division.</pbcoreRelationIdentifier>
|
17
|
-
</pbcoreRelation>
|
18
|
-
<pbcoreCoverage>
|
19
|
-
<coverage annotation="Event Place">Pound Ridge, New York</coverage>
|
20
|
-
<coverageType>Spatial</coverageType>
|
21
|
-
</pbcoreCoverage>
|
22
|
-
<pbcoreCoverage>
|
23
|
-
<coverage annotation="Event Date">2011-12-10</coverage>
|
24
|
-
<coverageType>Temporal</coverageType>
|
25
|
-
</pbcoreCoverage>
|
26
|
-
<pbcoreRightsSummary/>
|
27
|
-
<pbcoreAnnotation annotationType="Notes"/>
|
28
|
-
<pbcoreTitle titleType="Alternative">Clive Davis Oral History</pbcoreTitle>
|
29
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Davis, Clive</pbcoreSubject>
|
30
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Joplin, Janis</pbcoreSubject>
|
31
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Oral histories</pbcoreGenre>
|
32
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Santana (Musical group)</pbcoreSubject>
|
33
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Filmed interviews</pbcoreGenre>
|
34
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Arista (Firm)</pbcoreSubject>
|
35
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Nonfiction films</pbcoreGenre>
|
36
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Columbia Records, Inc.</pbcoreSubject>
|
37
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Sound recording executives and producers</pbcoreSubject>
|
38
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Record labels--United States</pbcoreSubject>
|
39
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Sound recording industry</pbcoreSubject>
|
40
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock music--History and criticism</pbcoreSubject>
|
41
|
-
<pbcoreContributor>
|
42
|
-
<contributor>Davis, Clive</contributor>
|
43
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
44
|
-
</pbcoreContributor>
|
45
|
-
<pbcoreContributor>
|
46
|
-
<contributor>DeCurtis, Anthony</contributor>
|
47
|
-
<contributorRole source="MARC relator terms">interviewer</contributorRole>
|
48
|
-
</pbcoreContributor>
|
49
|
-
<pbcoreContributor>
|
50
|
-
<contributor>Rock and Roll Hall of Fame Foundation</contributor>
|
51
|
-
<contributorRole source="MARC relator terms">producer</contributorRole>
|
52
|
-
</pbcoreContributor>
|
53
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Inductee</pbcoreSubject>
|
54
|
-
</pbcoreDescriptionDocument>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<pbcoreDescriptionDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pbcore.org/PBCore/PBCoreNamespace.html">
|
2
|
-
<pbcoreIdentifier annotation="PID" source="Rock and Roll Hall of Fame and Museum"/>
|
3
|
-
<pbcoreTitle titleType="Main">David Ritz. Tape 67.</pbcoreTitle>
|
4
|
-
<pbcoreDescription annotation="Summary" descriptionType="Description" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#description" descriptionTypeSource="pbcoreDescription/descriptionType">Interview with David Ritz on the subject of Jerry Wexler. Other topics discussed include Muscle Shoals, Jimmie Johnson, and Ahmet Ertegun.</pbcoreDescription>
|
5
|
-
<pbcoreDescription annotation="Parts List" descriptionType="Table of Contents" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#table-of-contents" descriptionTypeSource="pbcoreDescription/descriptionType"/>
|
6
|
-
<pbcoreRelation>
|
7
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
8
|
-
<pbcoreRelationIdentifier annotation="Event Series"/>
|
9
|
-
</pbcoreRelation>
|
10
|
-
<pbcoreCoverage>
|
11
|
-
<coverage annotation="Event Place"/>
|
12
|
-
<coverageType>Spatial</coverageType>
|
13
|
-
</pbcoreCoverage>
|
14
|
-
<pbcoreCoverage>
|
15
|
-
<coverage annotation="Event Date">1999</coverage>
|
16
|
-
<coverageType>Temporal</coverageType>
|
17
|
-
</pbcoreCoverage>
|
18
|
-
<pbcoreAnnotation annotationType="Notes"/>
|
19
|
-
</pbcoreDescriptionDocument>
|
@@ -1,45 +0,0 @@
|
|
1
|
-
<pbcoreDescriptionDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pbcore.org/PBCore/PBCoreNamespace.html">
|
2
|
-
<pbcoreIdentifier annotation="PID" source="Rock and Roll Hall of Fame and Museum"/>
|
3
|
-
<pbcoreTitle titleType="Main">Evening with series. Glass Harp. Part 1.</pbcoreTitle>
|
4
|
-
<pbcoreDescription annotation="Summary" descriptionType="Description" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#description" descriptionTypeSource="pbcoreDescription/descriptionType">Chief Curator Jim Henke interviews Phil Keaggy, John Sferra, and Daniel Pecchio of Cleveland-based power trio band Glass Harp. The band members discuss their genesis in Youngstown, Ohio, playing early shows in Kent, Ohio, the James Gang, Decca Records, and playing at Carnegie Hall.</pbcoreDescription>
|
5
|
-
<pbcoreDescription annotation="Parts List" descriptionType="Table of Contents" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#table-of-contents" descriptionTypeSource="pbcoreDescription/descriptionType"/>
|
6
|
-
<pbcoreRelation>
|
7
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
8
|
-
<pbcoreRelationIdentifier annotation="Event Series">Evening with series (Rock and Roll Hall of Fame and Museum)</pbcoreRelationIdentifier>
|
9
|
-
</pbcoreRelation>
|
10
|
-
<pbcoreCoverage>
|
11
|
-
<coverage annotation="Event Place">Rock and Roll Hall of Fame and Museum, Cleveland, Ohio</coverage>
|
12
|
-
<coverageType>Spatial</coverageType>
|
13
|
-
</pbcoreCoverage>
|
14
|
-
<pbcoreCoverage>
|
15
|
-
<coverage annotation="Event Date">1997-04-19</coverage>
|
16
|
-
<coverageType>Temporal</coverageType>
|
17
|
-
</pbcoreCoverage>
|
18
|
-
<pbcoreAnnotation annotationType="Notes"/>
|
19
|
-
<pbcoreTitle titleType="Label">An evening with Glass Harp.</pbcoreTitle>
|
20
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Glass Harp (Musical group)</pbcoreSubject>
|
21
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock groups</pbcoreSubject>
|
22
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock music--History and criticism</pbcoreSubject>
|
23
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Filmed interviews</pbcoreGenre>
|
24
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Nonfiction films</pbcoreGenre>
|
25
|
-
<pbcoreContributor>
|
26
|
-
<contributor>Henke, James</contributor>
|
27
|
-
<contributorRole source="MARC relator terms">interviewer</contributorRole>
|
28
|
-
</pbcoreContributor>
|
29
|
-
<pbcoreContributor>
|
30
|
-
<contributor>Glass Harp (Musical group)</contributor>
|
31
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
32
|
-
</pbcoreContributor>
|
33
|
-
<pbcoreContributor>
|
34
|
-
<contributor>Keaggy, Phil</contributor>
|
35
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
36
|
-
</pbcoreContributor>
|
37
|
-
<pbcoreContributor>
|
38
|
-
<contributor>Sferra, John</contributor>
|
39
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
40
|
-
</pbcoreContributor>
|
41
|
-
<pbcoreContributor>
|
42
|
-
<contributor>Rock and Roll Hall of Fame and Museum</contributor>
|
43
|
-
<contributorRole source="MARC relator terms"/>
|
44
|
-
</pbcoreContributor>
|
45
|
-
</pbcoreDescriptionDocument>
|
@@ -1,39 +0,0 @@
|
|
1
|
-
<pbcoreInstantiation>
|
2
|
-
<instantiationIdentifier annotation="Filename" source="Rock and Roll Hall of Fame and Museum">39156042449095_preservation.mov</instantiationIdentifier>
|
3
|
-
<instantiationDate dateType="created">2012-02-07</instantiationDate>
|
4
|
-
<instantiationDigital source="EBU file formats">mov</instantiationDigital>
|
5
|
-
<instantiationLocation/>
|
6
|
-
<instantiationMediaType source="PBCore instantiationMediaType">Moving image</instantiationMediaType>
|
7
|
-
<instantiationGenerations source="PBCore instantiationGenerations">Copy: preservation</instantiationGenerations>
|
8
|
-
<instantiationFileSize unitsOfMeasure="">34</instantiationFileSize>
|
9
|
-
<instantiationDuration>00:21:51</instantiationDuration>
|
10
|
-
<instantiationColors source="PBCore instantiationColors">Color</instantiationColors>
|
11
|
-
<instantiationEssenceTrack>
|
12
|
-
<essenceTrackType>Video</essenceTrackType>
|
13
|
-
<essenceTrackStandard>NTSC</essenceTrackStandard>
|
14
|
-
<essenceTrackEncoding source="PBCore essenceTrackEncoding">AJA v210</essenceTrackEncoding>
|
15
|
-
<essenceTrackDataRate unitsOfMeasure="Mbps">224</essenceTrackDataRate>
|
16
|
-
<essenceTrackFrameRate unitsOfMeasure="fps">29.97</essenceTrackFrameRate>
|
17
|
-
<essenceTrackBitDepth>10</essenceTrackBitDepth>
|
18
|
-
<essenceTrackFrameSize source="PBCore essenceTrackFrameSize">720x486</essenceTrackFrameSize>
|
19
|
-
<essenceTrackAspectRatio source="PBCore essenceTrackAspectRatio">4:3</essenceTrackAspectRatio>
|
20
|
-
</instantiationEssenceTrack>
|
21
|
-
<instantiationEssenceTrack>
|
22
|
-
<essenceTrackType>Audio</essenceTrackType>
|
23
|
-
<essenceTrackStandard>Linear PCM Audio</essenceTrackStandard>
|
24
|
-
<essenceTrackEncoding source="PBCore essenceTrackEncoding">in24</essenceTrackEncoding>
|
25
|
-
<essenceTrackDataRate unitsOfMeasure="Kbps">1152</essenceTrackDataRate>
|
26
|
-
<essenceTrackSamplingRate unitsOfMeasure="kHz">48</essenceTrackSamplingRate>
|
27
|
-
<essenceTrackBitDepth>24</essenceTrackBitDepth>
|
28
|
-
<essenceTrackAnnotation annotationType="Number of Audio Channels">2</essenceTrackAnnotation>
|
29
|
-
</instantiationEssenceTrack>
|
30
|
-
<instantiationRights>
|
31
|
-
<rightsSummary/>
|
32
|
-
</instantiationRights>
|
33
|
-
<instantiationAnnotation annotationType="Capture Software">Apple FCP 7 (ver 7.0.3)</instantiationAnnotation>
|
34
|
-
<instantiationAnnotation annotationType="Operator">TM</instantiationAnnotation>
|
35
|
-
<instantiationAnnotation annotationType="Playback Device">BTS BCB75</instantiationAnnotation>
|
36
|
-
<instantiationAnnotation annotationType="Chroma">4:2:2</instantiationAnnotation>
|
37
|
-
<instantiationAnnotation annotationType="Color Space">YUV</instantiationAnnotation>
|
38
|
-
<instantiationAnnotation annotationType="Vendor Name">George Blood Audio and Video</instantiationAnnotation>
|
39
|
-
</pbcoreInstantiation>
|
@@ -1,45 +0,0 @@
|
|
1
|
-
<pbcoreDescriptionDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pbcore.org/PBCore/PBCoreNamespace.html">
|
2
|
-
<pbcoreIdentifier annotation="PID" source="Rock and Roll Hall of Fame and Museum"/>
|
3
|
-
<pbcoreTitle titleType="Main">Evening with series. Glass Harp. Part 1.</pbcoreTitle>
|
4
|
-
<pbcoreDescription annotation="Summary" descriptionType="Description" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#description" descriptionTypeSource="pbcoreDescription/descriptionType">Chief Curator Jim Henke interviews Phil Keaggy, John Sferra, and Daniel Pecchio of Cleveland-based power trio band Glass Harp. The band members discuss their genesis in Youngstown, Ohio, playing early shows in Kent, Ohio, the James Gang, Decca Records, and playing at Carnegie Hall.</pbcoreDescription>
|
5
|
-
<pbcoreDescription annotation="Parts List" descriptionType="Table of Contents" descriptionTypeRef="http://pbcore.org/vocabularies/pbcoreDescription/descriptionType#table-of-contents" descriptionTypeSource="pbcoreDescription/descriptionType"/>
|
6
|
-
<pbcoreRelation>
|
7
|
-
<pbcoreRelationType ref="http://pbcore.org/vocabularies/relationType#is-part-of" source="PBCore relationType">Is Part Of</pbcoreRelationType>
|
8
|
-
<pbcoreRelationIdentifier annotation="Event Series">Evening with series (Rock and Roll Hall of Fame and Museum)</pbcoreRelationIdentifier>
|
9
|
-
</pbcoreRelation>
|
10
|
-
<pbcoreCoverage>
|
11
|
-
<coverage annotation="Event Place">Rock and Roll Hall of Fame and Museum, Cleveland, Ohio</coverage>
|
12
|
-
<coverageType>Spatial</coverageType>
|
13
|
-
</pbcoreCoverage>
|
14
|
-
<pbcoreCoverage>
|
15
|
-
<coverage annotation="Event Date">1997-04-19</coverage>
|
16
|
-
<coverageType>Temporal</coverageType>
|
17
|
-
</pbcoreCoverage>
|
18
|
-
<pbcoreAnnotation annotationType="Notes"/>
|
19
|
-
<pbcoreTitle titleType="Label">An evening with Glass Harp.</pbcoreTitle>
|
20
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Glass Harp (Musical group)</pbcoreSubject>
|
21
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock groups</pbcoreSubject>
|
22
|
-
<pbcoreSubject ref="http://id.loc.gov/authorities/subjects.html" source="Library of Congress Subject Headings">Rock music--History and criticism</pbcoreSubject>
|
23
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Filmed interviews</pbcoreGenre>
|
24
|
-
<pbcoreGenre ref="http://id.loc.gov/authorities/genreForms.html" source="Library of Congress Genre/Form Terms">Nonfiction films</pbcoreGenre>
|
25
|
-
<pbcoreContributor>
|
26
|
-
<contributor>Henke, James</contributor>
|
27
|
-
<contributorRole source="MARC relator terms">interviewer</contributorRole>
|
28
|
-
</pbcoreContributor>
|
29
|
-
<pbcoreContributor>
|
30
|
-
<contributor>Glass Harp (Musical group)</contributor>
|
31
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
32
|
-
</pbcoreContributor>
|
33
|
-
<pbcoreContributor>
|
34
|
-
<contributor>Keaggy, Phil</contributor>
|
35
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
36
|
-
</pbcoreContributor>
|
37
|
-
<pbcoreContributor>
|
38
|
-
<contributor>Sferra, John</contributor>
|
39
|
-
<contributorRole source="MARC relator terms">interviewee</contributorRole>
|
40
|
-
</pbcoreContributor>
|
41
|
-
<pbcoreContributor>
|
42
|
-
<contributor>Rock and Roll Hall of Fame and Museum</contributor>
|
43
|
-
<contributorRole source="MARC relator terms"/>
|
44
|
-
</pbcoreContributor>
|
45
|
-
</pbcoreDescriptionDocument>
|