youtube-dl

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

commit d19600df07128c73ef7242af7e1cd8c819951aba
parent 641e86e3cf751f1050ca331b9d13152bd0e18558
Author: Alexander Seiler <seileralex@gmail.com>
Date:   Sat, 24 Nov 2018 16:14:27 +0100

[joj] Fix extraction (closes #18280)


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

diff --git a/youtube_dl/extractor/joj.py b/youtube_dl/extractor/joj.py @@ -61,7 +61,7 @@ class JojIE(InfoExtractor): bitrates = self._parse_json( self._search_regex( - r'(?s)bitrates\s*=\s*({.+?});', webpage, 'bitrates', + r'(?s)(?:src|bitrates)\s*=\s*({.+?});', webpage, 'bitrates', default='{}'), video_id, transform_source=js_to_json, fatal=False)