laravel-ffmpeg icon indicating copy to clipboard operation
laravel-ffmpeg copied to clipboard

Merge Video and Audio ,Video sound get muted

Open franssuny opened this issue 2 years ago • 0 comments

Hello how to enable audio from video and audio when i trying to merge into one cannot hear sound from the video thank you

   FFMpeg::fromDisk('public')
            ->open(['karaoke.mp3','karaoke.mp4'])
            ->export()
            ->addFormatOutputMapping(new X264, Media::make('public', 'new_video.mp4'), [ '1:a','1:v','0:a'])
            ->save();

or possible to translate this command to FFMPEG laravel?

ffmpeg -i /var/www/html/karaoke/chBGaCqQDDXCvTk4hwUgWYtxBCn5fAI0R42trJaH.mkv  -i /var/www/html/karaoke.mp3  
        -filter_complex "[0:a]volume=1,apad[A];[1:a][A]amerge[Aout]" -map 0:v -map [Aout] -y output-finalxxxx.mp4

franssuny avatar Feb 02 '23 22:02 franssuny