add real format url to FYPTT

This commit is contained in:
EGA-SUPREMO 2024-04-30 08:17:27 -04:00
parent 73b672a979
commit 16d3268cf9
1 changed files with 16 additions and 6 deletions

View File

@ -1,4 +1,7 @@
from .common import InfoExtractor
from ..utils import escapeHTML
import re
class FYPTTIE(InfoExtractor):
_VALID_URL = r'https?://(?:stream\.|)fyptt\.to/(?P<id>[0-9a-zA-Z]+)(?:|/)'
@ -35,11 +38,22 @@ class FYPTTIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
formats = []
# format_url = self._html_search_regex(r'<span">(.+?)</span>', webpage, 'title')
#format_url = self._html_search_regex(r'<source\s+src="([^"]+)"\s+type="video/mp4">', webpage, 'video URL')
format_url = self._html_search_regex(r'"embedURL":"([^"]+)"', webpage, 'video URL')
# Remove invalid characters using regex
format_url = re.sub(r'\\', '', format_url)
print("format_url")
format_url = self._html_search_regex(r'<source\s+src="(.+?)"\s+type="video/mp4">', webpage, 'format_url')
print(format_url)
webpage_video = self._download_webpage(format_url, video_id)
# format_url = self._html_search_regex(r'<source\s+src="(.+?)"\s+type', webpage, 'format_url')
match = re.search(r'<source\s+src="(.+?)"\s+type', webpage_video)
format_url = match.group(1)
print(match)
formats.append({
'url': format_url,
'format_id': 'default',
@ -47,10 +61,6 @@ class FYPTTIE(InfoExtractor):
title = self._html_search_regex(r'<span class="fl-heading-text">(.+?)</span>', webpage, 'title')
#<video tabindex="-1" class="vjs-tech" id="my-video_html5_api" preload="auto" loop="" autoplay="" src="https://stream.fyptt.to/j9RGIKsg.mp4">
#<source src="https://stream.fyptt.to/j9RGIKsg.mp4" type="video/mp4"></video>
return {
'id': video_id,