Skip to content

Commit 3fb78d2

Browse files
committed
Use media4 host and remove IPv6 note from READMEs
1 parent e89c1cb commit 3fb78d2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.fr.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Cette application n'est pas affiliée à Oqee. Cette application vous permet de
2828
- Go ([Guide d'installation](https://go.dev/doc/install))
2929
- ffmpeg
3030
- [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff)
31-
- **Connectivité IPv6** (le CDN est exclusivement IPv6)
3231
```bash
3332
go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest
3433
```

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ This application is not endorsed by or affiliated with Oqee. This application en
2828
- Go ([Installation Guide](https://go.dev/doc/install))
2929
- ffmpeg
3030
- [mp4ff-decrypt](https://github.com/Eyevinn/mp4ff)
31-
- **IPv6 connectivity** (the CDN is IPv6-only)
3231
```bash
3332
go install github.com/Eyevinn/mp4ff/cmd/mp4ff-decrypt@latest
3433
```

utils/stream.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ async def fetch_segment(session, ticks, track_id):
350350
Returns:
351351
The tick value if successful, None otherwise.
352352
"""
353-
url = f"https://media.stream.proxad.net/media/{track_id}_{ticks}"
353+
url = f"https://media4.stream.proxad.net/media/{track_id}_{ticks}"
354354
headers = {
355355
"Accept": "*/*",
356356
"Referer": "https://tv.free.fr/",
@@ -376,7 +376,7 @@ def get_init(output_folder, track_id):
376376
output_folder: The output folder path.
377377
track_id: The track identifier.
378378
"""
379-
url = f"https://media.stream.proxad.net/media/{track_id}_init"
379+
url = f"https://media4.stream.proxad.net/media/{track_id}_init"
380380
headers = {
381381
"Accept": "*/*",
382382
"Referer": "https://tv.free.fr/",
@@ -417,7 +417,7 @@ async def download_segment(session, tick, rep):
417417
Returns:
418418
Tuple of (success: bool, tick: int, rep: int)
419419
"""
420-
url = f"https://media.stream.proxad.net/media/{track_id}_{tick}"
420+
url = f"https://media4.stream.proxad.net/media/{track_id}_{tick}"
421421
headers = {
422422
"Accept": "*/*",
423423
"Referer": "https://tv.free.fr/",

0 commit comments

Comments
 (0)