+ if not video_url.endswith('.f4m'):
+ auth_url = video_url.replace(
+ 'resources/', 'auth/resources/'
+ ).replace('.net.rtve', '.multimedia.cdn.rtve')
+ video_path = self._download_webpage(
+ auth_url, video_id, 'Getting video url')
+ # Use mvod.akcdn instead of flash.akamaihd.multimedia.cdn to get
+ # the right Content-Length header and the mp4 format
+ video_url = (
+ 'http://mvod.akcdn.rtve.es/{0}&v=2.6.8'
+ '&fp=MAC%2016,0,0,296&r=MRUGG&g=OEOJWFXNFGCP'.format(video_path)
+ )