Opening Files with Installed Applications in Tizen TV

Original Created Aug 23, 2016 | Regeneration Apr 22, 2026

I've developed a file browser web application that allows users to open files using installed applications. The application works well on mobile devices using the following code:

var appControl = new tizen.ApplicationControl(
    'http://tizen.org/appcontrol/operation/view',
    path_to_file,
    file_mime,
    null,
    null
);

However, when testing on Tizen TV (using the simulator), I receive an error indicating no suitable application is available to open video/audio files.

Questions:

  1. Do I need to implement my own video/audio player for this solution?
  2. Is there a downloadable video/audio application that can be used to open these files?

Problem Understanding

The issue occurs when trying to use the ApplicationControl API to open media files on Tizen TV, where the system cannot find an appropriate application to handle the file types.

Solution Methods

  1. Using Native TV Player:

    • Tizen TV has a native video player that should handle common media formats
    • Try specifying the package name/app ID of the native player in your ApplicationControl
  2. Alternative Approach:

Code Examples

For implementing your own player, you might use:

// Example using AVPlay API
var player = new AVPlay();
player.open("file://" + path_to_file);
player.play();

Additional Tips

  • Test on actual TV hardware if possible, as simulator behavior might differ
  • Check file permissions and paths when accessing files
  • For TV-specific questions, consult the Tizen TV developer community

Customize your cookie preferences

You can enable or disable non-essential cookies. Essential cookies are always on to ensure the site works properly and to keep you signed in.

Necessary

These cookies are necessary for the website to function properly and cannot be switched off. They help with things like logging in and setting your privacy preferences.

Always on

Analytics

These cookies help us improve the site by tracking which pages are most popular and how visitors move around the site.

Enable analytics cookies
Public Forum Public Forum
Employees only. Please sign in with your company account.