[compat, networking] Deprecate old functions (#2861)
Authored by: coletdjnz, pukkandan
This commit is contained in:
parent
227bf1a33b
commit
3d2623a898
176 changed files with 706 additions and 728 deletions
|
|
@ -1,9 +1,6 @@
|
|||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
try_get,
|
||||
unified_timestamp,
|
||||
HEADRequest,
|
||||
)
|
||||
from ..networking import HEADRequest
|
||||
from ..utils import try_get, unified_timestamp
|
||||
|
||||
|
||||
class TelemundoIE(InfoExtractor):
|
||||
|
|
@ -38,7 +35,7 @@ class TelemundoIE(InfoExtractor):
|
|||
|
||||
m3u8_url = self._request_webpage(HEADRequest(
|
||||
redirect_url + '?format=redirect&manifest=m3u&format=redirect&Tracking=true&Embedded=true&formats=MPEG4'),
|
||||
video_id, 'Processing m3u8').geturl()
|
||||
video_id, 'Processing m3u8').url
|
||||
formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4')
|
||||
date = unified_timestamp(try_get(
|
||||
metadata, lambda x: x['props']['initialState']['video']['associatedPlaylists'][0]['videos'][0]['datePublished'].split(' ', 1)[1]))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue