From 3fb78d2dc0e16b4b4f27e52850080ca2b7ae94fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Sun, 8 Feb 2026 21:26:08 +0100 Subject: [PATCH] Use media4 host and remove IPv6 note from READMEs --- README.fr.md | 1 - README.md | 1 - utils/stream.py | 6 +++--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.fr.md b/README.fr.md index d11ee32..8ffa6be 100644 --- a/README.fr.md +++ b/README.fr.md @@ -28,7 +28,6 @@ Cette application n'est pas affiliée à Oqee. Cette application vous permet de - Go ([Guide d'installation](https://go.dev/doc/install)) - ffmpeg - [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff) -- **Connectivité IPv6** (le CDN est exclusivement IPv6) ```bash go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest ``` diff --git a/README.md b/README.md index 2bf8b3e..0edce1c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ This application is not endorsed by or affiliated with Oqee. This application en - Go ([Installation Guide](https://go.dev/doc/install)) - ffmpeg - [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff) -- **IPv6 connectivity** (the CDN is IPv6-only) ```bash go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest ``` diff --git a/utils/stream.py b/utils/stream.py index 1b0d95c..fe56d14 100644 --- a/utils/stream.py +++ b/utils/stream.py @@ -350,7 +350,7 @@ async def fetch_segment(session, ticks, track_id): Returns: The tick value if successful, None otherwise. """ - url = f"https://media.stream.proxad.net/media/{track_id}_{ticks}" + url = f"https://media4.stream.proxad.net/media/{track_id}_{ticks}" headers = { "Accept": "*/*", "Referer": "https://tv.free.fr/", @@ -376,7 +376,7 @@ def get_init(output_folder, track_id): output_folder: The output folder path. track_id: The track identifier. """ - url = f"https://media.stream.proxad.net/media/{track_id}_init" + url = f"https://media4.stream.proxad.net/media/{track_id}_init" headers = { "Accept": "*/*", "Referer": "https://tv.free.fr/", @@ -417,7 +417,7 @@ async def save_segments( Returns: Tuple of (success: bool, tick: int, rep: int) """ - url = f"https://media.stream.proxad.net/media/{track_id}_{tick}" + url = f"https://media4.stream.proxad.net/media/{track_id}_{tick}" headers = { "Accept": "*/*", "Referer": "https://tv.free.fr/",