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

addMetadataOutput #20

Open
JohnGeorgiou opened this issue Mar 10, 2020 · 3 comments
Open

addMetadataOutput #20

JohnGeorgiou opened this issue Mar 10, 2020 · 3 comments

Comments

@JohnGeorgiou
Copy link

Hi and thanks for the example.
Making some tests with your code I try to get the strem metadata, adding the following listener at the RadioService / exoplayer

exoPlayer.addMetadataOutput(new MetadataOutput() {
@OverRide
public void onMetadata(Metadata metadata) {
Log.i("METADATA", ">>> METADATA RECEIVED" );
for (int i = 0; i < metadata.length(); i++) {
Metadata.Entry entry = metadata.get(i);
Log.i("METADATA", entry.toString() );
}
}
});

I dont get any results, but using the same code at the exoplayer demo https://github.com/google/ExoPlayer the listener returns the metadata succesfully.

Any advice?

@rpinto18
Copy link

@JohnGeorgiou did you solve? Thanks

@JohnGeorgiou
Copy link
Author

I abandoned this for a while,I'll try to solve it in the near future and let you know

@asayushg
Copy link

asayushg commented Sep 5, 2023

@JohnGeorgiou did you solve it?
Thanks!

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

No branches or pull requests

3 participants