0

The way when i execute command in run window in window 7 like:- C:\Users\Nitin\Desktop\pradeet t\bin> ffmpeg -y -threads 4 -i input_file -map 0 -acodec copy -vcodec copy D:\ad.mp4

Now i want to execute this in Android Programmatically. but i am unable to execute this command.

Please give my any suggestion.

1 Answers1

0

You can't run an executable like that on Android. What you should be doing is using an Android library for ffmpeg, there are a few around. Try this tutorial on how to get started, it comes with source code and documentation.

Steven Trigg
  • 1,903
  • 2
  • 19
  • 22