Skip to content

Commit

Permalink
[orf:tvthek] Add support for MPD formats (closes #28672) (#29236)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikuyan authored Jun 16, 2021
1 parent c2350ca commit d156bc8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions youtube_dl/extractor/orf.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ def _real_extract(self, url):
elif ext == 'f4m':
formats.extend(self._extract_f4m_formats(
src, video_id, f4m_id=format_id, fatal=False))
elif ext == 'mpd':
formats.extend(self._extract_mpd_formats(
src, video_id, mpd_id=format_id, fatal=False))
else:
formats.append({
'format_id': format_id,
Expand Down

0 comments on commit d156bc8

Please sign in to comment.