From 40f5de20d2df5d23cd10881b3dea84ccb2a3d990 Mon Sep 17 00:00:00 2001 From: j Date: Mon, 13 Aug 2018 21:26:24 +0200 Subject: [PATCH] disable chop, not really working yet --- pandora/archive/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 514b29ce..f206de24 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -619,7 +619,7 @@ def chop(video, start, end, subtitles=None): fd.write(subtitles) else: subtitles_f = None - if ext == '.mp4' and settings.CHOP_SUPPORT: + if False and ext == '.mp4' and settings.CHOP_SUPPORT: Chop(video, choped_video, start, end, subtitles_f) if subtitles_f: os.unlink(subtitles_f)