mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Specify a version for the FFmpeg dependency
Issue: #5154 PiperOrigin-RevId: 223314749
This commit is contained in:
parent
59cf8c1edf
commit
1093aaf185
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ HOST_PLATFORM="linux-x86_64"
|
||||||
be supported. See the [Supported formats][] page for more details of the
|
be supported. See the [Supported formats][] page for more details of the
|
||||||
available flags.
|
available flags.
|
||||||
|
|
||||||
For example, to fetch and build for armeabi-v7a,
|
For example, to fetch and build FFmpeg release 4.0 for armeabi-v7a,
|
||||||
arm64-v8a and x86 on Linux x86_64:
|
arm64-v8a and x86 on Linux x86_64:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
@ -71,7 +71,7 @@ COMMON_OPTIONS="\
|
||||||
" && \
|
" && \
|
||||||
cd "${FFMPEG_EXT_PATH}/jni" && \
|
cd "${FFMPEG_EXT_PATH}/jni" && \
|
||||||
(git -C ffmpeg pull || git clone git://source.ffmpeg.org/ffmpeg ffmpeg) && \
|
(git -C ffmpeg pull || git clone git://source.ffmpeg.org/ffmpeg ffmpeg) && \
|
||||||
cd ffmpeg && \
|
cd ffmpeg && git checkout release/4.0 && \
|
||||||
./configure \
|
./configure \
|
||||||
--libdir=android-libs/armeabi-v7a \
|
--libdir=android-libs/armeabi-v7a \
|
||||||
--arch=arm \
|
--arch=arm \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue