loadtup-dl/README.md

31 lines
919 B
Markdown
Raw Normal View History

2021-04-11 07:41:32 +00:00
# loadtup-dl
A tool to download subtitled videos from the website loadtup.com.
It downloads videos using `youtube-dl`; parses and converts loadtup's custom subtitle format to srt; and remuxes them together using `mkvmerge`, including the CRC32 in the resulting filename.
2021-04-12 00:46:09 +00:00
## Installation
```
git clone https://git.ivysaur.me/code.ivysaur.me/loadtup-dl
cd loadtup-dl
go build
sudo cp ./loadtup-dl /usr/local/bin/loadtup-dl
```
2021-04-11 07:41:32 +00:00
## Usage
```
Usage: loadtup-dl [options] [--] URL|- [URL...]
Supported URLs take the form 'https://loadtup.com/abcdefghijk'. Use a hyphen to
read equivalent loadtup.com HTML content from stdin.
Options:
--youtube-dl PATH Override path to youtube-dl
--mkvmerge PATH Override path to mkvmerge
--output PATH Override output filename
(only valid for a single URL)
--delete-temporary=false Preserve temporary files
```