[Twitter/t.co] simple extractor added. modification needed.
This commit is contained in:
parent
d8f97cc1d3
commit
86b868c6a5
|
@ -1268,6 +1268,7 @@ from .twitter import (
|
|||
TwitterIE,
|
||||
TwitterAmplifyIE,
|
||||
TwitterBroadcastIE,
|
||||
TwitterShortenerIE,
|
||||
)
|
||||
from .udemy import (
|
||||
UdemyIE,
|
||||
|
|
|
@ -608,3 +608,11 @@ class TwitterBroadcastIE(TwitterBaseIE, PeriscopeBaseIE):
|
|||
info['formats'] = self._extract_pscp_m3u8_formats(
|
||||
m3u8_url, broadcast_id, m3u8_id, state, width, height)
|
||||
return info
|
||||
|
||||
|
||||
class TwitterShortenerIE(TwitterBaseIE):
|
||||
IE_NAME = 'twitter:shortener'
|
||||
_VALID_URL = r'https?://t.co/'
|
||||
|
||||
def _real_extract(self, url):
|
||||
print(url)
|
Loading…
Reference in New Issue