dir_files = os.listdir(root)
if not webm_fixed_log in dir_files:
- print source
+ print(source)
self.fix_webm(source)
f = open(root + os.sep + webm_fixed_log, 'w')
f.close()
dest_ext = os.path.splitext(file)[1][1:]
if dest_ext == 'mp3':
dest = root + os.sep + file
- print dest
+ print(dest)
self.fix_mp3(source, dest)
f = open(root + os.sep + mp3_fixed_log, 'w')
f.close()
try:
tmp_file = self.tmp_dir + 'out.webm '
command = 'ffmpeg -loglevel 0 -i "'+ path + '" -vcodec libvpx -vb 500k -acodec libvorbis -aq 7 -f webm -y "' + tmp_file + '" > /dev/null'
- print command
+ print(command)
os.system(command)
command = 'mv ' + tmp_file + path
os.system(command)
try:
tmp_file = self.tmp_dir + 'out.webm'
command = '/usr/local/bin/ffmpeg -loglevel 0 -i "' + path + '" -vcodec copy -acodec copy -f webm -y "' + tmp_file + '" > /dev/null'
- print command
+ print(command)
os.system(command)
#ebml_obj = EBMLData(tmp_file)
#offset = ebml_obj.get_first_cluster_seconds()
command = '/usr/local/bin/ffmpeg -loglevel 0 -i "' + tmp_file + '" -vcodec copy -acodec copy -f webm -y "' + path + '" > /dev/null'
- print command
+ print(command)
os.system(command)
except:
pass
def fix_mp3(self, source, path):
try:
command = '/usr/local/bin/ffmpeg -loglevel 0 -i "'+ source + '" -vn -aq 6 -y "' + path + '" > /dev/null'
- print command
+ print(command)
os.system(command)
except:
pass
path = os.path.abspath(__file__)
pids = get_pids('python2.6',args=path)
-print datetime.datetime.now()
+print(datetime.datetime.now())
if len(pids) <= 1:
- print 'starting process...'
+ print('starting process...')
f = FixCheckMedia(dir, tmp_dir)
f.process()
- print 'process finished.\n'
+ print('process finished.\n')
else:
- print 'already started !\n'
+ print('already started !\n')
ext = ext[1:]
date_dir = datetime.datetime.fromtimestamp(os.path.getmtime(path))
if ext in self.source_formats and date_dir > self.date_limit:
- print(date_dir)
for format, ffmpeg_args in self.dest_formats.items():
local_file = name + '.' + format
dest = os.path.abspath(root + os.sep + local_file)
ext = ext[1:]
date_dir = datetime.datetime.fromtimestamp(os.path.getmtime(path))
if ext in self.source_formats and date_dir > self.date_limit:
- print(date_dir)
for format, ffmpeg_args in self.dest_formats.items():
local_file = name + '.' + format
dest = os.path.abspath(root + os.sep + local_file)