diff options
Diffstat (limited to 'yt_dlp/extractor/vice.py')
-rw-r--r-- | yt_dlp/extractor/vice.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/yt_dlp/extractor/vice.py b/yt_dlp/extractor/vice.py index 8a7126853..1a2d667e7 100644 --- a/yt_dlp/extractor/vice.py +++ b/yt_dlp/extractor/vice.py @@ -302,12 +302,6 @@ class ViceArticleIE(ViceBaseIE): if vice_url: return _url_res(vice_url, ViceIE.ie_key()) - embed_code = self._search_regex( - r'embedCode=([^&\'"]+)', body, - 'ooyala embed code', default=None) - if embed_code: - return _url_res('ooyala:%s' % embed_code, 'Ooyala') - youtube_url = YoutubeIE._extract_url(body) if youtube_url: return _url_res(youtube_url, YoutubeIE.ie_key()) |