
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-ffmpeg-wrapper
Advanced tools
A native FFmpeg wrapper for React Native with support for multiple overlay images and texts.
A simple React Native wrapper for running FFmpeg commands on Android and iOS using native FFmpegKit.
npm install react-native-ffmpeg-wrapper
# or
yarn add react-native-ffmpeg-wrapper
android/app/build.gradle:
(If using ffmpeg-kit-react-native, this is managed for you. If not, add the correct FFmpegKit dependency.)implementation 'com.arthenica:ffmpeg-kit-full:6.0.2' # or the version matching your bridge
cd ios
pod install
If you are using React Native 0.60+, autolinking should work. Otherwise, link manually:
npx react-native link react-native-ffmpeg-wrapper
import { runFFmpegCommand } from 'react-native-ffmpeg-wrapper';
const command = '-i input.mp4 -vf scale=320:240 output.mp4';
runFFmpegCommand(command)
.then(() => {
// Success
})
.catch((err) => {
// Handle error
});
See the example/ directory for a full React Native app demonstrating video recording, processing, and playback using this wrapper.
cd android && ./gradlew clean && cd ..
cd ios && pod install --repo-update && cd ..
FfmpegWrapper.mm.MIT
Made with create-react-native-library
FAQs
A native FFmpeg wrapper for React Native with support for multiple overlay images and texts.
The npm package react-native-ffmpeg-wrapper receives a total of 0 weekly downloads. As such, react-native-ffmpeg-wrapper popularity was classified as not popular.
We found that react-native-ffmpeg-wrapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.