forked from 0x2620/pandora
disable chop, not really working yet
This commit is contained in:
parent
708f3d8927
commit
40f5de20d2
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ def chop(video, start, end, subtitles=None):
|
||||||
fd.write(subtitles)
|
fd.write(subtitles)
|
||||||
else:
|
else:
|
||||||
subtitles_f = None
|
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)
|
Chop(video, choped_video, start, end, subtitles_f)
|
||||||
if subtitles_f:
|
if subtitles_f:
|
||||||
os.unlink(subtitles_f)
|
os.unlink(subtitles_f)
|
||||||
|
|
Loading…
Reference in a new issue