15 lines
330 B
Python
15 lines
330 B
Python
from subprocess import call
|
|
import os
|
|
import sys
|
|
|
|
rc = call("./destreamer.sh -k -i", sys.argv[1])
|
|
|
|
if rc == 0:
|
|
rc = call("./rename.py"
|
|
|
|
if rc == 0:
|
|
for entry in os.scandir('./vidoes'):
|
|
if os.path.isdir(entry.path) and entry.name not contains 'out':
|
|
rc = call("./process_audio.py"
|
|
print(rc)
|