]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/onet.py
[ffmpeg] Cache version data
[yt-dlp.git] / yt_dlp / extractor / onet.py
index 219ac349ed2426bf431d7b69d0c0d7e3c7dfb8ae..95177a21311c969be2d90455f642a7e93df72f62 100644 (file)
@@ -138,7 +138,7 @@ class OnetIE(OnetBaseIE):
     }]
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
+        mobj = self._match_valid_url(url)
         display_id, video_id = mobj.group('display_id', 'id')
 
         webpage = self._download_webpage(url, display_id)
@@ -182,14 +182,9 @@ def _real_extract(self, url):
         video_id = remove_start(current_clip_info['ckmId'], 'mvp:')
         video_name = url_basename(current_clip_info['url'])
 
-        if self.get_param('noplaylist'):
-            self.to_screen(
-                'Downloading just video %s because of --no-playlist' % video_name)
+        if not self._yes_playlist(channel_id, video_name, playlist_label='channel'):
             return self._extract_from_id(video_id, webpage)
 
-        self.to_screen(
-            'Downloading channel %s - add --no-playlist to just download video %s' % (
-                channel_id, video_name))
         matches = re.findall(
             r'<a[^>]+href=[\'"](%s[a-z]+/[0-9a-z-]+/[0-9a-z]+)' % self._URL_BASE_RE,
             webpage)