mirror of
https://github.com/vinefeeder/TwinVine.git
synced 2026-07-15 18:10:04 +02:00
fixes
This commit is contained in:
@@ -50,7 +50,7 @@ uv run envied --help
|
|||||||
```
|
```
|
||||||
**Configuration**
|
**Configuration**
|
||||||
|
|
||||||
Run this line inside the VineFeeder folder:
|
Run this line inside the TwinVine folder:
|
||||||
```
|
```
|
||||||
cp packages/envied/src/envied/envied-working-example.yaml packages/envied/src/envied/envied.yaml
|
cp packages/envied/src/envied/envied-working-example.yaml packages/envied/src/envied/envied.yaml
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
## What is envied?
|
## What is envied?
|
||||||
|
|
||||||
Envied is a fork of [Devine](https://github.com/devine-dl/devine/). The name 'envied' is an anagram of Devine, and as such, pays homage to the original author.
|
Envied is a fork of [Devine](https://github.com/devine-dl/devine/). The name 'envied' is an anagram of Devine, and as such, pays homage to the original author.
|
||||||
Is is based on v 1.4.7 of unshackle. It is a powerful archival tool for downloading movies, TV shows, and music from streaming services. Built with a focus on modularity and extensibility, it provides a robust framework for content acquisition with support for DRM-protected content.
|
Is is based on v 1.4.7 of envied. It is a powerful archival tool for downloading movies, TV shows, and music from streaming services. Built with a focus on modularity and extensibility, it provides a robust framework for content acquisition with support for DRM-protected content.
|
||||||
|
|
||||||
No commands have been changed 'uv run envied' still works as usual.
|
No commands have been changed 'uv run envied' still works as usual.
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class TEN(Service):
|
|||||||
Service code for 10Play streaming service (https://10.com.au/).
|
Service code for 10Play streaming service (https://10.com.au/).
|
||||||
|
|
||||||
\b
|
\b
|
||||||
Version: 1.0.1
|
Version: 1.0.2
|
||||||
Author: stabbedbybrick
|
Author: stabbedbybrick
|
||||||
Authorization: credentials
|
Authorization: credentials
|
||||||
Geofence: AU (API and downloads)
|
Geofence: AU (API and downloads)
|
||||||
@@ -274,8 +274,12 @@ class TEN(Service):
|
|||||||
|
|
||||||
tracks = self._add_tracks(tracks)
|
tracks = self._add_tracks(tracks)
|
||||||
|
|
||||||
for track in tracks.subtitles:
|
for track in tracks:
|
||||||
track.downloader = requests
|
track.OnSegmentFilter = lambda x: re.search(r"redirector.googlevideo.com", x.uri)
|
||||||
|
track.downloader_args = {"--ad-keyword": "redirector.googlevideo.com"}
|
||||||
|
|
||||||
|
if isinstance(track, Subtitle):
|
||||||
|
track.downloader = requests
|
||||||
|
|
||||||
# if caption := stream_data.get("subtitles", [])[0].get("webvtt"):
|
# if caption := stream_data.get("subtitles", [])[0].get("webvtt"):
|
||||||
# tracks.add(
|
# tracks.add(
|
||||||
|
|||||||
Reference in New Issue
Block a user