1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-18 17:59:35 +00:00

[mixcloud] Fix metadata extraction (fixes #3930)

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-10-12 13:06:31 +02:00
parent 3357110a4c
commit b4c3c8c172

View file

@ -70,7 +70,7 @@ class MixcloudIE(InfoExtractor):
raise ExtractorError('Unable to extract track url')
PREFIX = (
r'<div class="cloudcast-play-button-container"'
r'<div class="cloudcast-play-button-container[^"]*?"'
r'(?:\s+[a-zA-Z0-9-]+(?:="[^"]+")?)*?\s+')
title = self._html_search_regex(
PREFIX + r'm-title="([^"]+)"', webpage, 'title')