youtube-dl

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

commit eb451334514d77b3e0fd7a63ea99c7c266199ef8
parent 10c0e2d818830df0130a276b7d75a8c09705d892
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  1 May 2014 21:14:21 +0700

[rtmp] Add support for multiple AFM data entries

Diffstat:
Myoutube_dl/downloader/rtmp.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/downloader/rtmp.py b/youtube_dl/downloader/rtmp.py @@ -10,6 +10,7 @@ from .common import FileDownloader from ..utils import ( encodeFilename, format_bytes, + compat_str, ) @@ -127,7 +128,10 @@ class RtmpFD(FileDownloader): basic_args += ['--flashVer', flash_version] if live: basic_args += ['--live'] - if conn: + if isinstance(conn, list): + for entry in conn: + basic_args += ['--conn', entry] + elif isinstance(conn, compat_str): basic_args += ['--conn', conn] args = basic_args + [[], ['--resume', '--skip', '1']][not live and self.params.get('continuedl', False)]