views:

91

answers:

1

Hi guys,

I want to merge a sound file and a video file (remove the sound from the video file and replace it with my own sound) and this should happen on the phone. I have done this through ffmpeg, but I can't do that now.

Any help appreciated, 10x, Danail

+2  A: 

Your only hope of doing that will involve using the NDK to create a C/C++ library, perhaps leveraging ffmpeg logic. Or, perhaps find an ffmpeg ARM port and run it via Runtime.exec().

In reality, I am skeptical that a phone CPU will do this very quickly.

CommonsWare