isFFmpegAvailable method
To know during runtime if FFmpeg is linked with the App.
returns true if FFmpeg is available (probably the FULL version of Flutter Sound)
Implementation
bool isFFmpegAvailable() => (kIsWeb) ? false : _hasFFmpeg;
To know during runtime if FFmpeg is linked with the App.
returns true if FFmpeg is available (probably the FULL version of Flutter Sound)
bool isFFmpegAvailable() => (kIsWeb) ? false : _hasFFmpeg;