mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[urort] Add date
This commit is contained in:
parent
4c89bbd22c
commit
0dae5083f1
@ -6,6 +6,7 @@
|
|||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
compat_urllib_parse,
|
compat_urllib_parse,
|
||||||
|
unified_strdate,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -24,6 +25,7 @@ class UrortIE(InfoExtractor):
|
|||||||
'like_count': int,
|
'like_count': int,
|
||||||
'uploader': 'Gerilja',
|
'uploader': 'Gerilja',
|
||||||
'uploader_id': 'Gerilja',
|
'uploader_id': 'Gerilja',
|
||||||
|
'upload_date': '20100323',
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
'matchtitle': '^The Bomb$', # To test, we want just one video
|
'matchtitle': '^The Bomb$', # To test, we want just one video
|
||||||
@ -37,6 +39,7 @@ def _real_extract(self, url):
|
|||||||
fstr = compat_urllib_parse.quote("InternalBandUrl eq '%s'" % playlist_id)
|
fstr = compat_urllib_parse.quote("InternalBandUrl eq '%s'" % playlist_id)
|
||||||
json_url = 'http://urort.p3.no/breeze/urort/TrackDtos?$filter=' + fstr
|
json_url = 'http://urort.p3.no/breeze/urort/TrackDtos?$filter=' + fstr
|
||||||
songs = self._download_json(json_url, playlist_id)
|
songs = self._download_json(json_url, playlist_id)
|
||||||
|
print(songs[0])
|
||||||
|
|
||||||
entries = [{
|
entries = [{
|
||||||
'id': '%d-%s' % (s['BandId'], s['$id']),
|
'id': '%d-%s' % (s['BandId'], s['$id']),
|
||||||
@ -47,6 +50,7 @@ def _real_extract(self, url):
|
|||||||
'uploader': s.get('BandName', playlist_id),
|
'uploader': s.get('BandName', playlist_id),
|
||||||
'like_count': s.get('LikeCount'),
|
'like_count': s.get('LikeCount'),
|
||||||
'thumbnail': 'http://urort.p3.no/cloud/images/%s' % s['Image'],
|
'thumbnail': 'http://urort.p3.no/cloud/images/%s' % s['Image'],
|
||||||
|
'upload_date': unified_strdate(s.get('Released')),
|
||||||
} for s in songs]
|
} for s in songs]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user