mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-10 07:43:50 -05:00
Improve swf player URL detection for RTMP (fixes issue #144)
This commit is contained in:
@ -847,7 +847,7 @@ class YoutubeIE(InfoExtractor):
|
|||||||
return
|
return
|
||||||
|
|
||||||
# Attempt to extract SWF player URL
|
# Attempt to extract SWF player URL
|
||||||
mobj = re.search(r'swfConfig.*"(http://.*?watch-.*?\.swf)"', video_webpage)
|
mobj = re.search(r'swfConfig.*"(http://.*?watch.*?-.*?\.swf)"', video_webpage)
|
||||||
if mobj is not None:
|
if mobj is not None:
|
||||||
player_url = mobj.group(1)
|
player_url = mobj.group(1)
|
||||||
else:
|
else:
|
||||||
|
Reference in New Issue
Block a user