-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VorbisComment keys should be compared case-insensitively #876
Comments
When I play https://ice.coldstar.online/high.ogg in the demo app, I see the following in logcat:
So it looks like the title is being parsed. It doesn't seem to be propagated to I checked the implementation of
Checking for I'll update the implementation of If this doesn't resolve your issue, or I've misunderstood the problem, please do clarify :) |
That sounds like a solution for this issue. |
Issue: #876 #minor-release PiperOrigin-RevId: 590215918
Issue: androidx/media#876 #minor-release PiperOrigin-RevId: 590215918
Use case description
There is no
icy-title
tag in ogg formated stream, this leads to the fact that all android apps that use this lib cannot display current playing metadata.here is ffprobe results:
Proposed solution
Consider parsing
title
tag in ogg stream.Alternatives considered
Tryied to apply
icy-title
to ogg stream manually, but it turned out that it just doesn't support it.The text was updated successfully, but these errors were encountered: