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/",