Skip to content
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

onMetadata is not called when player is paused #2264

Open
denizdemirciglobal opened this issue Mar 24, 2025 · 1 comment
Open

onMetadata is not called when player is paused #2264

denizdemirciglobal opened this issue Mar 24, 2025 · 1 comment

Comments

@denizdemirciglobal
Copy link

I have a question about the override fun onMetadata(metadata: Metadata) callback of the player.

To briefly explain the usecase, I am playing a live stream on my app. As soon as the live stream begins, onMetadata is called and I can extract the IcyInfo.

However, when I pause the stream, I switch to replay mode, which is another stream. I need onMetadata to get called at this point for my new stream so that I can extract metadata which is of type CommentFrame this time. However, as the stream is initially in a PAUSED state, onMetadata is not called. As soon as I start playing the stream, I receive my CommentFrames.

So my question is, is there a way, or should there be a way for onMetadata to be called even when the player is paused?

override fun onMetadata(metadata: Metadata) {
            when (val entry = metadata[0]) {
                is IcyInfo -> iceCastMetadataModel.accept(entry.rawMetadata.decodeToString())
                is CommentFrame -> hlsMetadataExtractor.onNewResponse(entry.text.toByteArray())
            }
        }
@microkatz
Copy link
Contributor

@denizdemirciglobal

Hi! It could be helpful if you provided a bug report? If you cannot share one publicly, please send them to [email protected] with the subject
Issue #2264. Please also update this issue to indicate you've done this.

Secondly, have you tried setting the value outputMetadataEarly with the MetadataRenderer to true? Does that help provide the metadata event more quickly?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants