diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-20 11:26:36 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-20 11:26:36 +0200 |
commit | 038243599072cfc33519ffb8e6cacc8c1605de92 (patch) | |
tree | 406a3aa301347e714950956a75d2275e27f937ea /youtube_dl/extractor/exfm.py | |
parent | b390d85d95fd9031668f2ae61b3f5594f4d297a7 (diff) |
[exfm] Add IE_* descriptions
Diffstat (limited to 'youtube_dl/extractor/exfm.py')
-rw-r--r-- | youtube_dl/extractor/exfm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/exfm.py b/youtube_dl/extractor/exfm.py index 81c620531..fe1582d1a 100644 --- a/youtube_dl/extractor/exfm.py +++ b/youtube_dl/extractor/exfm.py @@ -5,6 +5,8 @@ from .common import InfoExtractor class ExfmIE(InfoExtractor): + IE_NAME = u'exfm' + IE_DESC = u'ex.fm' _VALID_URL = r'(?:http://)?(?:www\.)?ex\.fm/song/([^/]+)' _SOUNDCLOUD_URL_ = r'(?:http://)?(?:www\.)?api\.soundcloud.com/tracks/([^/]+)/stream' _TEST = { |