We are struggling with this behaviour:
------ WORKS FINE:
<Video
autoplay={false}
controls={false}
onError={() => {
console.log('Video error');
}}
onCanPlay={() => {
video.current?.play();
}}
src={'https://creativemedia3-rai-it.akamaized.net/podcastcdn/Rai/trailer_raiplay_onlymp4/25563397.mp4'}
key={trailerUrl}
ref={ref => {
video.current = ref;
}}
/>
------ DOES NOT WORK:
<Video
autoplay={false}
controls={false}
onError={() => {
console.log('Video error');
}}
onCanPlay={() => {
video.current?.play();
}}
src={'https://creativemedia3-rai-it.akamaized.net/podcastcdn/Rai/trailer_raiplay_onlymp4/27053802.mp4'}
key={trailerUrl}
ref={ref => {
video.current = ref;
}}
/>
the only difference is src, but both content have same codec.
Thanks for your support.
App Name: RaiPlay