mirror of
https://github.com/NohamR/OqeeRewind.git
synced 2026-04-08 02:50:01 +00:00
Use media4 host and remove IPv6 note from READMEs
This commit is contained in:
@@ -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
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -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
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -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/",
|
||||||
|
|||||||
Reference in New Issue
Block a user