mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
0b9c08b47b
commit
b801cd7179
2 changed files with 24 additions and 10 deletions
|
@ -74,6 +74,7 @@ from .teachable import TeachableIE
|
|||
from .ted import TedEmbedIE
|
||||
from .theplatform import ThePlatformIE
|
||||
from .threeqsdn import ThreeQSDNIE
|
||||
from .tiktok import TikTokIE
|
||||
from .tnaflix import TNAFlixNetworkEmbedIE
|
||||
from .tube8 import Tube8IE
|
||||
from .tunein import TuneInBaseIE
|
||||
|
@ -3756,6 +3757,11 @@ class GenericIE(InfoExtractor):
|
|||
if ruutu_urls:
|
||||
return self.playlist_from_matches(ruutu_urls, video_id, video_title)
|
||||
|
||||
# Look for Tiktok embeds
|
||||
tiktok_urls = TikTokIE._extract_urls(webpage)
|
||||
if tiktok_urls:
|
||||
return self.playlist_from_matches(tiktok_urls, video_id, video_title)
|
||||
|
||||
# Look for HTML5 media
|
||||
entries = self._parse_html5_media_entries(url, webpage, video_id, m3u8_id='hls')
|
||||
if entries:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue