2

我在 ubuntu 11.10 上编译了 ffmpeg 库,并在 android 上移植了编译文件。
编译后我得到了libffmpeg.so成功。它成功加载到android上。

我在 ubuntu 11.10 eclipse android 模拟器上做。

我创建了一个小型测试应用程序,它充当命令提示符,它接受来自用户的命令并显示结果。(测试 ffmpeg 命令)

当我运行像“ls”、“ls -l”这样的简单命令时,它可以完美运行。但是当我简单地键入“ cd mnt ”或“ ffmpeg ”作为命令并尝试运行它时。我在 Logcat 中收到警告

08-26 16:44:52.553: W/System.err(5961): java.io.IOException: Error running exec(). Command: [ffmpeg] Working Directory: null Environment: null
08-26 16:44:52.573: W/System.err(5961):     at java.lang.ProcessManager.exec(ProcessManager.java:211)
08-26 16:44:52.573: W/System.err(5961):     at java.lang.Runtime.exec(Runtime.java:168)
08-26 16:44:52.573: W/System.err(5961):     at java.lang.Runtime.exec(Runtime.java:241)
08-26 16:44:52.583: W/System.err(5961):     at java.lang.Runtime.exec(Runtime.java:184)
08-26 16:44:52.593: W/System.err(5961):     at ch.ffmpeg.reversit.MainActivity.Execute(MainActivity.java:61)
08-26 16:44:52.593: W/System.err(5961):     at ch.ffmpeg.reversit.MainActivity$1.onClick(MainActivity.java:46)
08-26 16:44:52.593: W/System.err(5961):     at android.view.View.performClick(View.java:3480)
08-26 16:44:52.593: W/System.err(5961):     at android.view.View$PerformClick.run(View.java:13983)
08-26 16:44:52.603: W/System.err(5961):     at android.os.Handler.handleCallback(Handler.java:605)
08-26 16:44:52.603: W/System.err(5961):     at android.os.Handler.dispatchMessage(Handler.java:92)
08-26 16:44:52.603: W/System.err(5961):     at android.os.Looper.loop(Looper.java:137)
08-26 16:44:52.614: W/System.err(5961):     at android.app.ActivityThread.main(ActivityThread.java:4340)
08-26 16:44:52.624: W/System.err(5961):     at java.lang.reflect.Method.invokeNative(Native Method)
08-26 16:44:52.624: W/System.err(5961):     at java.lang.reflect.Method.invoke(Method.java:511)
08-26 16:44:52.634: W/System.err(5961):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
08-26 16:44:52.634: W/System.err(5961):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
08-26 16:44:52.644: W/System.err(5961):     at dalvik.system.NativeStart.main(Native Method)
08-26 16:44:52.644: W/System.err(5961): Caused by: java.io.IOException: Permission denied
08-26 16:44:52.674: W/System.err(5961):     at java.lang.ProcessManager.exec(Native Method)
08-26 16:44:52.674: W/System.err(5961):     at java.lang.ProcessManager.exec(ProcessManager.java:209)
08-26 16:44:52.684: W/System.err(5961):     ... 16 more

这是我的代码:

imports;
public class MainActivity extends Activity {
    String com;
    Process process;
    EditText command;
    Button run;
    RelativeLayout main_layout;

    static {
     System.loadLibrary("ffmpeg");
    }

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       //find view 
       command=(EditText)findViewById(R.id.command);
       run=(Button)findViewById(R.id.run);

