1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

[fox] Add metadata extraction

Add series, season number, episode number and episode.
This commit is contained in:
gkoelln 2017-03-25 08:12:25 -05:00 committed by Sergey M
parent e8e4cc5a6a
commit 7aa0ee321b

View File

@ -3,6 +3,7 @@
from .adobepass import AdobePassIE
from ..utils import (
int_or_none,
smuggle_url,
update_url_query,
)
@ -47,9 +48,12 @@ def _real_extract(self, url):
resource = self._get_mvpd_resource('fbc-fox', None, ap_p['videoGUID'], rating)
query['auth'] = self._extract_mvpd_auth(url, video_id, 'fbc-fox', resource)
return {
info = self._search_json_ld(webpage, video_id, fatal=False)
info.update({
'_type': 'url_transparent',
'ie_key': 'ThePlatform',
'url': smuggle_url(update_url_query(release_url, query), {'force_smil_url': True}),
'id': video_id,
}
})
return info