]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/sunporno.py
[ie/crunchyroll] Fix stream extraction (#10005)
[yt-dlp.git] / yt_dlp / extractor / sunporno.py
index 68051169b974d7bc748238566be1c31734eb8ed7..708873a9566f6da8512f994617c53fd921aefc27 100644 (file)
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
 import re
 
 from .common import InfoExtractor
@@ -36,8 +34,7 @@ def _real_extract(self, url):
         webpage = self._download_webpage(
             'http://www.sunporno.com/videos/%s' % video_id, video_id)
 
-        title = self._html_search_regex(
-            r'<title>([^<]+)</title>', webpage, 'title')
+        title = self._html_extract_title(webpage)
         description = self._html_search_meta(
             'description', webpage, 'description')
         thumbnail = self._html_search_regex(
@@ -64,7 +61,6 @@ def _real_extract(self, url):
                 'format_id': video_ext,
                 'quality': quality(video_ext),
             })
-        self._sort_formats(formats)
 
         return {
             'id': video_id,