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
onTextTracks, onAudioTracks and onVideoTracks properties are returning duplicate tracks
for example a video with a single audio and video track, it returned duplicate tracks with different index and trackId
audiotrack [{"index": 0, "language": "en", "selected": true, "title": null, "type": "audio/eac3"}, {"index": 1, "language": "en", "selected": false, "title": null, "type": "audio/eac3"}]
Version
6.10.0
What platforms are you having the problem on?
Android
System Version
14
On what device are you experiencing the issue?
Real device
Architecture
Old architecture
What happened?
onTextTracks, onAudioTracks and onVideoTracks properties are returning duplicate tracks
for example a video with a single audio and video track, it returned duplicate tracks with different index and trackId
audiotrack
[{"index": 0, "language": "en", "selected": true, "title": null, "type": "audio/eac3"}, {"index": 1, "language": "en", "selected": false, "title": null, "type": "audio/eac3"}]
video track
[{"bitrate": 0, "codecs": "avc1.640028", "height": 960, "index": 0, "rotation": 0, "selected": false, "trackId": "0:1", "width": 1920}, {"bitrate": 0, "codecs": "avc1.640028", "height": 960, "index": 0, "rotation": 0, "selected": false, "trackId": "1:1", "width": 1920}]
Reproduction Link
No response
Reproduction
use onAudioTracks, onTextTracks and onVideoTracks properties and console tracks
onAudioTracks={e => { console.log('onAudioTracks', e.textTracks); }}
The text was updated successfully, but these errors were encountered: