From: Jaime Marquínez Ferrándiz Date: Fri, 13 Feb 2015 21:25:34 +0000 (+0100) Subject: [postprocessor/ffmpeg] Don't let ffmpeg read from stdin (fixes #4945) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=cffcbc02de504d84e1c2677bb525c00b03e04f53;hp=cffcbc02de504d84e1c2677bb525c00b03e04f53;p=youtube-dl [postprocessor/ffmpeg] Don't let ffmpeg read from stdin (fixes #4945) If you run 'while read aurl ; do youtube-dl --extract-audio "${aurl}"; done < path_to_batch_file' (batch_file contains one url per line) each call to youtube-dl consumed some characters and 'read' would assing to 'aurl' a non valid url, something like 'tube.com/watch?v='. ---