1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-02 22:21:05 +02:00

[hentaistigma] Fix video extractor

This commit is contained in:
nawl 2015-06-28 17:24:00 -06:00
parent 1bbe660dfa
commit 738b926322

View File

@ -32,7 +32,7 @@ def _real_extract(self, url):
wrap_webpage = self._download_webpage(wrap_url, video_id)
video_url = self._html_search_regex(
r'clip:\s*{\s*url: "([^"]*)"', wrap_webpage, 'video url')
r'file:"([^"]+)"', wrap_webpage, 'video url')
return {
'id': video_id,