2

我已经成功地为 android 编译了 ffmpeg 并移植了它。

我放置

  1. /system/lib目录下的 libffmpeg.so
  2. /system/bin/system/xbin目录中的 ffmpeg 可执行文件(我不确定将其放置在哪里)。我直接从源目录复制了ffmpeg可执行文件(不确定它是否正确)

现在我正在使用以下代码执行来自 android 的命令!

imports *
public class LatestActivity extends Activity {

    private Process process;
    String command,text;

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

  @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_latest);

          //Execute Command !!  
          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{
        try {
            File dir=new File("/system/bin");
            String[] cmd= {"ffmpeg","-codecs"};

            process=Runtime.getRuntime().exec(cmd,null,dir);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            Log.d("Process IOException starts:",e.getMessage());
            e.printStackTrace();
            Log.d("System Manual exit !!",e.getMessage());
            System.exit(MODE_PRIVATE);
        }

        BufferedReader stdInput = new BufferedReader(new InputStreamReader(process.getInputStream()),16384);

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

           // read the output from the command
           Log.d("Application output: ","Output if any !"); 
            while ((text = stdInput.readLine()) != null) {
                Log.d("Output: ",text); //$NON-NLS-1$
               }


        text="";
           // read any errors from the attempted command
        Log.d("Application output: ","Errors if any !");  //$NON-NLS-1$
           while ((text = stdError.readLine()) != null) {

               Log.d("Error: ",text);  //$NON-NLS-1$
           }



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

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

    }

    private static void destroyProcess(Process process) {
        try {
            if (process != null) {
                // use exitValue() to determine if process is still running.
                process.exitValue();
            }
        } catch (IllegalThreadStateException e) {
            // process is still running, kill it.
            process.destroy();
        }
    }

  }

这是 logcat 输出:

09-05 15:29:13.287: D/dalvikvm(2670): No JNI_OnLoad found in /system/lib/libffmpeg.so 0x44e7e910, skipping init
09-05 15:29:29.117: I/global(2670): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
09-05 15:29:29.117: D/Application output:(2670): Output if any !
09-05 15:29:29.117: D/Application output:(2670): Errors if any !
09-05 15:29:29.127: D/Error:(2670): /system/bin/ffmpeg: 1: Syntax error: "(" unexpected

m 既没有得到任何错误,也没有输出命令。
最后它显示语法错误。
我想知道它是什么样的语法错误。如何解决?

我做错了什么?

4

2 回答 2

4

如果 ffmpeg 文件未针对您的 cpu 架构编译,则会出现此错误。

您的命令可能是正确的,但您需要找到正确的 ffmpeg 文件。

于 2015-02-18T04:45:40.683 回答
0

已修复@Gaganpreet Singh 您在对此进行了如此多的研究之后,我必须知道 CPU 芯片组也很重要,FFMPEG 命令不支持 INTEL ATOM 处理器。Asus Memo Pad 7 使用 INTEL ATOM cpu 芯片组,尝试在其上运行 ffmpeg 命令时,它崩溃并抛出错误“ SYNTAX ERROR

除了使用 INTEL ATOM 芯片组的设备外,我的命令在所有设备上都能完美运行。

如果对您有帮助,请查看链接和此链接。如果有人找到解决方案。请与我们分享。

最后 通过使用 NDK 为 x64 和 armv7 创建 ffmpeg 库来解决此问题。并在我的 Andriod 项目中使用了这个库。现在我有 2 个库并将这个库用于不同的 Android CPU ARCH。请也检查链接。非常有帮助。

于 2015-09-29T05:01:46.760 回答