lurch-dl/README.md

110 lines
2.7 KiB
Markdown
Raw Normal View History

2025-03-08 21:09:32 +01:00
Definitely not an unofficial commandline downloader for https://gronkh.tv
2025-03-08 21:09:32 +01:00
## Compatibility
2025-03-08 21:09:32 +01:00
This tool is only compatible with recent Linux-based operating systems.
To run it on Windows, make use of WSL.
2025-03-08 21:09:32 +01:00
## Features
- Download [Stream-Episodes](https://gronkh.tv/streams/)
- Specify a start- and stop-timestamp to download only a portion of the video
- Download a specific chapter
- Continuable Downloads
- Show infos about that Episode
2025-03-08 21:09:32 +01:00
## Known Issues / Limitations
2025-03-08 21:09:32 +01:00
- Downloads are **capped to 10 Mbyte/s by default** and buffering is simulated to pre-empt IP blocking due to API rate-limiting
- Because of the length of video chunks, **start- and stop-timestamps are inaccurate** (± 8 seconds)
- **Some videoplayers may have problems with the downloaded video file**. To fix this, you can use ffmpeg to rewrite the video into a MKV-File:
`ffmpeg -i video.ts -acodec copy -vcodec copy video.mkv`
2025-03-08 21:09:32 +01:00
## Download / Installation
New versions will appear under [Releases](https://github.com/ChaoticByte/lurch-dl/releases).
Just download the application and run it via your favourite terminal emulator.
> Note: **You may have to mark the file as executable before being able to run it.**
2025-03-08 21:09:32 +01:00
## Usage
2025-03-08 21:09:32 +01:00
Run `lurch-dl --help` to see available options.
2025-03-08 21:09:32 +01:00
> Note: This tool runs entirely on the command line.
2025-03-08 21:09:32 +01:00
### Examples
Download a video in its best available format:
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:26:44 +01:00
./lurch-dl --url https://gronkh.tv/streams/777
2025-03-08 21:09:32 +01:00
Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ...
Format: 1080p60
Output: GTV0777, 2023-11-09 - DIESER STREAM IST [...].ts
2025-03-08 21:09:32 +01:00
Downloaded 0.32% at 10.00 MB/s ...
2025-03-08 21:09:32 +01:00
```
Continue a download:
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:26:44 +01:00
./lurch-dl --url https://gronkh.tv/streams/777 --continue
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:00:15 +01:00
Download a specific chapter:
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:26:44 +01:00
./lurch-dl --url https://gronkh.tv/streams/777 --chapter 2
2025-03-08 21:09:32 +01:00
Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ...
Format: 1080p60
Chapter: 2. Alan Wake II
Output: GTV0777 - 2. Alan Wake II.ts
2025-03-08 21:09:32 +01:00
Downloaded 0.33% at 4.28 MB/s ...
2025-03-08 21:09:32 +01:00
```
Specify a start- and stop-timestamp:
2025-03-08 21:09:32 +01:00
```
./lurch-dl --url https://gronkh.tv/streams/777 --start 5h6m41s --stop 5h6m58s
```
2025-03-09 20:00:15 +01:00
List all available formats for a video:
2025-03-08 21:09:32 +01:00
```
./lurch-dl --url https://gronkh.tv/streams/777 --info
2025-03-08 21:09:32 +01:00
Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ...
Episode: 777
Length: 9h48m55s
Views: 45424
Timestamp: 2023-11-09T18:23:01Z
Tags: -
Formats: 1080p60, 720p, 360p
Chapters:
1 0s Just Chatting
2 2h53m7s Alan Wake II
3 9h35m0s Just Chatting
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:00:15 +01:00
Download the video in a specific format:
2025-03-08 21:09:32 +01:00
```
./lurch-dl --url https://gronkh.tv/streams/777 --format 720p
[...]
Format: 720p
[...]
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:00:15 +01:00
Specify a filename:
2025-03-08 21:09:32 +01:00
```
2025-03-09 20:26:44 +01:00
./lurch-dl --url https://gronkh.tv/streams/777 --output Stream777.ts
2025-03-08 21:09:32 +01:00
```