Quellcode durchsuchen

fix wrong end times (duration instead of target).. how long has this been bugged?

David vor 9 Jahren
Ursprung
Commit
7a6d1005f9
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      back/tasks.py

+ 1 - 1
back/tasks.py

@@ -165,7 +165,7 @@ def crop_video(in_fname,start_time,end_time,censuras,out_fname):
 
     process += [
                 '-ss', str(start_time),
-                '-t', str(end_time),
+                '-to', str(end_time),
                 '-c:v', 'copy',
                 '-movflags', '+faststart',
                 '-f', 'mp4', out_fname