mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 08:34:32 +01:00
Added warning when content is not available in region
This commit is contained in:
parent
27ac096e8b
commit
ca2b76e819
@ -181,14 +181,23 @@ class GaanaIE(GaanaBaseIE):
|
||||
self._set_cookie(self._BASE_URL, 'PHPSESSID', 'val')
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
|
||||
data = re.findall(r'id="parent-row-(?:song|album|artist|playlist)\d+">(.*?)</span>', webpage)
|
||||
if len(data):
|
||||
data = self._parse_json(data[0], video_id)
|
||||
|
||||
entries = []
|
||||
matchobj = re.findall(r'class="parentnode sourcelist_\d+">(.*?)</span>', webpage)
|
||||
matchobj = [self._parse_json(g, video_id) for g in matchobj]
|
||||
entries = []
|
||||
|
||||
if len(matchobj) > 1:
|
||||
for g in matchobj:
|
||||
entries.append(self._create_entry(g, g['id']))
|
||||
data = re.findall(r'id="parent-row-(?:album|artist|playlist)\d+">(.*?)</span>', webpage)
|
||||
data = self._parse_json(data[0], video_id)
|
||||
return self.playlist_result(entries, data['id'], data['title'])
|
||||
else:
|
||||
elif len(matchobj) == 1:
|
||||
return self._create_entry(matchobj[0], matchobj[0]['id'])
|
||||
elif data and not matchobj:
|
||||
return self._create_entry(data, data['id'])
|
||||
else:
|
||||
for mess in re.findall(r'<div.*?class="no-data-message".*?>(.*?)</div>', webpage):
|
||||
print("[WARNING]: %s" % mess)
|
||||
print("Could not download this song.")
|
||||
|
Loading…
Reference in New Issue
Block a user