Let my HOME alone 1/2
This commit is contained in:
parent
2ae37e902e
commit
a83e45df5e
94 changed files with 328 additions and 58 deletions
20
config/scripts/vidcmp
Executable file
20
config/scripts/vidcmp
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/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))
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue