Updating ffmpeg dist to 4.1.4

pull/6/head
Javernaut 5 years ago
parent 332a5637c9
commit e080f9e889
  1. 2
      README.md
  2. 2
      ffmpeg-android-maker.sh

@ -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: 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:
<img src="https://github.com/Javernaut/ffmpeg-android-maker/blob/master/images/output_structure.png" width="200"> <img src="https://github.com/Javernaut/ffmpeg-android-maker/blob/master/images/output_structure.png" width="200">
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 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 is **4.1.3**. And the script expects to use Android NDK **r19** (*b* and *c* also work as well as *r20-beta1* and *r20-beta2*). Starting with FFmpeg 4.1 and NDK r19 the whole process became much simpler. The version of FFmpeg here is **4.1.4**. And the script expects to use at least Android NDK **r19** (*b* and *c* also work as well as *r20*). Starting with FFmpeg 4.1 and NDK r19 the whole process became much simpler.
## Supported architectures ## Supported architectures

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
FFMPEG_VERSION=4.1.3 FFMPEG_VERSION=4.1.4
# Assuming the script is used on macOS or Linux machine # Assuming the script is used on macOS or Linux machine
case "$OSTYPE" in case "$OSTYPE" in

Loading…
Cancel
Save