Reputation: 889
When I built my Electron app for production, I noticed ffmpeg.dll
was included. Why is ffmpeg bundled with Electron?
Upvotes: 5
Views: 1877
Reputation: 467
You may know that electron uses chromium for desktop applications building.Chromium has a fork of FFMPEG
that it builds from source to generate the ffmpeg.dll
file that goes to Electron builds for Windows.
You can read more about it from this link
Upvotes: 2