So I have a audio and video clip that are the same lengths together and I would like to merge them into one file to make a video clip with sound.
I found this answer, but it is for iPhone it seems: Merging Audio with Video Objective-C
Basically, what I want to do is this command from FFMPEG:
ffmpeg -i TestRecording-20140363110156.mov -i 1393956048.wav -vcodec copy out.mov
Is this possible? If not, can I just include the compiled ffmpeg file into my project and call that?
Thanks.