Johann Weiher

Results 70 comments of Johann Weiher

All in all it is/was great from Xceed to do so in past, thank you. As startup or small company its not that easy to start with Xceed now. I...

And when is it a commercial project? The [COMMUNITY LICENSE AGREEMENT](https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md) doesn't describe that... and I think it's all a matter of interpretation. Have projects where someone buys me a...

Set `IsMetadataExtracted` after adding the stream url: ```csharp var mediaItem = await CrossMediaManager.Current.Play(url); CrossMediaManager.Current.Queue.Current.IsMetadataExtracted = false; ``` For more infos you can look at [this](https://github.com/Baseflow/XamarinMediaManager/pull/664)

Sure, this works... but: Not every stream delivers the information. Try this: ```csharp var url = "http://www.rockantenne.de/webradio/channels/heavy-metal.aac.pls"; var mediaItem = await CrossMediaManager.Current.Play(url); CrossMediaManager.Current.Queue.Current.IsMetadataExtracted = false; mediaItem.PropertyChanged += MediaItem_PropertyChanged; ``` You...

On which OS do you try? I run this on iOS.

I saw into UWP: there is no implementation to read meta data from stream: https://github.com/Baseflow/XamarinMediaManager/blob/503834460e6e76703dfcfc55b390f65e6131d60a/MediaManager/Platforms/Uap/Media/StorageFileProvider.cs#L15 Android not tested yet.

I posted you the problem: Local files are different to streams. Test this url stream with iOS as target: http://www.rockantenne.de/webradio/channels/heavy-metal.aac.pls

Make a small demo project. I will look into it.

Thats no demo project... Thats not the url I have posted which i know there is metadata in it...

Would love to see it for all apps which implement the notification player.