39 lines
761 B
Python
39 lines
761 B
Python
from CachePath import message
|
|
import os
|
|
import subprocess
|
|
|
|
class VideoToolWrapper(object):
|
|
def call(self, *args):
|
|
path = args[-1]
|
|
for tool in self.wrappers:
|
|
try:
|
|
p = subprocess.check_output((tool,) + args)
|
|
except KeyboardInterrupt:
|
|
if self.cleanup:
|
|
self.remove(path)
|
|
raise
|
|
except OSError:
|
|
continue
|
|
except:
|
|
if self.cleanup:
|
|
self.remove(path)
|
|
return False
|
|
return p
|
|
return False
|
|
|
|
def remove(self, path):
|
|
try:
|
|
os.unlink(path)
|
|
except:
|
|
pass
|
|
|
|
class VideoTranscodeWrapper(VideoToolWrapper):
|
|
def __init__(self):
|
|
self.wrappers = ['avconv', 'ffmpeg']
|
|
self.cleanup = True
|
|
|
|
class VideoProbeWrapper(VideoToolWrapper):
|
|
def __init__(self):
|
|
self.wrappers = ['avprobe', 'ffprobe']
|
|
self.cleanup = False
|