mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 19:37:25 +00:00
[mixcloud] improved extraction of user description
This commit is contained in:
parent
dcaf00fb3e
commit
6d67169509
@ -195,12 +195,10 @@ class MixcloudUserIE(InfoExtractor):
|
||||
|
||||
def _get_user_description(self, page_content):
|
||||
return self._html_search_regex(
|
||||
r'<div class="description-text">.*?<p>(?P<description>.*?)</p></div></div></div>',
|
||||
r'<div class="description-text">.*?<p>(.*?)</p></div></div></div>',
|
||||
page_content,
|
||||
"user description",
|
||||
group="description",
|
||||
fatal=False,
|
||||
default="")
|
||||
fatal=False)
|
||||
|
||||
def _get_username(self, page_content):
|
||||
return self._og_search_title(page_content)
|
||||
|
Loading…
Reference in New Issue
Block a user