mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-23 00:54:31 +01:00
Add test for podcast with episode descriptions.
Test runs successfully, but does not yet test for the existence of episode descriptions.
This commit is contained in:
parent
d84347f367
commit
7f11e9a6a8
@ -213,6 +213,20 @@ class GenericIE(InfoExtractor):
|
|||||||
},
|
},
|
||||||
'playlist_mincount': 100,
|
'playlist_mincount': 100,
|
||||||
},
|
},
|
||||||
|
# Podcast RSS feed with episode descriptions
|
||||||
|
{
|
||||||
|
'url': 'http://friendsatthetable.net/rss',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'http://friendsatthetable.net/rss',
|
||||||
|
'description': 'Friends at the Table is an actual play podcast about critical worldbuilding, smart characterization, and fun interaction between good friends. Find us (and a listener guide) @Friends_Table on Twitter.',
|
||||||
|
'title': 'Friends at the Table',
|
||||||
|
'_type': 'playlist',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 200,
|
||||||
|
'entries': [{
|
||||||
|
'description': True,
|
||||||
|
}],
|
||||||
|
},
|
||||||
# SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
|
# SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
|
||||||
{
|
{
|
||||||
'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
|
'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
|
||||||
|
Loading…
Reference in New Issue
Block a user