diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-02-23 21:27:56 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-02-23 21:27:56 +0600 |
commit | 80af2b73ab0b51e4416500301948caa71ec39cb8 (patch) | |
tree | 605dde68fda2abb5c09d608206854a8f50557be2 /youtube_dl/extractor | |
parent | 3cc57f96455ce14cc5c72264a25b8d434174f7dd (diff) |
[soundgasm] Clarify extractors' IE_NAMEs
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/soundgasm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/soundgasm.py b/youtube_dl/extractor/soundgasm.py index e11d999f3..26e96a120 100644 --- a/youtube_dl/extractor/soundgasm.py +++ b/youtube_dl/extractor/soundgasm.py @@ -8,6 +8,7 @@ from ..utils import clean_html class SoundgasmIE(InfoExtractor): + IE_NAME = 'soundgasm' _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<user>[0-9a-zA-Z_\-]+)/(?P<title>[0-9a-zA-Z_\-]+)' _TEST = { 'url': 'http://soundgasm.net/u/ytdl/Piano-sample', @@ -41,6 +42,7 @@ class SoundgasmIE(InfoExtractor): } class SoundgasmProfileIE(InfoExtractor): + IE_NAME = 'soundgasm:profile' _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<id>[^/]+)' _TEST = { 'url': 'http://soundgasm.net/u/ytdl', |