Home > Software design >  How to extract audio from video - flutter
How to extract audio from video - flutter

Time:08-26

I'm trying to extract audio from video using Flutter/Dart but didn't find any resources on it. Is there any third party package available for flutter? or any way to do it without relying on third party package?

CodePudding user response:

Yes, you need to use command in ffmpeg_kit_flutter package to do this.

And for extracting audio command you can follow this reference link : How can I extract audio from video with ffmpeg?

  • Related