1

我完全是这个主题的新手。我想在我的应用程序中使用 speex 编解码器,因为我已经按照这个链接在 android 应用程序中包含 speex lib。我已经完成了所有步骤 [获取所有 c 文件并使用 NDK 编译它们] 和已运行此代码行

static {
    System.loadLibrary("speex");
}
private native void initEncoder(int mode, int quality);
private native void destroyEncoder();
private native int encodeFile(String sourcePath, String targetPath);

@
Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initEncoder(AudioManager.ADJUST_RAISE, 5);
    File f = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/encoded_file");
    encodeFile(Environment.getExternalStorageDirectory().getAbsolutePath() + "/06-Jab Tak Hai Jaan[MusikMaza.Com].mp3", f.getAbsolutePath());
    destroyEncoder();
}

并得到了这个错误

11-06 16:21:12.620: E/AndroidRuntime(32612): Caused by: java.lang.UnsatisfiedLinkError: Couldn't load speex: find Library returned null.

我似乎图书馆没有被错误名称加载。所以请告诉我如何解决这个问题。任何建议/帮助将不胜感激。提前致谢

4

0 回答 0