Skip to content

Instantly share code, notes, and snippets.

View leo-cheron's full-sized avatar
☝️

Léo Chéron leo-cheron

☝️
View GitHub Profile
@leo-cheron
leo-cheron / Macro
Last active August 29, 2015 14:13
Apache2 virtual host macro template
<Macro VHost $name $domain>
<Directory /var/www/$name/*>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<VirtualHost *:80>
ServerName $domain
@leo-cheron
leo-cheron / png-to-VP9.command
Last active November 29, 2024 10:21
FFMPEG - mp4 & webm conversion
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