From 7044db43bb5b84283afb4a97656c7726c962c0e9 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 22 Dec 2022 16:32:29 +0100 Subject: [PATCH] fix print --- bin/remux_fix_media.py | 20 ++++++++++---------- bin/transcode_nonv.py | 1 - bin/transcode_nv.py | 1 - 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/bin/remux_fix_media.py b/bin/remux_fix_media.py index 9784c40..f5693a6 100644 --- a/bin/remux_fix_media.py +++ b/bin/remux_fix_media.py @@ -28,7 +28,7 @@ class FixCheckMedia(object): 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() @@ -40,7 +40,7 @@ class FixCheckMedia(object): 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() @@ -53,7 +53,7 @@ class FixCheckMedia(object): 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) @@ -65,12 +65,12 @@ class FixCheckMedia(object): 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 @@ -78,7 +78,7 @@ class FixCheckMedia(object): 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 @@ -102,12 +102,12 @@ tmp_dir = sys.argv[-1] 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') diff --git a/bin/transcode_nonv.py b/bin/transcode_nonv.py index 4128b09..ec450a3 100644 --- a/bin/transcode_nonv.py +++ b/bin/transcode_nonv.py @@ -54,7 +54,6 @@ class TelemetaTranscode(object): 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) diff --git a/bin/transcode_nv.py b/bin/transcode_nv.py index 35c27f8..1c0161f 100644 --- a/bin/transcode_nv.py +++ b/bin/transcode_nv.py @@ -53,7 +53,6 @@ class TelemetaTranscode(object): 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) -- 2.39.5