mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-01-08 14:17:54 +01:00
extractor descriptions
This commit is contained in:
parent
01673c67a4
commit
7ae04d81eb
@ -324,7 +324,6 @@
|
|||||||
- **Instagram**
|
- **Instagram**
|
||||||
- **instagram:user**: Instagram user profile
|
- **instagram:user**: Instagram user profile
|
||||||
- **InternetVideoArchive**
|
- **InternetVideoArchive**
|
||||||
- **IOL**: iol.pt sites (tvi archive/stream and maisfutebol)
|
|
||||||
- **IPrima**
|
- **IPrima**
|
||||||
- **iqiyi**: 爱奇艺
|
- **iqiyi**: 爱奇艺
|
||||||
- **Ir90Tv**
|
- **Ir90Tv**
|
||||||
|
@ -8,6 +8,8 @@ import re
|
|||||||
|
|
||||||
|
|
||||||
class IOLIE(InfoExtractor):
|
class IOLIE(InfoExtractor):
|
||||||
|
IE_NAME = 'IOL'
|
||||||
|
IE_DESC = 'iol.pt sites (tvi archive and maisfutebol)'
|
||||||
_VALID_URL = r'https?://[^/]*\.iol\.pt/.*/(?P<id>[0-9a-f]{24})($|\/)'
|
_VALID_URL = r'https?://[^/]*\.iol\.pt/.*/(?P<id>[0-9a-f]{24})($|\/)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://tviplayer.iol.pt/programa/euromilhoes/53c6b3153004dc006243b07b/video/55f878f90cf203f8b03cea6d',
|
'url': 'http://tviplayer.iol.pt/programa/euromilhoes/53c6b3153004dc006243b07b/video/55f878f90cf203f8b03cea6d',
|
||||||
@ -135,6 +137,8 @@ class IOLIE(InfoExtractor):
|
|||||||
|
|
||||||
|
|
||||||
class IOLStreamIE(IOLIE):
|
class IOLStreamIE(IOLIE):
|
||||||
|
IE_NAME = 'IOL:stream'
|
||||||
|
IE_DESC = 'iol.pt stream sites'
|
||||||
_VALID_URL = r'http://tviplayer\.iol\.pt/direto/(?P<id>\S+)'
|
_VALID_URL = r'http://tviplayer\.iol\.pt/direto/(?P<id>\S+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://tviplayer.iol.pt/direto/TVI',
|
'url': 'http://tviplayer.iol.pt/direto/TVI',
|
||||||
|
Loading…
Reference in New Issue
Block a user