diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-15 04:28:54 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-15 04:28:54 +0800 |
commit | 56f1750049ee04d78d1349617124349bb1309cba (patch) | |
tree | ab7801c84060053af33f98d4b39cd509f68a1578 /youtube_dl/extractor/ministrygrid.py | |
parent | f2159c9815fa056ca1d4ef4a6d1c31c4847b3d47 (diff) |
[tdslifeway] Use the new Brightcove API
Thanks for @remitamine's suggestion.
Diffstat (limited to 'youtube_dl/extractor/ministrygrid.py')
-rw-r--r-- | youtube_dl/extractor/ministrygrid.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ministrygrid.py b/youtube_dl/extractor/ministrygrid.py index 000989873..e48eba3fa 100644 --- a/youtube_dl/extractor/ministrygrid.py +++ b/youtube_dl/extractor/ministrygrid.py @@ -17,11 +17,17 @@ class MinistryGridIE(InfoExtractor): 'id': '3453494717001', 'ext': 'mp4', 'title': 'The Gospel by Numbers', + 'thumbnail': 're:^https?://.*\.jpg', + 'upload_date': '20140410', + 'description': 'Coming soon from T4G 2014!', + 'uploader_id': '2034960640001', + 'timestamp': 1397145591, }, 'params': { # m3u8 download 'skip_download': True, }, + 'add_ie': ['TDSLifeway'], } def _real_extract(self, url): |