mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[rtve] Fix the video url
Changing mvod to mvod1 fixes the url, we don't need to add the query.
This commit is contained in:
parent
8fb3ac3649
commit
93540ee10e
@ -6,6 +6,7 @@ import re
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..compat import compat_urlparse
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
struct_unpack,
|
struct_unpack,
|
||||||
remove_end,
|
remove_end,
|
||||||
@ -96,12 +97,10 @@ class RTVEALaCartaIE(InfoExtractor):
|
|||||||
).replace('.net.rtve', '.multimedia.cdn.rtve')
|
).replace('.net.rtve', '.multimedia.cdn.rtve')
|
||||||
video_path = self._download_webpage(
|
video_path = self._download_webpage(
|
||||||
auth_url, video_id, 'Getting video url')
|
auth_url, video_id, 'Getting video url')
|
||||||
# Use mvod.akcdn instead of flash.akamaihd.multimedia.cdn to get
|
# Use mvod1.akcdn instead of flash.akamaihd.multimedia.cdn to get
|
||||||
# the right Content-Length header and the mp4 format
|
# the right Content-Length header and the mp4 format
|
||||||
video_url = (
|
video_url = compat_urlparse.urljoin(
|
||||||
'http://mvod.akcdn.rtve.es/{0}&v=2.6.8'
|
'http://mvod1.akcdn.rtve.es/', video_path)
|
||||||
'&fp=MAC%2016,0,0,296&r=MRUGG&g=OEOJWFXNFGCP'.format(video_path)
|
|
||||||
)
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user