-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.py
149 lines (144 loc) · 3.58 KB
/
params.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
#!/usr/bin/env python3
"""
Argument parser for in-house AJA v210/mov to ffv1/mkv script
"""
import argparse
import sys
parser = argparse.ArgumentParser()
parser.add_argument(
"--input",
"-i",
action="store",
dest="input_path",
type=str,
help="full path to input folder",
)
parser.add_argument(
"--output",
"-o",
action="store",
dest="output_path",
type=str,
help="full path to output csv file for QC results. If not specified this will default to creating a file in the input directory",
)
parser.add_argument(
"--load_inventory",
"-l",
required=False,
nargs="*",
action="store",
dest="source_inventory",
help="Use to specify a CSV inventory. If not specified the script will look in the base folder of the input for CSV inventories. If no inventories are found the script will leave some fields blank.",
)
parser.add_argument(
"--sox",
action="store",
dest="sox_path",
default="sox",
type=str,
help="For setting a custom sox path",
)
parser.add_argument(
"--bwfmetaedit",
action="store",
dest="metaedit_path",
default="bwfmetaedit",
type=str,
help="For setting a custom BWF Metaedit path",
)
parser.add_argument(
"--ffmpeg",
action="store",
dest="ffmpeg_path",
default="ffmpeg",
type=str,
help="For setting a custom ffmpeg path",
)
parser.add_argument(
"--ffprobe",
action="store",
dest="ffprobe_path",
default="ffprobe",
type=str,
help="For setting a custom ffprobe path",
)
parser.add_argument(
"--mediaconch",
action="store",
dest="mediaconch_path",
default="mediaconch",
type=str,
help="For setting a custom mediaconch path",
)
# parser.add_argument('--verbose', required=False, action='store_true', help='view ffmpeg output when transcoding')
parser.add_argument(
"--transcode",
"-t",
required=False,
action="store_true",
dest="transcode",
help="Transcode access files",
)
parser.add_argument(
"--write_metadata",
"-m",
required=False,
action="store_true",
dest="write_bwf_metadata",
help="Write Broadcast WAVE metadata to Preservation file",
)
# parser.add_argument('--reset_timereference', '-r', required=False, action='store_true', dest='reset_timereference', help='Reset the time reference of a BWF file to 00:00:00.000')
parser.add_argument(
"--write_json",
"-j",
required=False,
action="store_true",
dest="write_json",
help="Write metadata to json file",
)
# parser.add_argument('--skipac', required=False, action='store_true', dest='skip_ac', help='skip access copy transcoding')
parser.add_argument(
"--spectrogram",
"-s",
required=False,
action="store_true",
dest="spectrogram",
help="generate spectrograms",
)
parser.add_argument(
"--p_policy",
required=False,
action="store",
dest="input_policy",
help="Mediaconch policy for preservation files",
)
parser.add_argument(
"--a_policy",
required=False,
action="store",
dest="output_policy",
help="Mediaconch policy for access files",
)
parser.add_argument(
"--all",
"-a",
default=False,
required=False,
action="store_true",
dest="all",
help="This is equivalent to using -t -m -j -s",
)
parser.add_argument(
"--skip_coding_history",
default=False,
required=False,
action="store_true",
dest="skip_coding_history",
help="To skip coding history creation",
)
args = parser.parse_args()
if args.all:
args.transcode = True
args.write_bwf_metadata = True
args.write_json = True
args.spectrogram = True