audioplayers icon indicating copy to clipboard operation
audioplayers copied to clipboard

A Flutter package to play multiple audio files simultaneously (Android/iOS/web/Linux/Windows/macOS)

Results 279 audioplayers issues
Sort by recently updated
recently updated
newest added

Android device is ok, but volume is very low on ios (xsmax os version: 15.5). I see some same issue, but close with 1.0.0-rc4 fix. now i am use 1.0.1.

bug
help wanted
platform-ios

# Description This pull request makes audio playback not depend on file extension on Windows by adding the [`MF_RESOLUTION_CONTENT_DOES_NOT_HAVE_TO_MATCH_EXTENSION_OR_MIME_TYPE`][source-resolver-flags] flag. Before this pr, the file extension of an audio file...

After setting the source I am trying to get the duration of the audio file. Unfortunately, the answer is zero. The code: ``` await player.setSource(event.source); var duration = await player.getDuration();...

bug

# Description Low Latency mode does not work on Android. I think fix #1193 problem. Here is sample code. Work fine ```dart final file = AssetSource("sounds/sound.mp3"); final player = AudioPlayer();...

just tried to use the latest audioplayer 1.0.0 , get dependencies was fine but when i tried to run my app this message appeared, is this a bug? `/D:/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_platform_interface-1.0.0/lib/api/audio_context_config.dart:242:28: Error:...

bug

Getting Below Error when try to play the local sounds in android (app loads without issue) The same code works without any issue in iOS Also please note sounds are...

bug

Hello 👋 when I try to play audio from the internet I face this error in debug console any solution? V/MediaPlayer( 2137): resetDrmState: mDrmInfo=null mDrmProvisioningThread=null mPrepareDrmInProgress=false mActiveDrmScheme=false V/MediaPlayer( 2137): cleanDrmObj:...

bug

```dart Flutter Exception PlatformException(Unexpected error!, null, java.lang.IllegalStateException at android.media.MediaPlayer._stop(Native Method) at android.media.MediaPlayer.stop(MediaPlayer.java:1357) at j7.i.stop(Unknown Source:2) at j7.m.A(Unknown Source:18) at i7.d.n(Unknown Source:183) at i7.d.d(Unknown Source:0) at i7.d$c.b(Unknown Source:14) at i7.d$c.invoke(Unknown Source:4)...

bug

Low Latency mode does not work on Android **Full Description** Using sound player with `AssetSource` and `lowLatency` mode does not work. No sound is played. No error either, it just...

``` _audioPlayer = await AudioCache().play("song.mp3); _audioDurationMS = await _audioPlayer.getDuration(); print(_audioDurationMS); ``` The above prints this in debug mode: ``` I/flutter (31709): 110132 ``` And this in release mode: ``` I/flutter...

bug