2 Commits

Author SHA1 Message Date
stabbedbybrick
b1d013820b get SD manifest 2023-09-26 19:36:23 +02:00
stabbedbybrick
8788f54880 update readme 2023-09-26 10:20:43 +02:00
2 changed files with 4 additions and 9 deletions

View File

@@ -1,12 +1,5 @@
### Freevine v0.5.0-beta (20230926)
#### Changelog:
#(20230926):
Channel5/My5: Added service
Massive credit to Diazole(https://github.com/Diazole/my5-dl) for solving its secrets
#### Features:
- [x] Movies & TV-series
@@ -23,7 +16,7 @@
ROKU: 1080p, DD5.1
CTV: 1080p, DD5.1
ALL4: 1080p, AAC2.0
MY5: 1080p, AAC2.0
MY5: 1080p, AAC2.0*
UKTV: 1080p, AAC2.0
STV: 1080p, AAC2.0
CRKL: 1080p, AAC2.0
@@ -31,6 +24,8 @@
TUBI: 720p, AAC2.0
PLUTO: 720p, AAC2.0
*Read --help for more info
#### Required tools:
* [Python 3.10+](https://www.python.org/)

View File

@@ -123,7 +123,7 @@ class CHANNEL5(Config):
parse = urlparse(mpd_url)
_path = parse.path.split("/")
_path[-1] = f"{data['id']}.mpd"
_path[-1] = f"{data['id']}A.mpd" if "A-tt" in _path[-1] else f"{data['id']}.mpd"
manifest = urlunparse(parse._replace(path="/".join(_path)))
return manifest, lic_url