Languages

Menu
Sites
Language
[TV] HLS Streaming

Hello,

I try HLS video streaming on Tizen smart tv but I can not success.

I using below code.

How can I using HSL streaming protocol in Tizen?  Help me~~~

<html lang="en">
<head>
    <meta charset="utf-8">
    <title>video stream test</title>
</head>
<body>
    <div id="welcome">
        <video id="video"
            src="http://playertest.longtailvideo.com/adaptive/bunny/manifest.m3u8|COMPONENT=HLS"
            controls="controls" autoplay="autoplay" width="320" height="240">
        Your browser does not support the video tag. </video>
    </div >
</body>
</html>

 

Edited by: John Ixion on 04 Jun, 2015

Responses

5 Replies
Vikram

Hello,

How about you try an attached code in below TV forum? It also is related HLS.

     http://www.samsungdforum.com/SamsungDForum/ForumView/df3455b529adf7c4?forumID=3c694f21afcae32f

Hope this help you.

AVSukhov

Hello,

Try to add your external resource to access tag in config.xml

bruce kang

Hello,

I tried sample code you gave me above link.

But it cannot be played.

Would you please give me some sample code?

I don't know what is external resource and access tag?

And why dose it need config.xml?

 

Thanks.

Marco Buettner

read the documentation and you will find the answer :)

Seoghyun Kang

Hello,

 

If you want to get the network resource permissions, you need to use the "access" property at the config.xml.

 

The following example show the setting in the config.xml file.

<access origin="*" subdomains="true"/>

 

 

And you also need to add the privilege at the config.xml.

<tizen:privilege name="http://tizen.org/privilege/internet"/>