1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-02-15 19:19:42 +00:00

Fix auto rename for duplicate video titles (#118)

* Fix `makeUniqueTitle` was not working with (custom) output format
* Add option to skip already existing files
* Update README to include --skip option

Co-authored-by: molikuner <molikuner@gmail.com>
This commit is contained in:
molikuner
2020-05-06 09:28:17 +02:00
committed by GitHub
parent 94b6da7fae
commit 3a8ed600ac
4 changed files with 28 additions and 12 deletions

View File

@@ -88,8 +88,10 @@ Options:
--acodec Re-encode audio track. Specify FFmpeg codec (e.g.
libopus) or set to "none" to disable audio.
[string] [default: "copy"]
--format Output container format (mkv, mp4, mov, anything that FFmpeg supports)
[string] [default: "mkv"]
--format Output container format (mkv, mp4, mov, anything that
FFmpeg supports) [string] [default: "mkv"]
--skip Skip download if file already exists
[boolean] [default: false]
```
We default to `.mkv` for the output container. If you prefer something else (like `mp4`), pass `--format mp4`.