sourab-sharma / TouchToRecord

Touch android camera surface view to record video using FFmpeg Recorder
297 stars 104 forks source link

FFMPEG merge recorded video with external audio #20

Closed Simonida closed 8 years ago

Simonida commented 8 years ago

Hi,

Is it possible to execute FFMPEG command for merging recorded video (without sound) with some external audio file?

I've tried to achieve this by forming command like this:

ffmpeg -i /storage/emulated/0/video_input.mp4 -i /storage/emulated/0/audio_input.mp3 -shortest /storage/emulated/0/Android/data/com.example.packagename/video/Vid_1460027568565.mp4

But, as a result I got only this log message "ffmpeg: Exit program called. 1".

Thanks!