        run.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                com=command.getText().toString();
                try {
                    Execute();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

            }
        }); 

    }

    public void Execute() throws IOException, InterruptedException{
        process=Runtime.getRuntime().exec(com);
        // process = pb.command(com).redirectErrorStream(true).start();

        if(process!=null)
        ShowOutput();
        else
        Toast.makeText(getBaseContext(),"Null Process",Toast.LENGTH_LONG).show();
    }

    public void ShowOutput() throws IOException, InterruptedException{
        String s,text="",errors="";
        BufferedReader stdInput = new BufferedReader(new 
                InputStreamReader(process.getInputStream()));

           BufferedReader stdError = new BufferedReader(new 
                InputStreamReader(process.getErrorStream()));


           TextView output=(TextView)findViewById(R.id.output);
           TextView error=(TextView)findViewById(R.id.error);

            while ((s = stdInput.readLine()) != null) {
                   text+=s.toString()+"\n";
                   System.out.println("Error: "+s);
               }

         output.setText(text);
         text="";
           // read any errors from the attempted command
           System.out.println("Here is the standard error of the command (if any):\n");
           while ((s = stdError.readLine()) != null) {
               text+=s.toString()+"\n";
               System.out.println("Error: "+s);
           }

           error.setText(text);

           error.setMovementMethod(new ScrollingMovementMethod());
           output.setMovementMethod(new ScrollingMovementMethod());

           stdInput.close();
           stdError.close();

           process.waitFor();
           process.getOutputStream().close();
           process.getInputStream().close();
           process.getErrorStream().close(); 
           process.destroy();


    }

}

我什至尝试process = pb.command(com).redirectErrorStream(true).start();执行。它给了我同样的错误,但这次环境是 [ANDROID_SOCKET_Zygot] bla bla bla ..


编辑 1: 我在 ubuntu 上使用 Openjdk

帮帮我 !!

4

3 回答 3

2

有大量 [android] [ffmpeg] 讨论以及如何...

在非 root 设备(即普通用户的应用程序)上调用 ffmpeg 的常规方法是使用 NDK 和 C-lang 集成,在 Java 中,您可以进行常规方法调用,该方法调用包装 CLI 内容和参数集合JNI 层将传递到 ffmpeg 可执行文件的接口。

android 调用 step1.android 的示例是......

             new FFMpegTask().execute(invoke_lib_path,"ffmpeg", "-y", 
                    "-i", Picture.getPath(), "-i", recordFilePath,
                    "-vcodec", "mpeg4", "-s", siz,
                    "-r", "15", "-b:v", "200k",
                    "-acodec", "copy", "-f", "3gp"
                    ,pathOut);

步骤2.c

JNIEXPORT void JNICALL Java_com_..._naRun(JNIEnv *env, jobject obj, jobjectArray args) { int i = 0; 整数 argc = 0; 字符 **argv = NULL;

if (args != NULL) { argc = ( env)->GetArrayLength(env, args); argv = (char * ) malloc(sizeof(char *) * argc);

  for(i=0;i<argc;i++)         {           jstring str =

(jstring)(*env)->GetObjectArrayElement(env, args, i); argv[i] = (char *)(*env)->GetStringUTFChars(env, str, NULL); } } int j = 0; j = main(argc, argv); }

尝试使用 java runtime.exec() 类型的 CLI 调用是我所说的 hack,这将浪费您的时间。

通过在 .apk 中使用 NDK 和正常打包,您可以确保部署设备上的处理器架构和构建 ffmpeg 的处理器等事物之间更高程度的可靠性和集成。

尝试阅读roman10的介绍

然后,您可以尝试依赖许多为 android 构建 ffmpeg 的人提供的面包屑 .. 即 google “android-ffmpeg”

如果你是 root 并且你已经编译了一个可执行文件,那么你可以通过获取一个 shell 并使用 adb CLI 来调用它。请注意,这不像使用 java 作为 runtime.exec 调用的包装器。

adb push ffmpeg /data/local/ffmpeg/ffmpeg

./ffmpeg -编解码器

于 2012-08-26T16:48:45.223 回答
1

AFAIK You cannot use cd command. It is a bash directive, there is no executable cd. I guess ffmpeg is not working because of permissions. On adb shell do chmod 777 ffmpeg and try again

于 2012-08-26T12:32:20.873 回答
0

我可能有点晚了

java.io.IOException: Error running exec(). Command: [ffmpeg] Working Directory: null Environment: null

明确提到找不到ffmpeg文件。在执行任何命令之前,首先检查文件是否存在于上述位置。

boolean ifFileExists = new File(*path_of_ffmpeg_file*).exists();


       if(ifFileExists==false){
// code to write file in phone
    }
method(commandToExecute);
于 2015-02-18T04:41:30.770 回答