I have installed ffmpeg to convert video to mp3, and its working in shell.
I am trying to develop a website of this.
but when i try converting flv to mp3 in website using exec() in PHP the conversion does not work, the mp3 file is not created.
I tried all this
exec('ffmpeg -i videos/'.$video_filename.'.flv -f mp3 -vn -acodec copy '.$audio_path.'.mp3');
// exec('ffmpeg -title “freemp3.to” -i videos/'.$video_filename.'.flv -acodec mp3 -ac 2 -ab 128 -vn -y '.$audio_path.'.mp3');
// exec('ffmpeg -i videos/'.$video_filename.'.flv -ar 44100 -ab 160k -ac 2 '.$audio_path.'.mp3');
Can any one help with this
Thanks
Kevin
I am trying to develop a website of this.
but when i try converting flv to mp3 in website using exec() in PHP the conversion does not work, the mp3 file is not created.
I tried all this
exec('ffmpeg -i videos/'.$video_filename.'.flv -f mp3 -vn -acodec copy '.$audio_path.'.mp3');
// exec('ffmpeg -title “freemp3.to” -i videos/'.$video_filename.'.flv -acodec mp3 -ac 2 -ab 128 -vn -y '.$audio_path.'.mp3');
// exec('ffmpeg -i videos/'.$video_filename.'.flv -ar 44100 -ab 160k -ac 2 '.$audio_path.'.mp3');
Can any one help with this
Thanks
Kevin