Browse Source

[orf:radio] Extract series (#20012)

master
Lukas Anzinger 6 years ago
committed by Sergey M
parent
commit
0146c6cde6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/orf.py

+ 2
- 1
youtube_dl/extractor/orf.py View File

@ -176,7 +176,8 @@ class ORFRadioIE(InfoExtractor):
'description': subtitle,
'duration': (info['end'] - info['start']) / 1000,
'timestamp': info['start'] / 1000,
'ext': 'mp3'
'ext': 'mp3',
'series': data.get('programTitle')
}
entries = [extract_entry_dict(t, data['title'], data['subtitle']) for t in data['streams']]


Loading…
Cancel
Save