Android版本 編譯VLC

2021-07-22 20:39:47 字數 1197 閱讀 3334

這裡假設你已經裝好android sdk和android ndk

配置環境變數

1.cd命令到當前使用者目錄下,開啟.bash_profile檔案:

cd ~

open .bash_profile

如果沒有.bash_profile,請touch新建乙個.bash_profile

touch .bash_profile
開啟.bash_profile檔案後,在檔案裡面輸入

export android_sdk=/users/hanhailong/library/android/sdk

export android_ndk=/users/hanhailong/ndk/android-ndk-r10e

export path=$path:$android_sdk/platform-tools:$android_sdk/tools

android_sdk和android_ndk後面的換成你自己對應的路徑。

轉殖**

git clone git:
編譯工程

將專案clone下來後就開始編譯專案了, 

cd命令到你clone下來的工程裡面,執行命令:

./compile.sh
解壓並安裝protobuf

一步一步執行下面如下命令:

tar -zxf protobuf-2.6.1.tar.gz

cd protobuf-2.6.1

./configure

make install

解壓並安裝xz

一步一步執行下面如下命令:

tar -zxf xz-5.0.3.tar.bz2

cd xz-5.0.3

./configure

make install

執行完了後,繼續回到vlc工程目錄下執行命令:

./compile.sh
編譯結果

編譯成功後,會在vlc-android/build/outputs/apk目錄下生成編譯後的apk包:

我們將其安裝到真機上,效果圖還是蠻不錯的:

Android版本 編譯VLC

2015 10 27 android 這裡記錄下編譯android版本的過程和遇到的錯誤 sudo apt get install automake ant autopoint cmake build essential libtool patch pkg config protobuf compi...

VLC 編譯相關問題

在mac os x10.7.3 xcode4.3.2 環境下編譯vlc for ios碰到的問題可解決辦法。git clone git cd mobilevlc buildmobilevlc.sh 執行會失敗,usr bin xcodebuild error can t exec developer...

VLC3 編譯過程

1 首先是安裝64位的ubuntu系統 ubuntu 16.04.5 desktop amd64.iso 阿里的源比較快 2 先安裝所需要的依賴庫和工具 要編譯生成32位的libvlc 通過wget mingw w64 common 5.0.1 1 all.deb mingw w64 i686 de...