2016-07-27 11:20:13 +00:00
|
|
|
# Frequently asked questions
|
|
|
|
|
|
|
|
## My browser plays the video. How do I download it?
|
|
|
|
Most recent browsers automatically play a video if it is a format they know how to play.
|
|
|
|
You can ususally download the video by doing *File > Save to* or *ctrl + S*.
|
2016-07-27 11:36:31 +00:00
|
|
|
|
|
|
|
## How do I change config parameters?
|
|
|
|
You need to create a YAML file called `config.yml` at the root of your project.
|
|
|
|
Here are the parameters that you can set:
|
2016-07-28 00:07:40 +00:00
|
|
|
* youtubedl: path to your youtube-dl binary
|
2016-07-27 11:36:31 +00:00
|
|
|
* python: path to your python binary
|
|
|
|
* params: an array of parameters to pass to youtube-dl
|
|
|
|
* curl_params: an array of parameters to pass to curl
|
|
|
|
* convert: true to enable audio conversion
|
|
|
|
* avconv: path to your avconv or ffmpeg binary
|
|
|
|
* rtmpdump: path to your rtmpdump binary
|
|
|
|
|
|
|
|
See [config.example.yml](config.example.yml) for default values.
|
|
|
|
|
|
|
|
## How do I enable audio conversion?
|
|
|
|
In order to enable audio conversion, you need to add this to your `config.yml` file:
|
|
|
|
```yaml
|
|
|
|
convert: true
|
2016-07-28 00:07:40 +00:00
|
|
|
avconv: path/to/avconv
|
2016-07-27 11:36:31 +00:00
|
|
|
```
|
|
|
|
You will also need to install `avconv` and `curl` on your server:
|
|
|
|
```bash
|
|
|
|
sudo apt-get install libav-tools curl
|
|
|
|
```
|