youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit e2b944cf4342a1920da4ec99e2d0e5f5dcf11cc1
parent 3ec05685f73187e974c0304936fb4f5e057dc2f9
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 17 Jan 2014 14:48:15 +0100

Merge branch 'master' of github.com:rg3/youtube-dl

Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -479,6 +479,7 @@ class FFmpegMergerPP(FFmpegPostProcessor): def run(self, info): filename = info['filepath'] args = ['-c', 'copy'] + self._downloader.to_screen(u'[ffmpeg] Merging formats into "%s"' % filename) self.run_ffmpeg_multiple_files(info['__files_to_merge'], filename, args) return True, info