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
When utilizing the setAllowChunklessPreparation(true) for an HLS source timed ID3 metadata is not identified and the onMetadata callback is never called. It appears that a metadata source track is never identified when no sample chunks are downloaded. The DefaultTrackSelector.selectTracks output does not contain any metadata tracks and the Metadata renderer is never enabled.
Reproduction steps
Create a player that utilizes the setAllowChunlessPreparation for HLS with a onMetadata callback on the player - the onMetadata callback will never get called
new HlsMediaSource.Factory(dataSourceFactory)
.setAllowChunklessPreparation(true)
.createMediaSource(uri, mainHandler, eventLogger)
Version of ExoPlayer being used
2.7.0
Device(s) and version(s) of Android being used
Pixel 2 XL Oreo + various emulators
The text was updated successfully, but these errors were encountered:
Hi @scottfennell, great to know you are using chunkless preparation. This is a known limitation, listed in our medium post:
ID3 tracks are not supported (there is no spec-defined way to declare ID3 tracks in playlists).
I will mark this as an enhancement, since one of the options we considered was preemptively declaring a track, like the TS extractor does. A commit ref will appear here once we push the workaround.
Issue description
When utilizing the
setAllowChunklessPreparation(true)
for an HLS source timed ID3 metadata is not identified and the onMetadata callback is never called. It appears that a metadata source track is never identified when no sample chunks are downloaded. The DefaultTrackSelector.selectTracks output does not contain any metadata tracks and the Metadata renderer is never enabled.Reproduction steps
Create a player that utilizes the setAllowChunlessPreparation for HLS with a onMetadata callback on the player - the onMetadata callback will never get called
Version of ExoPlayer being used
2.7.0
Device(s) and version(s) of Android being used
Pixel 2 XL Oreo + various emulators
The text was updated successfully, but these errors were encountered: