ryanheise
ryanheise
Your StackOverflow answer is the correct idea. I was hoping to implement https://github.com/ryanheise/just_audio/issues/141 first, since the demo example contains a playlist and ideally I could display the duration next to...
@gOzaru You might find #585 helpful, although it is based on an older version of audio_service. There is also the source code of just_audio_background which implements this for the new...
I just read your S/O question although I was not clear on what you were asking: > My question is: > Can the data included inside media item have the...
Your S/O question has the following code which suggested you may not have understood how `copyWith` works: ```dart songInfo.copyWith(duration: durSong); ``` But you may want to update your S/O question....
This is difficult to answer because the latest example already demonstrates how to set the position, and the documentation also describes how it is supposed to be used. And if...
Congratulations @gOzaru on arriving at a solution. I stepped away for dinner and when I came back I found you had made a lot of progress. I think we should...
The reason is that these methods were not intended as a public API, they were intended to encode the data in order to send over the platform channel, and since...
It sounds like there's no language support for that yet. Although still, I would suggest your app architecture should probably change to be less dependent on audio_service's data format if...
As mentioned above, this plugin may change its data format over time so you should not depend on it, especially for persistence. > This functionality would be used by most...
> I think a custom activity should be declared a recommended option for Android implementation, as it is less intrusive and more scalable (if you ever need to implement other...