Releases: heristop/ffmpeg-video-composer
Releases · heristop/ffmpeg-video-composer
0.3.0
Major Changes
- Dependencies: Removed external FFmpeg libraries dependencies
- Removed
ffmpeg-static
- Removed
ffprobe-static
- Removed
fluent-ffmpeg
This change makes the library more lightweight and flexible by removing the bundled FFmpeg dependencies. Users now have full control over their FFmpeg setup and can use their system's FFmpeg installation or manage FFmpeg binaries themselves.
Before
Previously, the library bundled FFmpeg-related npm packages which could:
- Lead to duplicate FFmpeg installations
- Force specific FFmpeg versions
- Increase the package size
After
The library now uses native FFmpeg binaries:
- Smaller package footprint
- More flexibility in FFmpeg version choice
- Better compatibility with existing FFmpeg installations
Note for users
Make sure you have FFmpeg installed on your system. You can download it from:
- Official FFmpeg website: https://ffmpeg.org
- Or use your system's package manager (apt, brew, etc.)