youtube-dl

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

commit 8334637f4ac4a1aeddc6f05131be1c42ea6761e1
parent b0ba11cc64656c09f349117fffa9739dcbb2541e
Author: aystroganov@gmail.com <aystroganov@gmail.com>
Date:   Wed, 13 Apr 2016 21:30:32 +1000

Make tbr field 'int' rather than 'tuple'

Closes #9180.

Diffstat:
Myoutube_dl/extractor/brightcove.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py @@ -340,7 +340,7 @@ class BrightcoveLegacyIE(InfoExtractor): ext = 'flv' if ext is None: ext = determine_ext(url) - tbr = int_or_none(rend.get('encodingRate'), 1000), + tbr = int_or_none(rend.get('encodingRate'), 1000) a_format = { 'format_id': 'http%s' % ('-%s' % tbr if tbr else ''), 'url': url,