Lint markdown files
This commit is contained in:
parent
17df0b63cb
commit
b74a092700
6 changed files with 81 additions and 17 deletions
|
@ -4,7 +4,8 @@
|
|||
|
||||
## 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.
|
||||
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*.
|
||||
|
||||
## How do I change config parameters?
|
||||
|
@ -56,13 +57,16 @@ Then push the code to Heroku and it should work out of the box.
|
|||
|
||||
## Why can't I download videos from some websites (e.g. Dailymotion)
|
||||
|
||||
Some websites generate an unique video URL for each IP address. When using Alltube, the URL is generated for our server's IP address and your computer is not allowed to use it.
|
||||
Some websites generate an unique video URL for each IP address.
|
||||
When using Alltube, the URL is generated for our server's IP address
|
||||
and your computer is not allowed to use it.
|
||||
|
||||
There are two known workarounds:
|
||||
|
||||
* You can run Alltube locally on your computer.
|
||||
* You can enable streaming videos through the server (see below).
|
||||
Please note that this can use a lot of resources on the server (which is why we won't enable it on alltubedownload.net).
|
||||
Please note that this can use a lot of resources on the server
|
||||
(which is why we won't enable it on alltubedownload.net).
|
||||
|
||||
## CSS and JavaScript files are missing
|
||||
|
||||
|
@ -74,7 +78,8 @@ You need to either:
|
|||
|
||||
## I get a 404 error on every page except the index
|
||||
|
||||
This is probably because your server does not have mod_rewrite or AllowOverride is disabled.
|
||||
This is probably because your server does not have mod_rewrite
|
||||
or AllowOverride is disabled.
|
||||
You can work around this by adding this to your `config.yml` file:
|
||||
|
||||
```yaml
|
||||
|
@ -101,7 +106,8 @@ Alltube can rename videos automatically if you enable streaming (see above).
|
|||
|
||||
## I want to download a video that isn't available in my country
|
||||
|
||||
If the video is available in the server's country, you can download it if you enable streaming (see above).
|
||||
If the video is available in the server's country,
|
||||
you can download it if you enable streaming (see above).
|
||||
|
||||
## How do I run the Docker image?
|
||||
|
||||
|
@ -114,7 +120,9 @@ docker run -p 8080:80 rudloff/alltube
|
|||
You should be able to use `heroku local` like this:
|
||||
|
||||
```bash
|
||||
sudo APACHE_LOCK_DIR=. APACHE_PID_FILE=./pid APACHE_RUN_USER=www-data APACHE_RUN_GROUP=www-data APACHE_LOG_DIR=. heroku local
|
||||
sudo APACHE_LOCK_DIR=. APACHE_PID_FILE=./pid APACHE_RUN_USER=www-data \
|
||||
APACHE_RUN_GROUP=www-data APACHE_LOG_DIR=. \
|
||||
heroku local
|
||||
```
|
||||
|
||||
You might need to create some symlinks before that:
|
||||
|
@ -124,7 +132,8 @@ ln -s /usr/sbin/apache2 /usr/sbin/httpd
|
|||
ln -s /usr/sbin/php-fpm7.0 /usr/sbin/php-fpm
|
||||
```
|
||||
|
||||
And you probably need to run this in another terminal after `heroku local` has finished launching `php-fpm`:
|
||||
And you probably need to run this in another terminal
|
||||
after `heroku local` has finished launching `php-fpm`:
|
||||
|
||||
```bash
|
||||
chmod 0667 /tmp/heroku.fcgi.5000.sock
|
||||
|
@ -137,4 +146,5 @@ So Alltube will offer you video-only and audio-only formats in the format list.
|
|||
|
||||
You then need to merge them together with a tool like ffmpeg.
|
||||
|
||||
You can also enable the experimental remux mode that will merge the best video and the best audio format on the fly.
|
||||
You can also enable the experimental remux mode
|
||||
that will merge the best video and the best audio format on the fly.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue