From 8b7d928813874de84dfe0e3b99e386736fec2b88 Mon Sep 17 00:00:00 2001 From: gravesducking <219445875+gravesducking@users.noreply.github.com> Date: Fri, 25 Jul 2025 00:21:31 +0900 Subject: [PATCH] [ie/locipo] Add option to skip playlist extraction --- yt_dlp/extractor/locipo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/locipo.py b/yt_dlp/extractor/locipo.py index ebcb2ae906..159859419b 100644 --- a/yt_dlp/extractor/locipo.py +++ b/yt_dlp/extractor/locipo.py @@ -69,7 +69,7 @@ def _get_creative_metadata(self, creative_data): def _real_extract(self, url: str): creative_id, playlist_id = self._match_valid_url(url).group('creative_id', 'playlist_id') # type: ignore - if not playlist_id: + if not playlist_id or self.get_param('noplaylist'): creative_data = self._download_json( f'https://api.locipo.jp/api/v1/creatives/{creative_id}', creative_id,