SQL : conversion de vidéos du format WMV au format MP4


13 juin 2013
./configure --prefix=<ffmpegInstall> --enable-libx264 --enable-gpl --enable-libmp3lame
make
make install
ffmpeg -i input.wmv -c:v libx264 -crf 23 -c:a libmp3lame -q:a 100 output.mp4
http://superuser.com/questions/73529/how-to-convert-wmv-to-mp4 http://ffmpeg.org/ffmpeg.html
Accueil