Use media4 host and remove IPv6 note from READMEs

This commit is contained in:
√(noham)²
2026-02-08 21:26:08 +01:00
parent e89c1cb3b3
commit 3fb78d2dc0
3 changed files with 3 additions and 5 deletions

View File

@@ -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)) - Go ([Guide d'installation](https://go.dev/doc/install))
- ffmpeg - ffmpeg
- [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff) - [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff)
- **Connectivité IPv6** (le CDN est exclusivement IPv6)
```bash ```bash
go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest
``` ```

View File

@@ -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)) - Go ([Installation Guide](https://go.dev/doc/install))
- ffmpeg - ffmpeg
- [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff) - [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff)
- **IPv6 connectivity** (the CDN is IPv6-only)
```bash ```bash
go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest
``` ```

View File

@@ -350,7 +350,7 @@ async def fetch_segment(session, ticks, track_id):
Returns: Returns:
The tick value if successful, None otherwise. 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 = { headers = {
"Accept": "*/*", "Accept": "*/*",
"Referer": "https://tv.free.fr/", "Referer": "https://tv.free.fr/",
@@ -376,7 +376,7 @@ def get_init(output_folder, track_id):
output_folder: The output folder path. output_folder: The output folder path.
track_id: The track identifier. 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 = { headers = {
"Accept": "*/*", "Accept": "*/*",
"Referer": "https://tv.free.fr/", "Referer": "https://tv.free.fr/",
@@ -417,7 +417,7 @@ async def save_segments(
Returns: Returns:
Tuple of (success: bool, tick: int, rep: int) 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 = { headers = {
"Accept": "*/*", "Accept": "*/*",
"Referer": "https://tv.free.fr/", "Referer": "https://tv.free.fr/",