From 74a9fad0428c430494efc3748007869ecd4a3d14 Mon Sep 17 00:00:00 2001 From: Javernaut Date: Thu, 2 Jan 2020 10:35:09 +0200 Subject: [PATCH] Mentioning FFmpeg 4.2.2 in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 341b63c..b848f44 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Here is a script that downloads the source code of [FFmpeg](https://www.ffmpeg.o The actual content of all this directories depends on how the FFmpeg was configured before assembling. For my purpose I enabled only *libavcodec*, *libavformat*, *libavutil* and *libswscale*, but you can set your own configuration to make the FFmpeg you need. -The version of FFmpeg here by default is **4.2.1** (but can be overridden). And the script expects to use **at least** Android NDK **r19** (both *r20* and *r21* also work ok). +The version of FFmpeg here by default is **4.2.2** (but can be overridden). And the script expects to use **at least** Android NDK **r19** (both *r20* and *r21* also work ok). The details of how this script is implemented are described in this series of posts: * [Part 1](https://proandroiddev.com/a-story-about-ffmpeg-in-android-part-i-compilation-898e4a249422)