From c970677a762c39dbadb8aa0e956e618d8d8dc6e7 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Sun, 20 Oct 2019 01:04:46 +1000 Subject: [PATCH] full cut: Fix a typo --- 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 fd326b1..950c212 100644 --- a/common/common/segments.py +++ b/common/common/segments.py @@ -407,7 +407,7 @@ def full_cut_segments(segments, start, end, encode_args): input_feeder = None try: ffmpeg = ffmpeg_cut_stdin(cut_start, cut_end, encode_args) - input_feeder = gevent.spawn(feed_input, ffmpeg.stdin) + input_feeder = gevent.spawn(feed_input, segments, ffmpeg.stdin) # stream the output until it is closed for chunk in read_chunks(ffmpeg.stdout): yield chunk