youtube-dl

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

commit f9622868e722a1863de257c7f3cbc3076eea6e83
parent 37768f92422c2cf61a961dbaf54d61dabd364506
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun,  7 Aug 2016 11:14:15 +0100

[bbc] preserve format_id backward compatibility

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

diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py @@ -336,7 +336,7 @@ class BBCCoUkIE(InfoExtractor): formats.extend(self._extract_f4m_formats( href, programme_id, f4m_id=format_id, fatal=False)) else: - if bitrate: + if not service and not supplier and bitrate: format_id += '-%d' % bitrate fmt = { 'format_id': format_id,