1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-10 14:36:07 +08:00
youtube-dl/youtube_dl/extractor/piapro.py

64 lines
2.9 KiB
Python
Raw Normal View History

2017-04-20 05:51:23 +08:00
# coding: utf-8
from __future__ import unicode_literals
import re
from datetime import datetime
from ..utils import get_element_by_class
from .common import InfoExtractor
test_partial = {
'md5': 'fe63bb94879189bd9ff7420d0b187352',
'info_dict': {
'artist': 'mothy_悪',
2017-04-20 05:51:23 +08:00
'description': '悪ノ娘のアレンジバージョンです。',
'ext': 'mp3',
'id': 'es7uj48x6bvcbtgy',
'thumbnail': r're:https?://c1\.piapro\.jp/timg/nogoc3x8d4m0j416_20080819185021_0180_1440\.jpg',
'timestamp': 1263600322,
'title': 'velvet mix',
'upload_date': '20100116',
'uploader': 'mothy_悪',
2017-04-20 05:51:23 +08:00
'uploader_url': r're:https?://piapro\.jp/mothy',
'url': 'https://cdn.piapro.jp/mp3_a/es/es7uj48x6bvcbtgy_20100116020522_audition.mp3',
2017-04-20 05:51:23 +08:00
}
}
class PiaproIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?piapro\.jp/(conten)?t/(?P<id>[0-9a-zA-Z]+)'
_TESTS = [dict({'url': 'http://piapro.jp/t/KToM'}, **test_partial),
dict({'url': 'http://piapro.jp/content/es7uj48x6bvcbtgy'}, **test_partial)]
def _real_extract(self, url):
url_id = self._match_id(url)
webpage = self._download_webpage(url, url_id)
if re.search(r'/content/([0-9a-zA-Z]+)', url):
content_id = url_id
else:
content_id = self._search_regex(r'''contentId\s*:\s*['"]([0-9a-zA-Z]+?)['\"]''', webpage, 'content_id')
create_date = self._search_regex(r'''createDate\s*:\s*['"]([0-9]{14})['"]''', webpage, 'create_date', fatal=False) or \
self._search_regex(r'''["']https?://songle\.jp/songs/piapro\.jp.*([0-9]{14})['"]''', webpage, 'create_date')
uploader = get_element_by_class("cd_user-name", webpage)
try:
uploader_without_honorific = re.match('.+(?=さん)', uploader).group(0)
except IndexError:
uploader_without_honorific = None
except AttributeError:
uploader_without_honorific = uploader
2017-04-20 05:51:23 +08:00
return {
'artist': uploader_without_honorific or uploader,
'description': get_element_by_class("cd_dtl_cap", webpage),
2017-04-20 05:51:23 +08:00
'id': content_id,
'thumbnail': self._search_regex(r'(https?://c1\.piapro\.jp/timg/.+?_1440\.jpg)', webpage, 'thumbnail', fatal=False),
'timestamp': int(datetime.strptime(create_date, '%Y%m%d%H%M%S').strftime("%s")),
'title': get_element_by_class("works-title", webpage) or self._html_search_regex(r'<title>[^<]*「(.*?)」<', webpage, 'title', fatal=False),
'uploader': uploader_without_honorific or uploader,
# 'uploader_url': self._search_regex(r'<a\s+.*?href="(https?://piapro\.jp/.+?)"', cls_userbar_name, 'uploader_url', fatal=False), # FIXME
'url': 'http://cdn.piapro.jp/mp3_a/{}/{}_{}_audition.mp3'.format(content_id[:2], content_id, create_date)
2017-04-20 05:51:23 +08:00
}