mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[kickstarter] Eliminate the warning message and add_ie
This commit is contained in:
parent
b286f201a8
commit
abe694ca95
@ -2,6 +2,7 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..utils import smuggle_url
|
||||||
|
|
||||||
|
|
||||||
class KickStarterIE(InfoExtractor):
|
class KickStarterIE(InfoExtractor):
|
||||||
@ -27,7 +28,8 @@ class KickStarterIE(InfoExtractor):
|
|||||||
'uploader_id': 'pebble',
|
'uploader_id': 'pebble',
|
||||||
'uploader': 'Pebble Technology',
|
'uploader': 'Pebble Technology',
|
||||||
'title': 'Pebble iOS Notifications',
|
'title': 'Pebble iOS Notifications',
|
||||||
}
|
},
|
||||||
|
'add_ie': ['Vimeo'],
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.kickstarter.com/projects/1420158244/power-drive-2000/widget/video.html',
|
'url': 'https://www.kickstarter.com/projects/1420158244/power-drive-2000/widget/video.html',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -52,7 +54,7 @@ def _real_extract(self, url):
|
|||||||
return {
|
return {
|
||||||
'_type': 'url_transparent',
|
'_type': 'url_transparent',
|
||||||
'ie_key': 'Generic',
|
'ie_key': 'Generic',
|
||||||
'url': url,
|
'url': smuggle_url(url, {'to_generic': True}),
|
||||||
'title': title,
|
'title': title,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user