Skip to content

Commit

Permalink
merge bandcamp
Browse files Browse the repository at this point in the history
  • Loading branch information
blackjack4494 committed Oct 7, 2020
2 parents b777004 + 03edd54 commit 962cc3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions youtube_dlc/extractor/bandcamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def _real_extract(self, url):
webpage, 'track info', default='{}')

track_info = self._parse_json(trackinfo_block, title)

if track_info:
file_ = track_info.get('file')
if isinstance(file_, dict):
Expand All @@ -115,7 +114,7 @@ def _real_extract(self, url):
'acodec': ext,
'abr': int_or_none(abr_str),
})
track = track_info.get('title')

track_id = str_or_none(track_info.get('track_id') or track_info.get('id'))
track_number = int_or_none(track_info.get('track_num'))
duration = float_or_none(track_info.get('duration'))
Expand All @@ -126,6 +125,7 @@ def extract(key):
webpage, key, default=None, group='value')
return data.replace(r'\"', '"').replace('\\\\', '\\') if data else data

track = extract('title')
artist = extract('artist')
album = extract('album_title')
timestamp = unified_timestamp(
Expand Down

0 comments on commit 962cc3e

Please sign in to comment.