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 playing an mp3 file whilst using showNotificationControls, the controls display the "title" value stored in the mp3 file metadata. The value provided in the source prop is ignored.
If the mp3 file does not contain "title" metadata it works correctly.
iOS has the issue. Android works as expected.
Reproduction
No response
Reproduction
Add a value to the "title" metadata field for a given mp3 file (Apple Music is one app where you can do this).
Then specify the metadata.title value in source.
In the notification controls, notice that the value encoded in the mp3 takes precedence.
const source: ReactVideoSourceProperties = {
uri: 'file:///example.mp3',
metadata: {
title: 'Love Me Do', // if the mp3 file contains "title" metadata, this property is ignored
artist: 'The Beatles',
},
}
return (
<Video
source={source}
showNotificationControls
/>
)
The text was updated successfully, but these errors were encountered:
Version
6.3.0
What platforms are you having the problem on?
iOS
System Version
react native 0.73.6. iOS 17.5.1
On what device are you experiencing the issue?
Real device
Architecture
Old architecture
What happened?
When playing an mp3 file whilst using
showNotificationControls
, the controls display the "title" value stored in the mp3 file metadata. The value provided in thesource
prop is ignored.If the mp3 file does not contain "title" metadata it works correctly.
iOS has the issue. Android works as expected.
Reproduction
No response
Reproduction
Add a value to the "title" metadata field for a given mp3 file (Apple Music is one app where you can do this).
Then specify the
metadata.title
value insource
.In the notification controls, notice that the value encoded in the mp3 takes precedence.
The text was updated successfully, but these errors were encountered: