mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
[ie/CCMA] Extract 1080p DASH formats (#9130)
Closes #5755 Authored by: seproDev
This commit is contained in:
parent
8e765755f7
commit
4253e3b7f4
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
clean_html,
|
clean_html,
|
||||||
|
determine_ext,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
parse_duration,
|
parse_duration,
|
||||||
parse_resolution,
|
parse_resolution,
|
||||||
|
@ -60,6 +61,7 @@ def _real_extract(self, url):
|
||||||
'http://dinamics.ccma.cat/pvideo/media.jsp', media_id, query={
|
'http://dinamics.ccma.cat/pvideo/media.jsp', media_id, query={
|
||||||
'media': media_type,
|
'media': media_type,
|
||||||
'idint': media_id,
|
'idint': media_id,
|
||||||
|
'format': 'dm',
|
||||||
})
|
})
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
@ -69,6 +71,10 @@ def _real_extract(self, url):
|
||||||
format_url = url_or_none(format_.get('file'))
|
format_url = url_or_none(format_.get('file'))
|
||||||
if not format_url:
|
if not format_url:
|
||||||
continue
|
continue
|
||||||
|
if determine_ext(format_url) == 'mpd':
|
||||||
|
formats.extend(self._extract_mpd_formats(
|
||||||
|
format_url, media_id, mpd_id='dash', fatal=False))
|
||||||
|
continue
|
||||||
label = format_.get('label')
|
label = format_.get('label')
|
||||||
f = parse_resolution(label)
|
f = parse_resolution(label)
|
||||||
f.update({
|
f.update({
|
||||||
|
|
Loading…
Reference in a new issue