This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -framerate 25 -y -start_number 1 -i %04d.png -pass 1 -c:v libvpx-vp9 \ | |
-b:v 1800k -maxrate 2000k -minrate 1200k \ | |
-deadline best -cpu-used 0 \ | |
-auto-alt-ref 1 -lag-in-frames 25 \ | |
-f webm /dev/null | |
ffmpeg -framerate 25 -start_number 1 -i %04d.png -pass 2 -c:v libvpx-vp9 \ | |
-b:v 1800k -maxrate 2000k -minrate 1200k \ | |
-deadline best -cpu-used 0 \ | |
-auto-alt-ref 1 -lag-in-frames 25 \ | |
output.webm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Macro VHost $name $domain> | |
<Directory /var/www/$name/*> | |
Options FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
<VirtualHost *:80> | |
ServerName $domain |