Compare commits

..

6 Commits

Author SHA1 Message Date
Taner Sener 35b99c02f8
Update README.md 5 months ago
Taner Sener fbbc6d0320
Update index.md 6 months ago
Taner Sener 08c0f60691
Add retirement notice to the README.md 6 months ago
Taner Sener 17ea9e386f
Merge pull request #1069 from arthenica/github-actions-fix 7 months ago
Taner Sener fb2ebfda66 fix weekly builds 7 months ago
Taner Sener ea8e8ded96
Merge pull request #1061 from arthenica/main-doc-update 7 months ago
  1. 14
      README.md
  2. 10
      docs/index.md
  3. 11
      scripts/android/libiconv.sh
  4. 3
      scripts/apple/libogg.sh

@ -1,5 +1,19 @@
# FFmpegKit ![GitHub release](https://img.shields.io/badge/release-v6.0-blue.svg) ![Maven Central](https://img.shields.io/maven-central/v/com.arthenica/ffmpeg-kit-min) ![CocoaPods](https://img.shields.io/cocoapods/v/ffmpeg-kit-ios-min) ![pub](https://img.shields.io/pub/v/ffmpeg_kit_flutter.svg) ![npm](https://img.shields.io/npm/v/ffmpeg-kit-react-native.svg)
## Notice
FFmpegKit has been officially retired. There will be no further `ffmpeg-kit` releases.
See [Saying Goodbye to FFmpegKit @ medium](https://medium.com/@tanersener/saying-goodbye-to-ffmpegkit-33ae939767e1) to learn why we made this decision.
All previously released `ffmpeg-kit` binaries will be removed according to the following schedule.
| FFmpegKit Version | Available Until |
|:-----------------:|:------------------:|
| Less than 6.0 | February 1st, 2025 |
| 6.0 | April 1st, 2025 |
Thank you for your support and interest in this project.
<img src="https://github.com/arthenica/ffmpeg-kit/blob/main/docs/assets/ffmpeg-kit-icon-v9.png" width="240">
`FFmpegKit` is a collection of tools to use `FFmpeg`<sup>1</sup> in `Android`, `iOS`, `Linux`, `macOS`, `tvOS`, `Flutter` and `React Native` applications.

@ -1,5 +1,15 @@
# FFmpegKit
## Notice
FFmpegKit has been officially retired. There will be no further `ffmpeg-kit` releases. All previously released `ffmpeg-kit` binaries will be removed according to the following schedule. Thank you for your support and interest in this project.
Thank you for your support and contributions over the course of this project.
| FFmpegKit Version | Available Until |
|:-----------------:|:------------------:|
| Less than 6.0 | February 1st, 2025 |
| 6.0 | April 1st, 2025 |
<img src="https://github.com/arthenica/ffmpeg-kit/raw/main/docs/assets/ffmpeg-kit-icon-v9.png" width="180">
`FFmpegKit` is a collection of tools to use `FFmpeg` in `Android`, `iOS`, `Linux`, `macOS`, `tvOS`, `Flutter` and `React Native` applications.

@ -1,8 +1,17 @@
#!/bin/bash
# INIT SUBMODULES
# FIX HARD-CODED PATHS
${SED_INLINE} 's|git://git.savannah.gnu.org|https://github.com/arthenica|g' "${BASEDIR}"/src/"${LIB_NAME}"/.gitmodules || return 1
ln -s -f $(which aclocal) ${BASEDIR}/.tmp/aclocal-1.16
ln -s -f $(which automake) ${BASEDIR}/.tmp/automake-1.16
PATH="${BASEDIR}/.tmp":$PATH
if [[ ! -d "${BASEDIR}"/src/"${LIB_NAME}"/gnulib ]]; then
# INIT SUBMODULES
./gitsub.sh pull || return 1
./gitsub.sh checkout gnulib 485d983b7795548fb32b12fbe8370d40789e88c4 || return 1
fi
# ALWAYS CLEAN THE PREVIOUS BUILD
make distclean 2>/dev/null 1>/dev/null

@ -8,9 +8,6 @@ if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libogg} -e
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || return 1
fi
# FIX INCLUDE PATHS
${SED_INLINE} 's/sys\/types/stdint/g' ${BASEDIR}/src/libogg/include/ogg/os_types.h
./configure \
--prefix="${LIB_INSTALL_PREFIX}" \
--with-pic \

Loading…
Cancel
Save