j'utilise le code ci-dessous pour convertir mes videos en FLV, il me genere un fichier flv mais qui ne souvre pas avec mon lecteur flv en local.
merci de m'aider
<?php
$ffmpegPath='/usr/bin/ffmpeg';
$fullpath="/hsphere/local/home/xxx/xxx.com/ups/xxx/video.avi";
$target_name="/hsphere/local/home/xxx/xxx.com/xxx/flv/video.flv";;
exec("ffmpeg -i $fullpath -acodec mp3 -ab 32 -f flv -s 320x240 -ar 22050 -aspect 4:3 -pass 1 -b 256 -r 15 -y $target_name");
?>