alltube/config/config.example.yml

58 lines
1.3 KiB
YAML
Raw Normal View History

2017-08-21 20:10:21 +02:00
---
2017-08-21 20:22:08 +02:00
# Path to your youtube-dl binary
youtubedl: vendor/ytdl-org/youtube-dl/youtube_dl/__main__.py
2017-08-21 20:22:08 +02:00
# Path to your python binary
2015-10-31 15:42:25 +01:00
python: /usr/bin/python
2017-08-21 20:22:08 +02:00
# An array of parameters to pass to youtube-dl
params:
- --no-warnings
- --ignore-errors
- --flat-playlist
- --restrict-filenames
- --no-playlist
2017-08-21 20:22:08 +02:00
# True to enable audio conversion
2015-10-31 15:42:25 +01:00
convert: false
2017-08-21 20:22:08 +02:00
# True to enable advanced conversion mode
convertAdvanced: false
# List of formats available in advanced conversion mode
convertAdvancedFormats: [mp3, avi, flv, wav]
2017-08-21 20:22:08 +02:00
# Path to your avconv or ffmpeg binary
avconv: /usr/bin/ffmpeg
2017-08-21 20:22:08 +02:00
# avconv/ffmpeg logging level.
avconvVerbosity: error
# Path to the directory that contains the phantomjs binary.
phantomjsDir: /usr/bin/
2017-08-21 20:22:08 +02:00
# True to disable URL rewriting
uglyUrls: false
2017-08-21 20:22:08 +02:00
# True to stream videos through server
# Set to "ask" if you want to allow it but not enable by default.
stream: false
2018-12-28 19:36:01 +01:00
# 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:
best/bestvideo: Best
bestvideo+bestaudio: Remux best video with best audio
worst/worstvideo: Worst
2019-11-27 23:49:01 +01:00
# Enable debug mode.
debug: false