mirror of
https://github.com/doms9/iptv.git
synced 2026-06-16 12:56:26 +02:00
Compare commits
No commits in common. "1394bf91d009eade4a9965b7b1b77ef795417922" and "a75656c9ec8850b62c40c33aa2ed99a771f10201" have entirely different histories.
1394bf91d0
...
a75656c9ec
7 changed files with 119117 additions and 118375 deletions
2144
M3U8/TV.m3u8
2144
M3U8/TV.m3u8
File diff suppressed because it is too large
Load diff
232981
M3U8/TV.xml
232981
M3U8/TV.xml
File diff suppressed because one or more lines are too long
2144
M3U8/events.m3u8
2144
M3U8/events.m3u8
File diff suppressed because it is too large
Load diff
|
|
@ -11,6 +11,7 @@ from scrapers import (
|
||||||
footfast,
|
footfast,
|
||||||
fsports,
|
fsports,
|
||||||
istreameast,
|
istreameast,
|
||||||
|
mainportal,
|
||||||
ovogoal,
|
ovogoal,
|
||||||
roxie,
|
roxie,
|
||||||
shark,
|
shark,
|
||||||
|
|
@ -67,7 +68,8 @@ async def main() -> None:
|
||||||
httpx_tasks = [
|
httpx_tasks = [
|
||||||
asyncio.create_task(fawa.scrape()),
|
asyncio.create_task(fawa.scrape()),
|
||||||
asyncio.create_task(istreameast.scrape()),
|
asyncio.create_task(istreameast.scrape()),
|
||||||
asyncio.create_task(ovogoal.scrape()),
|
# asyncio.create_task(mainportal.scrape()),
|
||||||
|
# asyncio.create_task(ovogoal.scrape()),
|
||||||
asyncio.create_task(shark.scrape()),
|
asyncio.create_task(shark.scrape()),
|
||||||
asyncio.create_task(streamcenter.scrape()),
|
asyncio.create_task(streamcenter.scrape()),
|
||||||
asyncio.create_task(streamsgate.scrape()),
|
asyncio.create_task(streamsgate.scrape()),
|
||||||
|
|
@ -98,6 +100,7 @@ async def main() -> None:
|
||||||
| footfast.urls
|
| footfast.urls
|
||||||
| fsports.urls
|
| fsports.urls
|
||||||
| istreameast.urls
|
| istreameast.urls
|
||||||
|
| mainportal.urls
|
||||||
| ovogoal.urls
|
| ovogoal.urls
|
||||||
| roxie.urls
|
| roxie.urls
|
||||||
| shark.urls
|
| shark.urls
|
||||||
|
|
|
||||||
191
M3U8/scrapers/mainportal.py
Normal file
191
M3U8/scrapers/mainportal.py
Normal file
|
|
@ -0,0 +1,191 @@
|
||||||
|
import asyncio
|
||||||
|
import json
|
||||||
|
import re
|
||||||
|
from functools import partial
|
||||||
|
from urllib.parse import urljoin
|
||||||
|
|
||||||
|
from .utils import Cache, Time, get_logger, leagues, network
|
||||||
|
|
||||||
|
log = get_logger(__name__)
|
||||||
|
|
||||||
|
urls: dict[str, dict[str, str | float]] = {}
|
||||||
|
|
||||||
|
TAG = "MP66"
|
||||||
|
|
||||||
|
CACHE_FILE = Cache(TAG, exp=10_800)
|
||||||
|
|
||||||
|
API_URLS = {
|
||||||
|
sport: f"https://api.{sport.lower()}24all.ir"
|
||||||
|
for sport in [
|
||||||
|
"MLB",
|
||||||
|
# "NBA",
|
||||||
|
# "NFL",
|
||||||
|
"NHL",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
BASE_URLS = {sport: url.replace("api.", "") for sport, url in API_URLS.items()}
|
||||||
|
|
||||||
|
|
||||||
|
async def process_event(
|
||||||
|
sport: str,
|
||||||
|
flavor_id: str,
|
||||||
|
media_id: int,
|
||||||
|
url_num: int,
|
||||||
|
) -> str | None:
|
||||||
|
|
||||||
|
r = await network.client.post(
|
||||||
|
urljoin(API_URLS[sport], "api/v2/generate_stream_info"),
|
||||||
|
headers={"Referer": BASE_URLS[sport]},
|
||||||
|
json={"flavor_id": flavor_id, "media_event_id": media_id},
|
||||||
|
)
|
||||||
|
|
||||||
|
if r.status_code != 200:
|
||||||
|
log.warning(f"URL {url_num}) Failed to create post request.")
|
||||||
|
return
|
||||||
|
|
||||||
|
data: dict[str, str] = r.json()
|
||||||
|
|
||||||
|
if not (m3u8_url := data.get("url")):
|
||||||
|
log.warning(f"URL {url_num}) No M3U8 found")
|
||||||
|
return
|
||||||
|
|
||||||
|
log.info(f"URL {url_num}) Captured M3U8")
|
||||||
|
|
||||||
|
return m3u8_url
|
||||||
|
|
||||||
|
|
||||||
|
async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
|
||||||
|
tasks = [network.request(url, log=log) for url in BASE_URLS.values()]
|
||||||
|
|
||||||
|
results = await asyncio.gather(*tasks)
|
||||||
|
|
||||||
|
events = []
|
||||||
|
|
||||||
|
if not (html_data := [(html.text, html.url) for html in results if html]):
|
||||||
|
return events
|
||||||
|
|
||||||
|
now = Time.clean(Time.now())
|
||||||
|
|
||||||
|
stateshot_ptrn = re.compile(r"var\s+stateshot\s+=\s+(.*);", re.I)
|
||||||
|
|
||||||
|
start_dt = now.delta(hours=-1)
|
||||||
|
end_dt = now.delta(minutes=1)
|
||||||
|
|
||||||
|
for content, url in html_data:
|
||||||
|
sport = next((k for k, v in BASE_URLS.items() if v == url), "Live Event")
|
||||||
|
|
||||||
|
if not (match := stateshot_ptrn.search(content)):
|
||||||
|
continue
|
||||||
|
|
||||||
|
data: dict = json.loads(f"{match[1]}")
|
||||||
|
|
||||||
|
teams = data.get("teams", {})
|
||||||
|
|
||||||
|
flavors = data.get("flavors", {})
|
||||||
|
|
||||||
|
media_events = data.get("media_events", {})
|
||||||
|
|
||||||
|
team_identifier: dict[int, str] = {t.get("id"): t.get("name") for t in teams}
|
||||||
|
|
||||||
|
event_to_flavor_id: dict[int, str] = {
|
||||||
|
event_id: flavor["id"]
|
||||||
|
for flavor in flavors
|
||||||
|
for event_id in flavor.get("media_event_ids", [])
|
||||||
|
}
|
||||||
|
|
||||||
|
parsed_media_events: dict[int, int] = {
|
||||||
|
x.get("game_id"): x.get("id") for x in media_events
|
||||||
|
}
|
||||||
|
|
||||||
|
for game in data.get("games", {}):
|
||||||
|
game_id = game["id"]
|
||||||
|
|
||||||
|
event_dt = Time.fromisoformat(game["datetime"]).to_tz("EST")
|
||||||
|
|
||||||
|
if not start_dt <= event_dt <= end_dt:
|
||||||
|
continue
|
||||||
|
|
||||||
|
away = team_identifier.get(game["away_team_id"])
|
||||||
|
home = team_identifier.get(game["home_team_id"])
|
||||||
|
|
||||||
|
if f"[{sport}] {(event_name:=f"{away} vs {home}")} ({TAG})" in cached_keys:
|
||||||
|
continue
|
||||||
|
|
||||||
|
media_id = parsed_media_events.get(game_id, 0)
|
||||||
|
|
||||||
|
if (flavor_id := event_to_flavor_id.get(media_id)) and (
|
||||||
|
flavor_id.lower().startswith("free.live")
|
||||||
|
):
|
||||||
|
events.append(
|
||||||
|
{
|
||||||
|
"sport": sport,
|
||||||
|
"event": event_name,
|
||||||
|
"timestamp": event_dt.timestamp(),
|
||||||
|
"flavor_id": flavor_id,
|
||||||
|
"media_id": media_id,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
return events
|
||||||
|
|
||||||
|
|
||||||
|
async def scrape() -> None:
|
||||||
|
cached_urls = CACHE_FILE.load()
|
||||||
|
|
||||||
|
valid_urls = {k: v for k, v in cached_urls.items() if v["url"]}
|
||||||
|
|
||||||
|
valid_count = cached_count = len(valid_urls)
|
||||||
|
|
||||||
|
urls.update(valid_urls)
|
||||||
|
|
||||||
|
log.info(f"Loaded {cached_count} event(s) from cache")
|
||||||
|
|
||||||
|
log.info('Scraping from "https://mainportal66.com"')
|
||||||
|
|
||||||
|
if events := await get_events(cached_urls.keys()):
|
||||||
|
log.info(f"Processing {len(events)} new URL(s)")
|
||||||
|
|
||||||
|
for i, ev in enumerate(events, start=1):
|
||||||
|
handler = partial(
|
||||||
|
process_event,
|
||||||
|
sport=(sport := ev["sport"]),
|
||||||
|
flavor_id=ev["flavor_id"],
|
||||||
|
media_id=ev["media_id"],
|
||||||
|
url_num=i,
|
||||||
|
)
|
||||||
|
|
||||||
|
url = await network.safe_process(
|
||||||
|
handler,
|
||||||
|
url_num=i,
|
||||||
|
semaphore=network.HTTP_S,
|
||||||
|
log=log,
|
||||||
|
)
|
||||||
|
|
||||||
|
event, ts = ev["event"], ev["timestamp"]
|
||||||
|
|
||||||
|
key = f"[{sport}] {event} ({TAG})"
|
||||||
|
|
||||||
|
tvg_id, logo = leagues.get_tvg_info(sport, event)
|
||||||
|
|
||||||
|
entry = {
|
||||||
|
"url": url,
|
||||||
|
"logo": logo,
|
||||||
|
"base": BASE_URLS[sport],
|
||||||
|
"timestamp": ts,
|
||||||
|
"id": tvg_id or "Live.Event.us",
|
||||||
|
}
|
||||||
|
|
||||||
|
cached_urls[key] = entry
|
||||||
|
|
||||||
|
if url:
|
||||||
|
valid_count += 1
|
||||||
|
|
||||||
|
urls[key] = entry
|
||||||
|
|
||||||
|
log.info(f"Collected and cached {valid_count - cached_count} new event(s)")
|
||||||
|
|
||||||
|
else:
|
||||||
|
log.info("No new events found")
|
||||||
|
|
||||||
|
CACHE_FILE.write(cached_urls)
|
||||||
|
|
@ -8,21 +8,13 @@ TAG = "XYZSTRM"
|
||||||
|
|
||||||
CACHE_FILE = Cache(TAG, exp=28_800)
|
CACHE_FILE = Cache(TAG, exp=28_800)
|
||||||
|
|
||||||
BASE_URL = "https://xyzstreams.shop"
|
|
||||||
|
|
||||||
API_URL = "https://blog.xyzstreams.shop:2053/api/scoreboard"
|
API_URL = "https://blog.xyzstreams.shop:2053/api/scoreboard"
|
||||||
|
|
||||||
|
|
||||||
async def get_events() -> dict[str, dict[str, str | float]]:
|
async def get_events() -> dict[str, dict[str, str | float]]:
|
||||||
events = {}
|
events = {}
|
||||||
|
|
||||||
if not (
|
if not (r := await network.request(API_URL, log=log)):
|
||||||
r := await network.request(
|
|
||||||
API_URL,
|
|
||||||
headers={"Referer": BASE_URL},
|
|
||||||
log=log,
|
|
||||||
)
|
|
||||||
):
|
|
||||||
return events
|
return events
|
||||||
|
|
||||||
now = Time.clean(Time.now())
|
now = Time.clean(Time.now())
|
||||||
|
|
@ -57,7 +49,7 @@ async def get_events() -> dict[str, dict[str, str | float]]:
|
||||||
events[key] = {
|
events[key] = {
|
||||||
"url": feed,
|
"url": feed,
|
||||||
"logo": logo,
|
"logo": logo,
|
||||||
"base": BASE_URL,
|
"base": "https://xyzstreams.shop",
|
||||||
"timestamp": now.timestamp(),
|
"timestamp": now.timestamp(),
|
||||||
"id": tvg_id or "Live.Event.us",
|
"id": tvg_id or "Live.Event.us",
|
||||||
}
|
}
|
||||||
|
|
@ -73,7 +65,7 @@ async def scrape() -> None:
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
log.info(f'Scraping from "{BASE_URL}"')
|
log.info('Scraping from "https://xyzstreams.shop"')
|
||||||
|
|
||||||
urls.update(await get_events() or {})
|
urls.update(await get_events() or {})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,15 @@
|
||||||
## Base Log @ 2026-05-30 15:45 UTC
|
## Base Log @ 2026-05-29 22:13 UTC
|
||||||
|
|
||||||
### ✅ Working Streams: 148<br>❌ Dead Streams: 9
|
### ✅ Working Streams: 149<br>❌ Dead Streams: 8
|
||||||
|
|
||||||
| Channel | Error (Code) | Link |
|
| Channel | Error (Code) | Link |
|
||||||
| ------- | ------------ | ---- |
|
| ------- | ------------ | ---- |
|
||||||
| FDSN Detroit | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/317.ts` |
|
| FDSN Detroit | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/317.ts` |
|
||||||
| FDSN North | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/320.ts` |
|
|
||||||
| FDSN Ohio | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/1207.ts` |
|
| FDSN Ohio | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/1207.ts` |
|
||||||
| FDSN SoCal | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/665.ts` |
|
| FDSN SoCal | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/665.ts` |
|
||||||
| FDSN South | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/319.ts` |
|
|
||||||
| FDSN Southeast | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/872.ts` |
|
|
||||||
| FDSN Sun | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/322.ts` |
|
| FDSN Sun | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/322.ts` |
|
||||||
|
| FDSN West | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/1633.ts` |
|
||||||
|
| FDSN Wisconsin | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/1621.ts` |
|
||||||
| Lifetime | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/148.ts` |
|
| Lifetime | HTTP Error (403) | `http://cdn1host.online:2999/live/bongus/35zqYxrbg0/148.ts` |
|
||||||
| MSNBC | HTTP Error (404) | `http://41.205.93.154:80/MSNBC/index.m3u8` |
|
| MSNBC | HTTP Error (404) | `http://41.205.93.154:80/MSNBC/index.m3u8` |
|
||||||
---
|
---
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue