Compare commits

..

1 Commits

Author SHA1 Message Date
Taner Sener 2124955066
Merge pull request #1062 from arthenica/main-doc-update 7 months ago
  1. 14
      README.md
  2. 10
      docs/index.md
  3. 13
      scripts/android/libiconv.sh
  4. 3
      scripts/apple/libogg.sh

@ -1,19 +1,5 @@
# 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,15 +1,5 @@
# 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,17 +1,8 @@
#!/bin/bash
# FIX HARD-CODED PATHS
# INIT SUBMODULES
${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
./gitsub.sh pull || return 1
# ALWAYS CLEAN THE PREVIOUS BUILD
make distclean 2>/dev/null 1>/dev/null

@ -8,6 +8,9 @@ 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