aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:30:21 +0500
committerM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:30:21 +0500
commitb6ef4029055fdb5c6b27ac0d82d365475f84f32d (patch)
tree9c0a168346658cc199f3ae24e00aee8f5cb33c21
parente1fb24569065e93b0406a0f19a3ab75611a8c968 (diff)
downloadyoutube-dl-b6ef4029055fdb5c6b27ac0d82d365475f84f32d.tar.xz
added an IE for ex.fm
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/exfm.py31
2 files changed, 32 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index 79868aa06..70a2363e4 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -19,6 +19,7 @@ from .dreisat import DreiSatIE
from .ehow import EHowIE
from .eighttracks import EightTracksIE
from .escapist import EscapistIE
+from .exfm import ExfmIE
from .facebook import FacebookIE
from .flickr import FlickrIE
from .freesound import FreesoundIE
diff --git a/youtube_dl/extractor/exfm.py b/youtube_dl/extractor/exfm.py
new file mode 100644
index 000000000..cc0758b96
--- /dev/null
+++ b/youtube_dl/extractor/exfm.py
@@ -0,0 +1,31 @@
+import re
+import json
+import time
+
+from .common import InfoExtractor
+
+
+class ExfmIE(InfoExtractor):
+ _VALID_URL = r'(?:http://)?(?:www\.)?ex\.fm/song/([^/]+)'
+ _SOUNDCLOUD_URL_ = r'(?:http://)?(?:www\.)?api\.soundcloud.com/tracks/([^/]+)/stream'
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group(1)
+ info_url = "http://ex.fm/api/v3/song/%s" %(video_id)
+ webpage = self._download_webpage(info_url, video_id)
+ info = json.loads(webpage)
+ song_url = re.match(self._SOUNDCLOUD_URL_,info['song']['url'])
+ if song_url is not None:
+ song_url = song_url.group() + "?client_id=b45b1aa10f1ac2941910a7f0d10f8e28"
+ else:
+ song_url = info['song']['url']
+ return [{
+ 'id': video_id,
+ 'url': song_url,
+ 'ext': 'mp3',
+ 'title': info['song']['title'],
+ 'thumbnail': info['song']['image']['large'],
+ 'uploader': info['song']['artist'],
+ 'view_count': info['song']['loved_count'],
+ }]