From 82346a55ca8bff5e57c67eb4dcd4b5c6e832638d Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Tue, 12 Nov 2019 00:34:40 -0800 Subject: [PATCH] smart cut: Fix int in ffmpeg args --- common/common/segments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common/segments.py b/common/common/segments.py index f75eb2b..528ba0d 100644 --- a/common/common/segments.py +++ b/common/common/segments.py @@ -489,7 +489,7 @@ def smart_cut_segments(segments, start, end): 'ffmpeg', '-hide_banner', '-loglevel', 'error', # suppress noisy output '-f', 'concat', '-', # read concat config from stdin - '-safe', 0, # trust weird filenames + '-safe', '0', # trust weird filenames '-protocol_whitelist', 'file,pipe', # need to explicitly allow pipe '-c', 'copy', # don't re-encode the actual video '-fflags', '+genpts', # this does something to do with timestamps?