Giter Site home page Giter Site logo

Comments (11)

yuqian2019 avatar yuqian2019 commented on August 10, 2024

I want to know the detailed steps to generate libvpx_android_configs folder.

from nemo.

estimate123 avatar estimate123 commented on August 10, 2024

Thankyou so much, I think this worked : ). I generate libvpx_android_configs through the generate_libvpx_android_configs.sh in Exoplayer source code.

Can u detailed say steps to generate libvpx_android_configs folder? I observe the same problem.

I follow this answer to generate the files. google/ExoPlayer#2557
I run ./libvpx/configure --target=armv8-linux-gcc, the configure file is in the /third_party/libvpx directory.
then I run ./generate_libvpx_android_configs.sh /android-ndk-r14b

from nemo.

yuqian2019 avatar yuqian2019 commented on August 10, 2024

Thankyou so much, I think this worked : ). I generate libvpx_android_configs through the generate_libvpx_android_configs.sh in Exoplayer source code.

Can u detailed say steps to generate libvpx_android_configs folder? I observe the same problem.

I follow this answer to generate the files. google/ExoPlayer#2557
I run ./libvpx/configure --target=armv8-linux-gcc, the configure file is in the /third_party/libvpx directory.
then I run ./generate_libvpx_android_configs.sh /android-ndk-r14b

Thanks for ur reply. According to ur reply, I have generated libvpx_android_configs folder. Thank u very much!!!

from nemo.

estimate123 avatar estimate123 commented on August 10, 2024

Thankyou so much, I think this worked : ). I generate libvpx_android_configs through the generate_libvpx_android_configs.sh in Exoplayer source code.

Can u detailed say steps to generate libvpx_android_configs folder? I observe the same problem.

I follow this answer to generate the files. google/ExoPlayer#2557
I run ./libvpx/configure --target=armv8-linux-gcc, the configure file is in the /third_party/libvpx directory.
then I run ./generate_libvpx_android_configs.sh /android-ndk-r14b

Thanks for ur reply. According to ur reply, I have generated libvpx_android_configs folder. Thank u very much!!!

我把这个Exoplayer安装到手机上,但是我点播放product_review那个视频,在小米6上只是播放240p的视频,并没有进行超分,请问你能用这个播放器在手机上进行超分任务吗

from nemo.

yuqian2019 avatar yuqian2019 commented on August 10, 2024

Thankyou so much, I think this worked : ). I generate libvpx_android_configs through the generate_libvpx_android_configs.sh in Exoplayer source code.

Can u detailed say steps to generate libvpx_android_configs folder? I observe the same problem.

I follow this answer to generate the files. google/ExoPlayer#2557
I run ./libvpx/configure --target=armv8-linux-gcc, the configure file is in the /third_party/libvpx directory.
then I run ./generate_libvpx_android_configs.sh /android-ndk-r14b

Thanks for ur reply. According to ur reply, I have generated libvpx_android_configs folder. Thank u very much!!!

我把这个Exoplayer安装到手机上,但是我点播放product_review那个视频,在小米6上只是播放240p的视频,并没有进行超分,请问你能用这个播放器在手机上进行超分任务吗

我还没有进行做到这一部分

from nemo.

CaoFang98 avatar CaoFang98 commented on August 10, 2024

