You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: