Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>From your question it is hard to tell what exactly you want/need... so here some general information:</p> <ul> <li><a href="https://stackoverflow.com/questions/4725773/ffmpeg-on-android/4820282#4820282">Using FFmpeg with Android</a></li> <li><a href="https://github.com/havlenapetr/FFMpeg/commits/debug" rel="nofollow noreferrer">Good starting point for FFmpeg on Android based on ndkr5</a></li> <li><a href="http://www.roman10.net/how-to-build-ffmpeg-for-android/" rel="nofollow noreferrer">Another good starting point for building FFmpeg for Android</a></li> <li>Helpful information to build FFmpeg for android see <a href="http://odroid.foros-phpbb.com/t338-ffmpeg-compiled-with-android-ndk" rel="nofollow noreferrer">here</a>, <a href="http://groups.google.com/group/android-ndk/browse_thread/thread/bd054e9f58b277d8" rel="nofollow noreferrer">here</a> and <a href="http://ffmpeg-users.933282.n4.nabble.com/Issue-with-cross-compiling-ffmpeg-for-linux-in-windows-td3830825.html" rel="nofollow noreferrer">here</a></li> <li><a href="https://stackoverflow.com/a/7002338/847363">Make sure that you use Windows paths instead of <code>/cydrive...</code> when doing ffmpeg/android/cygwin/windows dev</a></li> </ul> <p>If you need further help please explain exactly what you want to achieve and what is not working...</p> <p><strong>UPDATE - as per comments:</strong></p> <p>To use ffmpeg via command line on Android you need to copy ffmpeg into your application's <code>files</code> directory and <code>chmod 755</code> it using <code>getRuntime.exec()</code> then you can run ffmpeg with the following line for example:</p> <pre><code>Process p = Runtime.getRuntime().exec("/data/data/yourpackagename/files/ffmpeg -i infile.mp4 outfile.mp4") </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload