dotfiles/config/scripts/vidcmp

19 lines
286 B
Plaintext
Raw Normal View History

2018-06-24 16:28:37 +00:00
#!/usr/bin/env python3
# Compresses video using FFMPEG using
# FFMPEG's reasonable default settings
import os
import sys
import subprocess
files = sys.argv[1:]
remove = False
2021-06-13 09:49:21 +00:00
if "-r" in files:
files.remove("-r")
2018-06-24 16:28:37 +00:00
remove = True
for f in files:
print(os.path.splitext(f))