mirror of
https://github.com/UrloMythus/UnHided.git
synced 2026-04-09 02:40:47 +00:00
28 lines
955 B
Python
28 lines
955 B
Python
import re
|
|
from typing import Dict, Any
|
|
from mediaflow_proxy.extractors.base import BaseExtractor, ExtractorError
|
|
|
|
|
|
class StreamtapeExtractor(BaseExtractor):
|
|
"""Streamtape URL extractor."""
|
|
|
|
async def extract(self, url: str, **kwargs) -> Dict[str, Any]:
|
|
"""Extract Streamtape URL."""
|
|
response = await self._make_request(url)
|
|
|
|
# Extract and decode URL
|
|
matches = re.findall(r"id=.*?(?=')", response.text)
|
|
if not matches:
|
|
raise ExtractorError("Failed to extract URL components")
|
|
i = 0
|
|
for i in range(len(matches)):
|
|
if matches[i - 1] == matches[i] and "ip=" in matches[i]:
|
|
final_url = f"https://streamtape.com/get_video?{matches[i]}"
|
|
|
|
self.base_headers["referer"] = url
|
|
return {
|
|
"destination_url": final_url,
|
|
"request_headers": self.base_headers,
|
|
"mediaflow_endpoint": self.mediaflow_endpoint,
|
|
}
|