19 lines
286 B
Python
Executable file
19 lines
286 B
Python
Executable file
#!/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
|
|
if "-r" in files:
|
|
files.remove("-r")
|
|
remove = True
|
|
|
|
for f in files:
|
|
print(os.path.splitext(f))
|