I am developing a youtube live stream function by youtube iframe on Tizen TV. Initially, this function only worked only in the browser rather than on Tizen TV. After I added
<access origin="*" subdomains="true"></access>
in config.xml, this functino works on Tizen TV as well.
However, one specific channel still can’t display on Tizen TV.
The specific channel “CKjSm5ZeehE” doesn’t work.
const iframeSrc = "https://www.youtube.com/embed/CKjSm5ZeehE?autoplay=1&origin=http://localhost:3000&fs=0&playsinline=1";
return (
<iframe
id="player"
title="YouTube video player"
width="640"
height="360"
src={iframeSrc}
allowFullScreen={false}
/>
)
Other channels, such as 4Uc00FPs27M, ylYJSBUgaMA, and so on, work on Tizen TV.
const iframeSrc = "https://www.youtube.com/embed/4Uc00FPs27M?autoplay=1&origin=http://localhost:3000&fs=0&playsinline=1";
return (
<iframe
id="player"
title="YouTube video player"
width="640"
height="360"
src={iframeSrc}
allowFullScreen={false}
/>