From a7b218ae869bbfa5fdfa637bcb5c838a577c7dc9 Mon Sep 17 00:00:00 2001 From: Javernaut Date: Mon, 1 Apr 2019 22:51:28 +0200 Subject: [PATCH] Updating the FFmpeg lib to 4.1.3 --- README.md | 2 +- ffmpeg-android-maker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 98c5b75..2f486a6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Here is a script that downloads the source code of [FFmpeg](https://www.ffmpeg.org) library and assembles it for Android. The script produces shared libraries as well as header files. The output structure looks like this: The actual content of all this directories depends on how the FFmpeg was configured before assembling. For my purpose I enabled only *libavcodec*, *libavformat* and *libavutil*, but you can set your own configuration to make the FFmpeg you need. -The version of FFmpeg here is **4.1.2**. And the script expects to use Android NDK **r19** (*b* and *c* also work as well as *r20-beta1*). Starting with FFmpeg 4.1 and NDK r19 the whole process became much simpler. +The version of FFmpeg here is **4.1.3**. And the script expects to use Android NDK **r19** (*b* and *c* also work as well as *r20-beta1*). Starting with FFmpeg 4.1 and NDK r19 the whole process became much simpler. ## Supported architectures diff --git a/ffmpeg-android-maker.sh b/ffmpeg-android-maker.sh index a526e76..4e2127f 100755 --- a/ffmpeg-android-maker.sh +++ b/ffmpeg-android-maker.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -FFMPEG_VERSION=4.1.2 +FFMPEG_VERSION=4.1.3 # Directories used by the script BASE_DIR="$( cd "$( dirname "$0" )" && pwd )"