Kumi
8d1bd4d678
Consolidated `genericFormats` in the example configuration to use individual best and worst video options instead of combined options. This simplifies the configuration and aligns with common usage scenarios. No functional impact expected.
64 lines
1.3 KiB
YAML
64 lines
1.3 KiB
YAML
---
|
|
# Path to your youtube-dl binary
|
|
youtubedl: vendor/yt-dlp/yt-dlp/yt_dlp/__main__.py
|
|
|
|
# Path to your python binary
|
|
python: /usr/bin/python
|
|
|
|
# An array of parameters to pass to youtube-dl
|
|
params:
|
|
- --no-warnings
|
|
- --ignore-errors
|
|
- --flat-playlist
|
|
- --restrict-filenames
|
|
- --no-playlist
|
|
- --use-extractors
|
|
- default,-generic
|
|
|
|
# True to enable audio conversion
|
|
convert: false
|
|
|
|
# True to enable advanced conversion mode
|
|
convertAdvanced: false
|
|
|
|
# List of formats available in advanced conversion mode
|
|
convertAdvancedFormats: [mp3, avi, flv, wav]
|
|
|
|
# Path to your ffmpeg binary
|
|
ffmpeg: /usr/bin/ffmpeg
|
|
|
|
# ffmpeg logging level.
|
|
ffmpegVerbosity: error
|
|
|
|
# Path to the directory that contains the phantomjs binary.
|
|
phantomjsDir: /usr/bin/
|
|
|
|
# True to disable URL rewriting
|
|
uglyUrls: false
|
|
|
|
# True to stream videos through server
|
|
# Set to "ask" if you want to allow it but not enable by default.
|
|
stream: false
|
|
|
|
# True to enable remux mode (merge best audio and best video)
|
|
remux: false
|
|
|
|
# MP3 bitrate when converting (in kbit/s)
|
|
audioBitrate: 128
|
|
|
|
# App name
|
|
appName: AllTube Download
|
|
|
|
# Generic formats supported by youtube-dl
|
|
genericFormats:
|
|
bestvideo: Best
|
|
worstvideo: Worst
|
|
|
|
# Enable debug mode.
|
|
debug: false
|
|
|
|
# True to enable audio conversion mode by default
|
|
defaultAudio: false
|
|
|
|
# False to disable convert seek functionality
|
|
convertSeek: true
|