I observe the same problem (#5 ), then I try to use the generate_libvpx_android_configs.sh in Exoplayer source code to generate libvpx_android_configs. But I got "Configuring for target 'armv8-android-gcc'
enabling armv8
enabling webm_io
Requested extra CFLAGS ' -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include/arm-linux-androideabi -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include ' not supported by compiler" error message. I replace the ../libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \ (114 line in generate_libvpx_android_configs.sh) to $NEMO_CODE_ROOT/nemo/test/jni/libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \

你好,我在运行setup_local.sh时除了遇到同样的问题之外还报了其他错误:
sh: 1: ./configure: not found
/android-ndk-r14b/build/ndk-build: 144: /android-ndk-r14b/build/ndk-build: file: not found
/bin/sh: 1: file: not found
我的${NEMO_CODE_ROOT}/nemo/test/jni目录下没有configure文件,${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,请问这两个文件是在哪里得到的呢?

from nemo.

yuqian2019 avatar yuqian2019 commented on August 10, 2024

I observe the same problem (#5 ), then I try to use the generate_libvpx_android_configs.sh in Exoplayer source code to generate libvpx_android_configs. But I got "Configuring for target 'armv8-android-gcc'
enabling armv8
enabling webm_io
Requested extra CFLAGS ' -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include/arm-linux-androideabi -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include ' not supported by compiler" error message. I replace the ../libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \ (114 line in generate_libvpx_android_configs.sh) to $NEMO_CODE_ROOT/nemo/test/jni/libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \

你好,我在运行setup_local.sh时除了遇到同样的问题之外还报了其他错误:
sh: 1: ./configure: not found
/android-ndk-r14b/build/ndk-build: 144: /android-ndk-r14b/build/ndk-build: file: not found
/bin/sh: 1: file: not found
我的${NEMO_CODE_ROOT}/nemo/test/jni目录下没有configure文件,${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,请问这两个文件是在哪里得到的呢?

你是直接运行的setup_local.sh,还是经过上面的方法生成了configure文件之后再运行的setup_local.sh? 我的${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,configure文件参考上述回复生成。

from nemo.

CaoFang98 avatar CaoFang98 commented on August 10, 2024

I observe the same problem (#5 ), then I try to use the generate_libvpx_android_configs.sh in Exoplayer source code to generate libvpx_android_configs. But I got "Configuring for target 'armv8-android-gcc'
enabling armv8
enabling webm_io
Requested extra CFLAGS ' -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include/arm-linux-androideabi -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include ' not supported by compiler" error message. I replace the ../libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \ (114 line in generate_libvpx_android_configs.sh) to $NEMO_CODE_ROOT/nemo/test/jni/libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \

你好,我在运行setup_local.sh时除了遇到同样的问题之外还报了其他错误:
sh: 1: ./configure: not found
/android-ndk-r14b/build/ndk-build: 144: /android-ndk-r14b/build/ndk-build: file: not found
/bin/sh: 1: file: not found
我的${NEMO_CODE_ROOT}/nemo/test/jni目录下没有configure文件,${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,请问这两个文件是在哪里得到的呢?

你是直接运行的setup_local.sh,还是经过上面的方法生成了configure文件之后再运行的setup_local.sh? 我的${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,configure文件参考上述回复生成。

谢谢,我把 generate_libvpx_android_configs.sh 复制到 ${NEMO_CODE_ROOT}/nemo/nemo/test/jni 目录下再执行 ./generate_libvpx_android_configs.sh /android-ndk-r14b 就可以了。

from nemo.

fangtiancheng avatar fangtiancheng commented on August 10, 2024

我得到了libvpx_android_configs文件夹,但是还是不知道怎么./configure,请问如何生成configure文件呢?

I have already get directory libvpx_android_configs, but I still don't know how to ./configure. How to get the "configure" file?

from nemo.

fangtiancheng avatar fangtiancheng commented on August 10, 2024

I observe the same problem (#5 ), then I try to use the generate_libvpx_android_configs.sh in Exoplayer source code to generate libvpx_android_configs. But I got "Configuring for target 'armv8-android-gcc'
enabling armv8
enabling webm_io
Requested extra CFLAGS ' -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include/arm-linux-androideabi -isystem /workspace/nemo/nemo/test/jni/sysroot/usr/include ' not supported by compiler" error message. I replace the ../libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \ (114 line in generate_libvpx_android_configs.sh) to $NEMO_CODE_ROOT/nemo/test/jni/libvpx/configure ${config[${i}]} ${common_params} --extra-cflags=" \

你好,我在运行setup_local.sh时除了遇到同样的问题之外还报了其他错误:
sh: 1: ./configure: not found
/android-ndk-r14b/build/ndk-build: 144: /android-ndk-r14b/build/ndk-build: file: not found
/bin/sh: 1: file: not found
我的${NEMO_CODE_ROOT}/nemo/test/jni目录下没有configure文件,${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,请问这两个文件是在哪里得到的呢?

你是直接运行的setup_local.sh,还是经过上面的方法生成了configure文件之后再运行的setup_local.sh? 我的${NEMO_CODE_ROOT}/nemo/test目录下也没有ndk-build文件,configure文件参考上述回复生成。

能仔细说说,如何一步步生成configure文件吗

from nemo.

chaos5958 avatar chaos5958 commented on August 10, 2024

Sorry for the late updates.

@fangtiancheng @CaoFang98 @yuqian2019 @estimate123 Are there any remaining issues?
If exists, please post them in English so I can help you.

from nemo.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.