audio_service icon indicating copy to clipboard operation
audio_service copied to clipboard

StreamSubscription does not listen if url is not mp3

Open alexaung opened this issue 4 years ago • 1 comments

Feature proposal

I am playing the url from mixlr radio (https://edge.mixlr.com/channel/nmtev). In my ui, I am using ValueNotifier to get current song title. So I am listening the current song change listener in following function to get the song title. If url is .mp3 extention, this function is trigger and I got the song title. void _listenToChangesInSong() { _audioHandler.mediaItem.listen((mediaItem) { currentSongTitleNotifier.value = mediaItem?.title ?? ''; if (mediaItem != null) { currentSongNotifier.value = mediaItem; } _updateSkipButtons(); }); }

Motivating use case(s)

I have tested with other radio streaming without .mp3 extension

alexaung avatar Nov 11 '21 18:11 alexaung

I don't understand the feature request. Your issue title looks more like a bug report. Can you clarify which it is? Feature request or bug?

ryanheise avatar Nov 27 '21 16:11 ryanheise