1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-24 11:11:54 +00:00

extract mpd for single video

This commit is contained in:
nicole trinity 2024-08-01 11:33:20 -04:00
parent 2e31ae21dd
commit 29e60290cf

View file

@ -46,7 +46,7 @@ class La1ereExtractorPageIE(La1ereExrtractorBaseIE):
video_id, playlist_url = self._extract_given_title(webpage, title) video_id, playlist_url = self._extract_given_title(webpage, title)
# get the mpd playlist # get the mpd playlist
formats = self._extract_m3u8_formats(playlist_url, video_id) formats = self._extract_mpd_formats(playlist_url, video_id)
self._sort_formats(formats) self._sort_formats(formats)
return { return {