Hi all,
I'm using a Tizen CAPH3 app to run a Web Application ( MVC C# ) inside a Samsung Tv.
(My config.xml file :
<?xml version="1.0" encoding="UTF-8"?> <widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/CaphEmptyTemplateforjQuery" version="0.2.2" viewmodes="maximized"> <tizen:allow-navigation>*</tizen:allow-navigation> <tizen:application id="bVsjPAKxYq.CaphEmptyTemplateforjQuery" package="bVsjPAKxYq" required_version="4.0"/> <tizen:content-security-policy>*</tizen:content-security-policy> <icon src="icon.png"/> <name>AnalogWatch</name> <tizen:privilege name="http://tizen.org/privilege/tv.inputdevice"/> <tizen:privilege name="http://tizen.org/privilege/tv.window"/> <tizen:profile name="tv-samsung"/> <tizen:setting screen-orientation="landscape" context-menu="enable" background-support="disable" encryption="disable" install-location="auto" hwkey-event="enable"/> <tizen:content src="http://URLWEBAPP"/> </widget>
)
I would use AVPLAY functionalities from WEBAPIS (<script type="text/javascript" src="$WEBAPIS/webapis/webapis.js"></script>) inside my Web app.
If i add the webapis directly inside my webapp, the avplay functions aren't loaded.
There's a way to add the webapis from tizen and use the avplay functions inside my MVC WebApp ?