-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorefuncs.py
140 lines (120 loc) · 3.46 KB
/
corefuncs.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
#!/usr/bin/env python3
"""
Functions that will be in multiple scripts
Handle things like:
input, output, checksumming, checking that software exists, etc.
"""
import os
import hashlib
import sys
import subprocess
from nulrdcscripts.vproc.params import args
def input_check():
"""
Checks if input was provided and if it is a directory that exists
"""
if args.input_path:
indir = args.input_path
else:
print("No input provided, using current directory as input")
indir = os.getcwd()
if not os.path.isdir(indir):
print("input is not a directory")
quit()
return indir
def output_check(indir):
"""
Checks if output was provided and if it is a directory that exists
If no output is provided, output folder will default to input
"""
if args.output_path:
outdir = args.output_path
else:
print("Output not specified. Using input directory as Output directory")
outdir = indir
if not os.path.isdir(outdir):
print("output is not a directory")
quit()
return outdir
def hashlib_md5(filename):
"""
Uses hashlib to return an MD5 checksum of an input filename
Credit: IFI scripts
"""
read_size = 0
last_percent_done = 0
chksm = hashlib.md5()
total_size = os.path.getsize(filename)
with open(filename, "rb") as f:
while True:
# 2**20 is for reading the file in 1 MiB chunks
buf = f.read(2**20)
if not buf:
break
read_size += len(buf)
chksm.update(buf)
percent_done = 100 * read_size / total_size
if percent_done > last_percent_done:
sys.stdout.write("[%d%%]\r" % percent_done)
sys.stdout.flush()
last_percent_done = percent_done
md5_output = chksm.hexdigest()
return md5_output
def mediaconch_policy_exists(policy_path):
"""
checks that the specified mediaconch policy exists
"""
if not os.path.isfile(policy_path):
print("unable to find mediaconch policy:", policy_path)
print("Check if file exists before running")
quit()
def ffprobe_check():
"""
checks that ffprobe exists by running its -version command
"""
try:
subprocess.check_output([args.ffprobe_path, "-version"]).decode(
"ascii"
).rstrip().splitlines()[0].split()[2]
except:
print("Error locating ffprobe")
quit()
def mediaconch_check():
"""
checks that mediaconch exists by running its -v command
"""
try:
subprocess.check_output([args.mediaconch_path, "-v"]).decode(
"ascii"
).rstrip().splitlines()[0]
except:
print("Error locating mediaconch")
quit()
def qcli_check():
"""
checks that qcli exists by running its -version command
"""
try:
subprocess.check_output([args.qcli_path, "-version"]).decode(
"ascii"
).rstrip().splitlines()[0]
except:
print("Error locating qcli")
quit()
def get_ffmpeg_version():
"""
Returns the version of ffmpeg
"""
ffmpeg_version = "ffmpeg"
try:
ffmpeg_version = (
subprocess.check_output([args.ffmpeg_path, "-version"])
.decode("ascii")
.rstrip()
.splitlines()[0]
.split()[2]
)
except:
print("Error getting ffmpeg version")
quit()
return ffmpeg_version