-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.py
141 lines (136 loc) · 3.22 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
#!/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 folder",
)
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(
"--qcli",
action="store",
dest="qcli_path",
default="qcli",
type=str,
help="For setting a custom qcli 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(
"--mixdown",
action="store",
dest="mixdown",
default="copy",
type=str,
help="How the audio streams will be mapped for the access copy. If excluded, this will default to copying the stream configuration of the input. Inputs include: copy, 4to3, and 4to2. 4to3 takes 4 mono tracks and mixes tracks 1&2 to stereo while leaving tracks 3&4 mono. 4to2 takes 4 mono tracks and mixes tracks 1&2 and 3&4 to stereo.",
)
parser.add_argument(
"--slices",
action="store",
dest="ffv1_slice_count",
default="16",
choices=[4, 6, 9, 12, 16, 24, 30],
type=int,
help="Set the FFV1 slice count used by ffmpeg when losslessly transcoding files. Default is 16.",
)
parser.add_argument(
"--skipac",
required=False,
action="store_true",
dest="skip_ac",
help="skip access copy transcoding",
)
parser.add_argument(
"--skipqcli",
required=False,
action="store_true",
dest="skip_qcli",
help="skip generating qc tools report",
)
parser.add_argument(
"--skipspectrogram",
required=False,
action="store_true",
dest="skip_spectrogram",
help="skip generating spectrograms",
)
parser.add_argument(
"--keep_filename",
required=False,
action="store_true",
dest="keep_filename",
help="MKV preservation master will have the same filename as the source MOV file",
)
parser.add_argument(
"--embed_framemd5",
required=False,
action="store_true",
dest="embed_framemd5",
help="remux preservation file to embed framemd5",
)
parser.add_argument(
"--input_policy",
required=False,
action="store",
dest="input_policy",
help="Mediaconch policy for input files",
)
parser.add_argument(
"--output_policy",
required=False,
action="store",
dest="output_policy",
help="Mediaconch policy for output files",
)
parser.add_argument(
"--batch",
"-b",
required=False,
action="store_true",
dest="batch",
help="For batches of video files"
)
args = parser.parse_args()