-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmakepbcore.py
executable file
·883 lines (861 loc) · 30.8 KB
/
makepbcore.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
#!/usr/bin/env python3
'''
Describe AV objects using PBCore in CSV form.
Ideas for improvement:
Have the PBCore get metadata function return the value, and
just append it to the element list in the one call.
Also, have a consistent method for extracting metadata,
I'd suggest just parsing a single raw -f mediainfo, which should
alleviate the need to use --Inform and the PBCore output.
Also - better handling of multiple audio tracks.
The audio_format and the PBCore calls are all just analyzing the first track.
Get rid of this technical debt!
'''
import sys
import os
import subprocess
import argparse
import lxml
from lxml import etree
import ififuncs
def process_mixed_values(value_list):
'''
Checks if multiple conflicting metadata values exist,
for example, an instantiation that has multiple files that have
different framerates.
'''
mixed_values = ''
# Check if just a single value exists. If so, just return that one value.
if len(set(value_list)) is 1:
value = value_list[0]
else:
# Return the mixed values with pipe delimiter.
for x in value_list:
mixed_values += x + '|'
if mixed_values[-1] == '|':
mixed_values = mixed_values[:-1]
value = mixed_values
return value
def get_timecode(pbcore_namespace, root, source):
''''
Gets starting timecode and source of timecode
This is awkward cos it can be in the instantation or essence
mediainfo output for matroska tags.
It can also just be a tmcd or mxf tmcd track. In which case
the value is extracted from TimeStart.
ugh - though it's only for FCP 7 originated captures
that have the timecode info in the instantiation and essence
sections. so always grabbing it from essence should work
for the most part.
'''
# test if the timecode is a metadata tag.
timecode_source = 'n/a'
starting_timecode = 'n/a'
tag_test = get_metadata(
"//ns:essenceTrackAnnotation[@annotationType='TimeCode_Source']",
root, pbcore_namespace
)
# check if timecode is stored in a data track
track_test = ififuncs.get_mediainfo(
'bla', '--inform=Other;%TimeCode_FirstFrame%', source
)
if not tag_test == 'n/a':
timecode_source = tag_test
starting_timecode = get_metadata(
"//ns:essenceTrackAnnotation[@annotationType='TimeCode_FirstFrame']",
root, pbcore_namespace
)
elif track_test != '':
starting_timecode = track_test
# Uh, this will be inconsistent if we ever get data tracks
# other than timecode. MXF in particular could be weird.
timecode_source = ififuncs.get_mediainfo(
'bla', '--inform=Other;%Format%', source
)
if starting_timecode == 'n/a':
pass
else:
starting_timecode = os.path.basename(source) + '=' + starting_timecode
return timecode_source, starting_timecode
def get_metadata(xpath_path, root, pbcore_namespace):
'''
Extracts values from PBCore2 XML MediaInfo outputs.
'''
value = root.xpath(
xpath_path,
namespaces={'ns':pbcore_namespace}
)
if value == []:
value = 'n/a'
elif len(value) > 1:
mixed_values = ''
value_list = []
for i in value:
# Checks if multiple audio tracks have different values.
if i.getparent().find(
'ns:essenceTrackType',
namespaces={'ns':pbcore_namespace}
).text == 'Audio':
value_list.append(i.text)
# Checks if values in the list are the same(1) or different (2)
if len(set(value_list)) is 1:
value = value[0].text
else:
# Return the mixed values with pipe delimiter.
for x in value_list:
mixed_values += x + '|'
if mixed_values[-1] == '|':
mixed_values = mixed_values[:-1]
value = mixed_values
else:
value = value[0].text
return value
def get_attributes(root, pbcore_namespace):
'''
Extracts values from PBCore2 XML MediaInfo outputs.
'''
value = root.xpath(
"ns:essenceTrackEncoding",
namespaces={'ns':pbcore_namespace}
)[0].attrib
return value # a dict
def parse_args(args_):
'''
Parse command line arguments.
'''
parser = argparse.ArgumentParser(
description='Describes AV objects using a combination of the PBCore 2 metadata standard and the mandatory fields from the IFI technical database.'
'This script takes a folder as input. Either a single file or multiple objects will be described.'
'This will produce a single PBCore CSV record per package, even if multiple objects are within a package.'
' Written by Kieran O\'Leary.'
)
parser.add_argument(
'input', help='Input directory'
)
parser.add_argument(
'-user',
help='Declare who you are. If this is not set, you will be prompted.'
)
parser.add_argument(
'-accession',
help='Enter the Accession number for the representation.'
)
parser.add_argument(
'-reference',
help='Enter the Filmographic reference number for the representation.'
)
parser.add_argument(
'-p', action='store_true',
help='Adds the PBCore CSV to the metadata folder'
)
parser.add_argument(
'-parent',
help='Enter the accession number of the parent object (useful for reproductions)'
)
parser.add_argument(
'-acquisition_type',
help='Enter the Type of Acquisition in the form of a number referring to the IFI controlled vocabulary.'
)
parser.add_argument(
'-donor',
help='Enter a string that represents the source of acquisition'
)
parser.add_argument(
'-depositor_reference',
help='Enter a number that represents the identifier for the source of acquisition'
)
parser.add_argument(
'-donation_date',
help='Enter the date of dontation/acquisition/deposit etc. 2018-12-30 or 30/12/2018 depending on source of data'
)
parser.add_argument(
'-reproduction_creator',
help='Enter the person/organisation that created the reproduction. Only suitable for reprodctions, not donations!'
)
parsed_args = parser.parse_args(args_)
return parsed_args
def get_accession_number(source):
'''
Checks if the package has been accessioned.
Returns the accession number if this is the case, otherwise the script exits.
'''
basename = os.path.basename(source)
if len(basename) == 7:
if basename[:3] == 'aaa':
return basename
else:
print('looks like your package has not been accessioned? Exiting!')
return 'not_accessioned'
def get_reference_number(source):
'''
Checks if the reference number is in the folder path.
This check is not sustainable, will have to be made more flexible!
'''
basename = os.path.basename(os.path.dirname(source))
if len(basename) == 7:
if basename[:3] == 'af1':
return basename
else:
basename = ififuncs.get_reference_number()
return basename
def make_csv(csv_filename):
'''
Writes a CSV with IFI database headings.
'''
ififuncs.create_csv(csv_filename, [
'Reference Number',
'Donor',
'Edited By',
'Date Created',
'Date Last Modified',
'Film Or Tape',
'Date Of Donation',
'Accession Number',
'Habitat',
'backup_habitat',
'TTape Origin',
'Type Of Deposit',
'Depositor Reference',
'Master Viewing',
'Language Version',
'Condition Rating',
'Companion Elements',
'EditedNew',
'FIO',
'CollectionTitle',
'Created By',
'instantiationIdentif',
'instantDate_other',
'instantDate_type',
'instantiationDate_mo',
'instantiationStandar',
'instantMediaty',
'instantFileSize_byte',
'instantFileSize_gigs',
'instantTimeStart',
'instantDataRate',
'instantTracks',
'instantColors',
'instantLanguage',
'instantAltMo',
'essenceTrackEncodvid',
'essenceFrameRate',
'essenceTrackSampling',
'essenceBitDepth_vid',
'essenceFrameSize',
'essenceAspectRatio',
'essenceTrackEncod_au',
'essenceBitDepth_au',
'instantiationDuratio',
'instantiationChanCon',
'PixelAspectRatio',
'FrameCount',
'ColorSpace',
'ChromaSubsampling',
'ScanType',
'Interlacement',
'Compression_Mode',
'colour_primaries',
'transfer_characteris',
'matrix_coefficients',
'pix_fmt',
'audio_fmt',
'audio_codecid',
'video_codecid',
'video_codec_version',
'video_codec_profile',
'channels',
'colour_range',
'format_version',
'TimeCode_FirstFrame',
'TimeCode_Source',
'app_company_name',
'app_name',
'app_version',
'library_name',
'library_version',
'reproduction_creator',
'reproduction_reason',
'dig_object_descrip'
])
def check_dcp(cpl):
xmlname = etree.parse(cpl)
xml_namespace = xmlname.xpath('namespace-uri(.)')
if 'smpte' in xml_namespace.lower():
dig_object_descrip = 'SMPTE Digital Cinema Package'
else:
dig_object_descrip = 'Interop Digital Cinema Package'
essenceFrameSize = ififuncs.get_mediainfo(
'duration', '--inform=Video;%Width%x%Height%', cpl
)
if essenceFrameSize[-2:] == 'x0':
essenceFrameSize = ififuncs.get_mediainfo(
'duration', '--inform=Video;%Width%x%Sampled_Height%', cpl
)
ChromaSubsampling = ififuncs.get_mediainfo(
'duration', '--inform=Video;%ChromaSubsampling%', cpl
)
ColorSpace = ififuncs.get_mediainfo(
'duration', '--inform=Video;%ColorSpace%', cpl
)
FrameCount = ififuncs.get_mediainfo(
'duration', '--inform=Video;%FrameCount%', cpl
)
essenceAspectRatio = ififuncs.get_mediainfo(
'duration', '--inform=Video;%DisplayAspectRatio/String%', cpl
)
instantiationDuratio = ififuncs.get_mediainfo(
'duration', '--inform=General;%Duration/String4%', cpl
)
PixelAspectRatio = ififuncs.get_mediainfo(
'duration', '--inform=Video;%PixelAspectRatio%', cpl
)
ScanType = ififuncs.get_mediainfo(
'duration', '--inform=Video;%ScanType%', cpl
)
instantTracks = 'n/a'
instantDataRate = round(float(ififuncs.get_mediainfo(
'OverallBitRate', '--inform=General;%OverallBitRate%', cpl
)) / 1000 / 1000, 2)
essenceBitDepth_vid = ififuncs.get_mediainfo(
'duration', '--inform=Video;%BitDepth%', cpl
)
return essenceFrameSize, ChromaSubsampling, ColorSpace, FrameCount, essenceAspectRatio, instantiationDuratio, PixelAspectRatio, ScanType, dig_object_descrip, instantTracks, instantDataRate, essenceBitDepth_vid, 'Moving Image'
def main(args_):
# if multiple file are present, this script will treat them as a single
# instantiation/representation and get aggregate metadata about the whole
# package. For now, this will be a clumsy implementation - the first file
# will provide most metadata. Things like duration/bitrate/filesize
# will be calculated as a whole.
# Although another way would be that every call is looped, and if
# this could catch files that should not be in the package, eg. a 4:2:2
# file in a 4:2:0 package..
# yup - do it that way!
args = parse_args(args_)
all_files = ififuncs.recursive_file_list(args.input)
silence = True
audio_only = True
if args.user:
user = args.user
else:
user = ififuncs.get_user()
acquisition_type = ''
if args.acquisition_type:
acquisition_type = ififuncs.get_acquisition_type(args.acquisition_type)[0]
instantiationIdentif = ''
for dirs in os.listdir(args.input):
if ififuncs.validate_uuid4(dirs) is None:
instantiationIdentif = dirs
Accession_Number = get_accession_number(args.input)
if args.reference:
Reference_Number = args.reference.upper()
else:
Reference_Number = get_reference_number(args.input)
if args.p:
for root, _, filenames in os.walk(args.input):
if os.path.basename(root) == 'metadata':
metadata_dir = root
elif os.path.basename(root) == 'logs':
logs_dir = root
csv_filename = os.path.join(metadata_dir, Accession_Number + '_%s_pbcore.csv' % Reference_Number)
sipcreator_log = os.path.join(
logs_dir, instantiationIdentif + '_sip_log.log'
)
ififuncs.generate_log(
sipcreator_log,
'EVENT = makepbcore.py started'
)
ififuncs.generate_log(
sipcreator_log,
'eventDetail=makepbcore.py %s' % ififuncs.get_script_version('makepbcore.py')
)
ififuncs.generate_log(
sipcreator_log,
'Command line arguments: %s' % args
)
ififuncs.generate_log(
sipcreator_log,
'EVENT = agentName=%s' % user
)
else:
csv_filename = 'blaa.csv'
print((' - Metadata will be stored in %s' % csv_filename))
for filenames in os.listdir(args.input):
if '_manifest.md5' in filenames:
md5_manifest = os.path.join(args.input, filenames)
elif'manifest-sha512.txt' in filenames:
sha512_manifest = os.path.join(args.input, filenames)
make_csv(csv_filename)
ms = 0
FrameCount = 0
instantFileSize_byte = 0
instantFileSize_gigs = 0
scan_types = []
matrix_list = []
transfer_list = []
colour_primaries_list = []
color_spaces = []
chroma = []
frame_sizes = []
par_list = []
container_list = []
fps_list = []
sample_rate_list = []
track_count_list = []
interlace_list = []
compression_list = []
pix_fmt_list = []
audio_fmt_list = []
audio_codecid_list = []
audio_codec_list = []
au_bitdepth_list = []
video_codecid_list = []
video_codec_version_list = []
video_codec_profile_list = []
timecode_list = []
channels_list = []
stl = False
subtitle_check = ififuncs.get_digital_object_descriptor(args.input)
if 'STL' in subtitle_check:
stl = True
for source in all_files:
metadata = subprocess.check_output(['mediainfo', '--Output=PBCore2', source])
new_metadata = subprocess.check_output(['mediainfo', '--Output=XML', source])
try:
root = etree.fromstring(metadata)
new_root = etree.fromstring(new_metadata)
except lxml.etree.XMLSyntaxError:
print('Windows encoding detected - transforming into utf-8')
root = etree.fromstring(metadata.decode('cp1252').encode('utf-8'))
new_root = etree.fromstring(new_metadata.decode('cp1252').encode('utf-8'))
print(((' - Analysing %s') % source))
pbcore_namespace = root.xpath('namespace-uri(.)')
mediainfo_namespace = new_root.xpath('namespace-uri(.)')
track_type = root.xpath('//ns:essenceTrackType', namespaces={'ns':pbcore_namespace})
new_track_type = new_root.xpath('//ns:track', namespaces={'ns':mediainfo_namespace})
if len(new_track_type) > 0:
for track in new_track_type:
if track.attrib['type'] == 'Video':
audio_only = False
essenceTrackEncodvid = ififuncs.get_metadata(
"ns:Format",
track, mediainfo_namespace
)
#vcodec_attributes = get_attributes(track.getparent(), pbcore_namespace)
#vcodec_attributes = 'TODO'
video_codecid = ififuncs.get_metadata(
"ns:CodecID",
track, mediainfo_namespace
)
video_codec_version = ififuncs.get_metadata(
"ns:Format_Version",
track, mediainfo_namespace
)
video_codec_profile = ififuncs.get_metadata(
"ns:Format_Profile",
track, mediainfo_namespace
)
video_codec_version_list.append(video_codec_version)
video_codec_profile_list.append(video_codec_profile)
elif track.attrib['type'] == 'Audio':
silence = False
essenceTrackEncod_au = ififuncs.get_metadata(
"ns:Format",
track, mediainfo_namespace
)
audio_codec_list.append(essenceTrackEncod_au)
#acodec_attributes = get_attributes(track.getparent(), pbcore_namespace)
audio_codecid = ififuncs.get_metadata(
"ns:CodecID",
track, mediainfo_namespace
)
essenceTrackSampling = ififuncs.get_mediainfo(
'samplerate',
'--inform=Audio;%SamplingRate_String%', source
)
sample_rate_list.append(essenceTrackSampling)
essenceBitDepth_au = ififuncs.get_metadata(
"ns:BitDepth",
track, mediainfo_namespace
)
audio_codecid_list.append(audio_codecid)
au_bitdepth_list.append(essenceBitDepth_au)
channels = ififuncs.get_metadata(
"//ns:Channels",
track, mediainfo_namespace
)
channels_list.append(channels)
if audio_only:
essenceTrackEncodvid = 'n/a'
video_codecid = 'n/a'
video_codec_version = 'n/a'
video_codec_profile = 'n/a'
ScanType = ififuncs.get_metadata(
"//ns:ScanType",
new_root, mediainfo_namespace
)
scan_types.append(ScanType)
matrix_coefficients = ififuncs.get_metadata(
"//ns:matrix_coefficients",
new_root, mediainfo_namespace
)
timecode_source,starting_timecode = get_timecode(pbcore_namespace, root, source)
timecode_list.append(starting_timecode)
matrix_list.append(matrix_coefficients)
transfer_characteris = ififuncs.get_metadata(
"//ns:transfer_characteristics",
new_root, mediainfo_namespace
)
transfer_list.append(transfer_characteris)
colour_primaries = ififuncs.get_metadata(
"//ns:colour_primaries",
new_root, mediainfo_namespace
)
colour_primaries_list.append(colour_primaries)
try:
if audio_only:
FrameCount = 'n/a'
else:
# increment if multiple objects are present
try:
FrameCount += int(ififuncs.get_metadata(
"//ns:FrameCount",
new_root, mediainfo_namespace
))
except ValueError:
# don't increment if multiple values are returned as str
FrameCount = ififuncs.get_metadata(
"//ns:FrameCount",
new_root, mediainfo_namespace
)
except TypeError:
# workaround for silent pic in DCP
FrameCount = 'n/a'
instantFileSize_byte += int(ififuncs.get_metadata(
"//ns:FileSize",
new_root, mediainfo_namespace
))
instantDataRate = round(float(ififuncs.get_mediainfo(
'OverallBitRate', '--inform=General;%OverallBitRate%', source
)) / 1000 / 1000, 2)
instantTracks = ififuncs.get_number_of_tracks(source)
track_count_list.append(instantTracks)
if stl is True:
track_count_list.append('STL sidecar')
ms += ififuncs.get_milliseconds(source)
ColorSpace = ififuncs.get_metadata(
"//ns:ColorSpace",
new_root, mediainfo_namespace
)
color_spaces.append(ColorSpace)
ChromaSubsampling = get_metadata(
"//ns:ChromaSubsampling",
new_root, mediainfo_namespace
)
chroma.append(ChromaSubsampling)
instantMediaty = get_metadata(
"//ns:instantiationMediaType",
root, pbcore_namespace
)
if audio_only:
essenceFrameSize = 'n/a'
else:
essenceFrameSize = get_metadata(
"//ns:essenceTrackFrameSize",
root, pbcore_namespace
)
frame_sizes.append(essenceFrameSize)
PixelAspectRatio = ififuncs.get_metadata(
"//ns:PixelAspectRatio",
new_root, mediainfo_namespace
)
par_list.append(PixelAspectRatio)
general_root = new_root.xpath("//ns:track[@type='General']", namespaces={'ns':mediainfo_namespace})[0]
instantiationStandar = ififuncs.get_metadata(
"ns:Format",
general_root, mediainfo_namespace
)
container_list.append(instantiationStandar)
essenceFrameRate = ififuncs.get_metadata(
"//ns:FrameRate",
new_root, mediainfo_namespace
)
fps_list.append(essenceFrameRate)
essenceAspectRatio = ififuncs.get_mediainfo(
'DAR', '--inform=Video;%DisplayAspectRatio_String%', source
)
Interlacement = ififuncs.get_metadata(
"//ns:ScanOrder",
new_root, mediainfo_namespace
)
# FFV1/MKV seems to have this scanorder metadata here rather than Interlacement
# FFV1/MKV is the only example I've seen so far that behaves like this :|
# It could be that Interlacement is set at a codec level for FFV1, but others are
# declared at the container level..
if Interlacement == 'n/a':
Interlacement = get_metadata(
"//ns:essenceTrackAnnotation[@annotationType='ScanOrder']",
root, pbcore_namespace
)
interlace_list.append(Interlacement)
Compression_Mode = ififuncs.get_metadata(
"//ns:Compression_Mode",
new_root, mediainfo_namespace
)
colour_range = ififuncs.get_metadata(
"//ns:colour_range",
new_root, mediainfo_namespace
)
# this needs to be clarified as it exists in general and codec
format_version = ififuncs.get_metadata(
"ns:Format_Version",
general_root, mediainfo_namespace
)
app_company_name = ififuncs.get_metadata(
"//ns:Encoded_Application_CompanyName",
new_root, mediainfo_namespace
)
app_name = ififuncs.get_metadata(
"//ns:Encoded_Application_Name",
new_root, mediainfo_namespace
)
app_version = ififuncs.get_metadata(
"//ns:Encoded_Application_Version",
new_root, mediainfo_namespace
)
library_name = ififuncs.get_metadata(
"//ns:Encoded_Library_Name",
new_root, mediainfo_namespace
)
if library_name == 'n/a':
library_name = ififuncs.get_metadata(
"//ns:Encoded_Library",
general_root, mediainfo_namespace
)
library_version = ififuncs.get_metadata(
"//ns:Encoded_Library_Version",
new_root, mediainfo_namespace
)
compression_list.append(Compression_Mode)
instantiationDate_mo = get_metadata(
"//ns:instantiationDate[@dateType='file modification']",
root, pbcore_namespace
)
instantDate_other = 'n/a'
instantDate_type = 'n/a'
pix_fmt = ififuncs.get_ffmpeg_fmt(source, 'video')
pix_fmt_list.append(pix_fmt)
audio_fmt = ififuncs.get_ffmpeg_fmt(source, 'audio')
audio_fmt_list.append(audio_fmt)
essenceBitDepth_vid = ififuncs.get_mediainfo(
'duration', '--inform=Video;%BitDepth%', source
)
if silence:
audio_codecid = 'n/a'
essenceBitDepth_au = 'n/a'
essenceTrackEncod_au = 'n/a'
essenceTrackSampling = 'n/a'
channels = 'n/a'
'''
video_codecid = vcodec_attributes['ref']
video_codecid_list.append(video_codecid)
try:
video_codec_version = vcodec_attributes['version']
except KeyError:
video_codec_version = 'n/a'
try:
video_codec_profile = vcodec_attributes['annotation'][8:]
except KeyError:
video_codec_profile = 'n/a'
'''
metadata_error = ''
metadata_list = [
scan_types,
matrix_list,
transfer_list,
colour_primaries_list,
color_spaces,
chroma,
frame_sizes,
par_list,
container_list,
fps_list,
sample_rate_list,
track_count_list,
interlace_list,
compression_list,
pix_fmt_list,
audio_fmt_list,
audio_codecid_list,
audio_codec_list,
au_bitdepth_list,
video_codecid_list,
video_codec_version_list,
video_codec_profile_list,
channels_list,
timecode_list
]
for i in metadata_list:
if len(set(i)) > 1:
metadata_error += 'WARNING - Your metadata values are not the same for all files - but this could be a false positive if dealing with atomised audio and video as with DCP: %s\n' % set(i)
if args.p:
ififuncs.generate_log(
sipcreator_log,
'EVENT = Metadata mismatch - Your metadata values are not the same for all files - but this could be a false positive if dealing with atomised audio and video as with DCP: %s' % set(i)
)
print(metadata_error)
tc = ififuncs.convert_millis(ms)
instantiationDuratio = ififuncs.convert_timecode(25, tc)
if args.donor:
Donor = args.donor
else:
Donor = ''
Edited_By = user
Date_Created = ''
Date_Last_Modified = ''
Film_Or_Tape = 'Digital AV Object'
Date_Of_Donation = ''
if args.reproduction_creator:
reproduction_creator = args.reproduction_creator
else:
reproduction_creator = ''
if args.acquisition_type:
if acquisition_type == 'Reproduction':
Date_Of_Donation = instantiationDate_mo.split('T')[0]
# if a reproduction, then there's no Donor/transfer of title.
Donor = 'n/a'
else:
Date_Of_Donation = args.donation_date
Habitat = ''
backup_habitat = ''
Type_Of_Deposit = acquisition_type
if args.depositor_reference:
Depositor_Reference = args.depositor_reference
else:
Depositor_Reference = ''
Master_Viewing = 'Preservation Object'
Language_Version = ''
Condition_Rating = ''
Companion_Elements = ''
TTape_Origin = args.parent
EditedNew = user
FIO = 'In'
CollectionTitle = ''
Created_By = user
instantTimeStart = 'n/a'
instantFileSize_gigs = round(
float(instantFileSize_byte) / 1024 / 1024 / 1024, 3
)
instantColors = 'n/a'
instantLanguage = 'n/a'
instantAltMo = 'n/a'
instantiationChanCon = 'n/a'
'''
no idea why these are here
colour_range = colour_range
format_version = format_version
'''
TimeCode_FirstFrame = process_mixed_values(timecode_list)
pix_fmt = process_mixed_values(pix_fmt_list)
audio_fmt = process_mixed_values(audio_fmt_list)
instantTracks = process_mixed_values(track_count_list)
TimeCode_Source = timecode_source
reproduction_reason = ''
dig_object_descrip = ififuncs.get_digital_object_descriptor(args.input)
if 'STL' in dig_object_descrip:
dig_object_descrip = 'AS-11 package'
dcp_check = ififuncs.find_cpl(args.input)
if dcp_check is not None:
essenceFrameSize, ChromaSubsampling, ColorSpace, FrameCount, essenceAspectRatio, instantiationDuratio, PixelAspectRatio, ScanType, dig_object_descrip, instantTracks, instantDataRate, essenceBitDepth_vid, instantMediaty = check_dcp(dcp_check)
ififuncs.append_csv(csv_filename, [
Reference_Number,
Donor,
Edited_By,
Date_Created,
Date_Last_Modified,
Film_Or_Tape,
Date_Of_Donation,
Accession_Number,
Habitat,
backup_habitat,
TTape_Origin,
Type_Of_Deposit,
Depositor_Reference,
Master_Viewing,
Language_Version,
Condition_Rating,
Companion_Elements,
EditedNew,
FIO,
CollectionTitle,
Created_By,
instantiationIdentif,
instantDate_other,
instantDate_type,
instantiationDate_mo,
instantiationStandar,
instantMediaty,
instantFileSize_byte,
instantFileSize_gigs,
instantTimeStart,
instantDataRate,
instantTracks,
instantColors,
instantLanguage,
instantAltMo,
essenceTrackEncodvid,
essenceFrameRate,
essenceTrackSampling,
essenceBitDepth_vid,
essenceFrameSize,
essenceAspectRatio,
essenceTrackEncod_au,
essenceBitDepth_au,
instantiationDuratio,
instantiationChanCon,
PixelAspectRatio,
FrameCount,
ColorSpace,
ChromaSubsampling,
ScanType,
Interlacement,
Compression_Mode,
colour_primaries,
transfer_characteris,
matrix_coefficients,
pix_fmt,
audio_fmt,
audio_codecid,
video_codecid,
video_codec_version,
video_codec_profile,
channels,
colour_range,
format_version,
TimeCode_FirstFrame,
TimeCode_Source,
app_company_name,
app_name,
app_version,
library_name,
library_version,
reproduction_creator,
reproduction_reason,
dig_object_descrip,
])
if args.p:
ififuncs.generate_log(
sipcreator_log,
'EVENT = Metadata extraction - eventDetail=Technical record creation using PBCore, eventOutcome=%s, agentName=makepbcore' % (csv_filename))
ififuncs.generate_log(
sipcreator_log,
'EVENT = makepbcore.py finished')
ififuncs.checksum_replace(md5_manifest, sipcreator_log, 'md5')
ififuncs.checksum_replace(sha512_manifest, sipcreator_log, 'sha512')
ififuncs.manifest_update(md5_manifest, csv_filename)
print((' - Updating %s with %s' % (md5_manifest, csv_filename)))
ififuncs.sha512_update(sha512_manifest, csv_filename)
print((' - Updating %s with %s' % (sha512_manifest, csv_filename)))
print(metadata_error)
if __name__ == '__main__':
main(sys.argv[1:])