yt-dlc/youtube_dl/extractor/instagram.py

40 lines
1.3 KiB
Python
Raw Normal View History

2014-02-10 19:24:12 +00:00
from __future__ import unicode_literals
2013-07-01 19:08:54 +00:00
import re
from .common import InfoExtractor
2014-02-10 19:24:12 +00:00
2013-07-01 19:08:54 +00:00
class InstagramIE(InfoExtractor):
2014-02-10 19:24:12 +00:00
_VALID_URL = r'http://instagram\.com/p/(?P<id>.*?)/'
2013-07-01 19:08:54 +00:00
_TEST = {
2014-02-10 19:24:12 +00:00
'url': 'http://instagram.com/p/aye83DjauH/?foo=bar#abc',
'md5': '0d2da106a9d2631273e192b372806516',
'info_dict': {
'id': 'aye83DjauH',
'ext': 'mp4',
'uploader_id': 'naomipq',
'title': 'Video by naomipq',
'description': 'md5:1f17f0ab29bd6fe2bfad705f58de3cb8',
2013-07-01 19:08:54 +00:00
}
}
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
2014-02-10 19:24:12 +00:00
video_id = mobj.group('id')
2013-07-01 19:08:54 +00:00
webpage = self._download_webpage(url, video_id)
uploader_id = self._search_regex(r'"owner":{"username":"(.+?)"',
2014-02-10 19:24:12 +00:00
webpage, 'uploader id', fatal=False)
desc = self._search_regex(r'"caption":"(.*?)"', webpage, 'description',
fatal=False)
2013-07-01 19:08:54 +00:00
2014-02-10 19:24:12 +00:00
return {
'id': video_id,
'url': self._og_search_video_url(webpage, secure=False),
'ext': 'mp4',
'title': 'Video by %s' % uploader_id,
'thumbnail': self._og_search_thumbnail(webpage),
2014-02-10 19:24:12 +00:00
'uploader_id': uploader_id,
'description': desc,
2014-02-10 19:24:12 +00:00
}