======Avi to ""WebM"" convert====== This script converts all avi files (readable by ffmpeg) in the current directory to VP8/Vorbis videos, also known as ""WebM"". ====Requirements==== ~-php5-cli ~-ffmpeg (with libvpx and libvorbis support + any other codecs that are going to be read) ~-coreutils Tested on Linux. ====The script (version 1.0.3)==== %%(php;1;ckallavi2webm.php) #!/usr/bin/php -q . */ system('ls -1 ./*.[a,A][v,V][i,I] > /tmp/list-ckallavi2webm.txt'); $names = file('/tmp/list-ckallavi2webm.txt'); system('rm /tmp/list-ckallavi2webm.txt'); foreach($names as $name) { system('ffmpeg -i "' . rtrim($name) . '" -threads 2 "' . substr(rtrim($name),0,-4) . '.webm"'); } ?> %% Just click grab to save the file, or copy&paste it yourself to your favorite editor. Remember to add executable permissions. ====License==== This program is under the [[http://www.gnu.org/licenses/gpl.html GNU GPL v3]] or later. ----::c:: CategoryProjekty