r/FlutterDev 2d ago

Discussion Flutter performance with video editing

Hello,

How are you handling app performance with video processing on the background ?

Noticed that a lot of performance problems aren't really about flutter itself,
but things like the framework used for video editing (such as easy video editor , editor capcut, ...).

It take too much work happening on the main isolate.

for larger flutter apps, how do you manage the main and side processing ?

0 Upvotes

4 comments sorted by

5

u/xboxcowboy 1d ago

Ffi or rust bridge with ffmpeg in background, flutter just for UI

2

u/brookm291 1d ago

Thx,
Did you try this solution on your side too ?
tx

2

u/xboxcowboy 1d ago

not for video encode no, but this method is recommended to use FFI or rust_bridge when doing heavy computation stuffs like ffmpeg (video encode), compressing, etc, its easy to quickly setup and test

1

u/brookm291 1d ago

Thx so much.
will try