mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 08:29:57 +01:00
Merge pull request #4758 from yan12125/IE_streetvoice
[StreetVoice] Add new extractor
This commit is contained in:
commit
d63528c8c7
@ -409,6 +409,7 @@
|
||||
from .steam import SteamIE
|
||||
from .streamcloud import StreamcloudIE
|
||||
from .streamcz import StreamCZIE
|
||||
from .streetvoice import StreetVoiceIE
|
||||
from .sunporno import SunPornoIE
|
||||
from .swrmediathek import SWRMediathekIE
|
||||
from .syfy import SyfyIE
|
||||
|
36
youtube_dl/extractor/streetvoice.py
Normal file
36
youtube_dl/extractor/streetvoice.py
Normal file
@ -0,0 +1,36 @@
|
||||
# coding: utf-8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from .common import InfoExtractor
|
||||
|
||||
|
||||
class StreetVoiceIE(InfoExtractor):
|
||||
_VALID_URL = r'http://tw.streetvoice.com/[^/]+/songs/(?P<id>[0-9]+)/'
|
||||
_TESTS = [
|
||||
{
|
||||
'url': 'http://tw.streetvoice.com/skippylu/songs/94440/',
|
||||
'md5': '15974627fc01a29e492c98593c2fd472',
|
||||
'info_dict': {
|
||||
'id': '94440',
|
||||
'ext': 'mp3',
|
||||
'title': '輸',
|
||||
'description': '輸 - Crispy脆樂團'
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
def _real_extract(self, url):
|
||||
song_id = self._match_id(url)
|
||||
|
||||
api_url = 'http://tw.streetvoice.com/music/api/song/%s/' % song_id
|
||||
info_dict = self._download_json(api_url, song_id)
|
||||
|
||||
author = info_dict['musician']['name']
|
||||
title = info_dict['name']
|
||||
return {
|
||||
'id': song_id,
|
||||
'ext': 'mp3',
|
||||
'title': title,
|
||||
'url': info_dict['file'],
|
||||
'description': '%s - %s' % (title, author)
|
||||
}
|
Loading…
Reference in New Issue
Block a user