youtube-dl

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

commit dbb25af657166108e7afcd4e1ff197e2a5644724
parent fe4bfe36e148c0e1d3180a2992503536b4b4f84b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 25 Nov 2017 23:08:46 +0700

[tnaflix] Don't modify download URLs (closes #14811)

Diffstat:
Myoutube_dl/extractor/tnaflix.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tnaflix.py b/youtube_dl/extractor/tnaflix.py @@ -91,7 +91,8 @@ class TNAFlixNetworkBaseIE(InfoExtractor): formats = [] def extract_video_url(vl): - return re.sub(r'speed=\d+', 'speed=', unescapeHTML(vl.text)) + # Any URL modification now results in HTTP Error 403: Forbidden + return unescapeHTML(vl.text) video_link = cfg_xml.find('./videoLink') if video_link is not None: