How can I load song image in notification using audio_service and just_audio

Viewed 19

Here's my code.

  MediaItem item = MediaItem(
      id: song.id.toString(),
      title: song.title,
      duration: Duration(milliseconds: song.duration ?? 0),
      album: song.album,
      artist: song.artist,
      artUri: Uri.parse(song.uri!),//   content://media/external/audio/media/36
      extras: {'url': song.uri!});

The console was:

D/skia (13044): --- Failed to create image decoder with message 'unimplemented' W/System.err(13044): java.lang.NullPointerException: key == null || value == null W/System.err(13044): at android.util.LruCache.put(LruCache.java:169) W/System.err(13044): at com.ryanheise.audioservice.AudioService.loadArtBitmap(AudioService.java:238) W/System.err(13044): at com.ryanheise.audioservice.AudioService.setMetadata(AudioService.java:740) W/System.err(13044): at com.ryanheise.audioservice.AudioServicePlugin$AudioHandlerInterface.lambda$onMethodCall$2$com-ryanheise-audioservice-AudioServicePlugin$AudioHandlerInterface(AudioServicePlugin.java:819) W/System.err(13044): at com.ryanheise.audioservice.AudioServicePlugin$AudioHandlerInterface$$ExternalSyntheticLambda0.run(Unknown Source:6) W/System.err(13044): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) W/System.err(13044): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) W/System.err(13044): at java.lang.Thread.run(Thread.java:923) D/skia (13044): --- Failed to create image decoder with message 'unimplemented' W/System.err(13044): java.lang.NullPointerException: key == null || value == null W/System.err(13044): at android.util.LruCache.put(LruCache.java:169) W/System.err(13044): at com.ryanheise.audioservice.AudioService.loadArtBitmap(AudioService.java:238) W/System.err(13044): at com.ryanheise.audioservice.AudioService.setMetadata(AudioService.java:740) W/System.err(13044): at com.ryanheise.audioservice.AudioServicePlugin$AudioHandlerInterface.lambda$onMethodCall$2$com-ryanheise-audioservice-AudioServicePlugin$AudioHandlerInterface(AudioServicePlugin.java:819) W/System.err(13044): at com.ryanheise.audioservice.AudioServicePlugin$AudioHandlerInterface$$ExternalSyntheticLambda0.run(Unknown Source:6) W/System.err(13044): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) W/System.err(13044): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) W/System.err(13044): at java.lang.Thread.run(Thread.java:923)

0 Answers
Related