58 lines
1.5 KiB
Python
58 lines
1.5 KiB
Python
|
# coding: utf-8
|
||
|
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import re
|
||
|
|
||
|
from .common import InfoExtractor
|
||
|
|
||
|
|
||
|
class ClypIE(InfoExtractor):
|
||
|
_VALID_URL = r'https?://(?:www\.)?clyp\.it/(?P<id>[a-z0-9]+)'
|
||
|
|
||
|
_TESTS = [{
|
||
|
'url': 'https://clyp.it/ojz2wfah',
|
||
|
'md5': '1d4961036c41247ecfdcc439c0cddcbb',
|
||
|
'info_dict': {
|
||
|
'id': 'ojz2wfah',
|
||
|
'ext': 'mp3',
|
||
|
'title': 'Krisson80 - bits wip wip',
|
||
|
'description': '#Krisson80BitsWipWip #chiptune\n#wip',
|
||
|
},
|
||
|
}, {
|
||
|
'url': 'https://clyp.it/ojz2wfah',
|
||
|
'only_matching': True,
|
||
|
}]
|
||
|
|
||
|
def _real_extract(self, url):
|
||
|
audio_id = self._match_id(url)
|
||
|
api_url = 'https://api.clyp.it/' + audio_id
|
||
|
metadata = self._download_json(api_url, audio_id)
|
||
|
|
||
|
title = metadata['Title']
|
||
|
|
||
|
description = None
|
||
|
if metadata['Description']: description = metadata['Description']
|
||
|
|
||
|
duration = None
|
||
|
if metadata['Duration']: duration = int(metadata['Duration'])
|
||
|
|
||
|
formats = [
|
||
|
{
|
||
|
'url': metadata['OggUrl'],
|
||
|
'format_id': 'ogg',
|
||
|
'preference': -2
|
||
|
},{
|
||
|
'url': metadata['Mp3Url'],
|
||
|
'format_id': 'mp3',
|
||
|
'preference': -1
|
||
|
}]
|
||
|
|
||
|
return {
|
||
|
'id': audio_id,
|
||
|
'title': title,
|
||
|
'formats': formats,
|
||
|
'description': description,
|
||
|
'duration': duration
|
||
|
}
|