munim-ffmpeg 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +2 -2
- package/scripts/binaries.json +2 -2
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
### FFmpeg execution
|
|
95
95
|
|
|
96
96
|
- 🎬 **Argument-array commands:** FFmpeg's own CLI code paths, without shell parsing or quoting
|
|
97
|
-
- 🆕 **FFmpeg 9.0.
|
|
97
|
+
- 🆕 **FFmpeg 9.0.2:** The current upstream release, identical on both platforms
|
|
98
98
|
- ⚡ **Asynchronous sessions:** Keep the React Native thread responsive during native work
|
|
99
99
|
- 📝 **Live logs:** Receive FFmpeg output as it is produced
|
|
100
100
|
- 📈 **Encoding statistics:** Track time, size, bitrate, speed, frames, FPS, and quality
|
|
@@ -183,11 +183,11 @@ await execute([
|
|
|
183
183
|
|
|
184
184
|
## Bundled FFmpeg builds
|
|
185
185
|
|
|
186
|
-
Both platforms run **FFmpeg 9.0.
|
|
186
|
+
Both platforms run **FFmpeg 9.0.2**, built from [ffmpeg.org](https://www.ffmpeg.org/) by the scripts in [`scripts/ffmpeg/`](./scripts/ffmpeg). There is no FFmpegKit here: that project was retired in 2025 and pinned to FFmpeg 6.0.
|
|
187
187
|
|
|
188
188
|
| | iOS | Android |
|
|
189
189
|
| --------------- | ------------------------------------------------------- | ------------------------------- |
|
|
190
|
-
| FFmpeg | 9.0.
|
|
190
|
+
| FFmpeg | 9.0.2 | 9.0.2 |
|
|
191
191
|
| Architectures | arm64 device, arm64 + x86_64 simulator | arm64-v8a, armeabi-v7a, x86_64 |
|
|
192
192
|
| Hardware codecs | VideoToolbox, AudioToolbox | MediaCodec |
|
|
193
193
|
| TLS | SecureTransport | mbedTLS |
|
|
@@ -882,7 +882,7 @@ if (result.success) {
|
|
|
882
882
|
|
|
883
883
|
The JavaScript, TypeScript, Swift, Kotlin, C core, and generated Nitro bridge in this repository are Apache-2.0.
|
|
884
884
|
|
|
885
|
-
The bundled FFmpeg 9.0.
|
|
885
|
+
The bundled FFmpeg 9.0.2 is **LGPLv3**, on both platforms. It is configured without `--enable-gpl`, so no x264, x265, xvid, or vid.stab. The external libraries it links are LAME (LGPL), Opus (BSD), libvpx (BSD), dav1d (BSD), libaom (BSD 2-clause with the Alliance for Open Media patent licence), openh264 (BSD 2-clause), libass (ISC), FreeType (FTL, BSD-style with credit), HarfBuzz (MIT-style), FriBidi (LGPL), and, on Android only, mbedTLS (Apache-2.0), fontconfig (MIT-style), and expat (MIT). None of them change the LGPL story.
|
|
886
886
|
|
|
887
887
|
> **A note on H.264 patents.** Hardware encoders are covered by the licences device manufacturers already pay for. Software H.264 encoding through `libopenh264` is not: Cisco's royalty coverage applies to _their_ prebuilt binary, and this package builds openh264 from source. If you ship software H.264 encoding at scale, check where you stand with AVC licensing. Hardware encoders avoid the question entirely, which is why `pickEncoder` should list them first.
|
|
888
888
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "munim-ffmpeg",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Fast FFmpeg and FFprobe for Expo and React Native, powered by Nitro Modules",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"module": "lib/index",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"nitrogen": "0.36.5",
|
|
119
119
|
"prettier": "^3.8.3",
|
|
120
120
|
"react": "19.2.3",
|
|
121
|
-
"react-native": "0.86.
|
|
121
|
+
"react-native": "0.86.3",
|
|
122
122
|
"react-native-nitro-modules": "0.36.5",
|
|
123
123
|
"semantic-release": "^25.0.9",
|
|
124
124
|
"typescript": "^6.0.3",
|
package/scripts/binaries.json
CHANGED