1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 14:41:04 +02:00

8tracks: Ignore hashes

This commit is contained in:
Philipp Hagemeister 2013-01-27 04:15:12 +01:00
parent da4de959df
commit 25580f3251

View File

@ -3861,7 +3861,7 @@ def _real_extract(self, url):
class EightTracksIE(InfoExtractor):
IE_NAME = '8tracks'
_VALID_URL = r'https?://8tracks.com/(?P<user>[^/]+)/(?P<id>[^/]+)'
_VALID_URL = r'https?://8tracks.com/(?P<user>[^/]+)/(?P<id>[^/#]+)(?:#.*)?$'
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)