Skip to content

Commit

Permalink
massqc - adds filename check for DV and m2t
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranjol committed Jul 24, 2020
1 parent 2d0bf83 commit ed9c11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():
else:
for root, _, filenames in os.walk(source):
for filename in filenames:
if filename.endswith(('.mov', '.mkv')):
if filename.endswith(('.mov', '.mkv','.dv', '.m2t')):
if filename[0] != '.':
cmd = [
'qcli',
Expand Down

0 comments on commit ed9c11a

Please sign in to comment.