-
Notifications
You must be signed in to change notification settings - Fork 2
A video player for webOS Touchpad
License
error454/TouchPlayer
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A Video Player for the HP Touchpad This project combines a file browser activity and video service for the HP Touchpad. Activity: The file browser is nothing special, just a file browser with a couple parameter switches for mplayer. Service: The service provides an interface to the mplayer binary and also allows parameter passing. *NOTE* The service requires that the mplayer binary is present in its path. To build mplayer you can use the forked version of mplayer for the Touchpad here: https://github.com/error454/mplayer-webos Service Calls: There are 4 service calls available. play killall checkperms getfonts { name: "playFile", kind: "PalmService", service: "palm://com.wordpress.mobilecoder.touchplayer.service", method: "play" } this.$.playFile.call( { source: "/media/internal/some/folder/video.mpg", audio: boolean, font: string, //since v1.0.6 see getFontList below (case insensitive) fontsize: integer, //deprecated v1.0.6 fontscale: integer, //since v1.0.6 charset: "en", //since v1.0.5 --deprecated v1.0.6 movesubs: boolean, //since v1.0.6 moves subs into the black un-used area '-vf expand=:-100::2' onSuccess: callback //since v1.0.6 scale: integer, //since v1.0.7 this adds the command line '-vf scale=:integer' }); { name: "emergencyKill", kind: "PalmService", service: "palm://com.wordpress.mobilecoder.touchplayer.service", method: "killall" } this.$.emergencyKill.call(); { name: "getFontList", kind: enyo.PalmService, service: "palm://com.wordpress.mobilecoder.touchplayer.service", method: "getfonts", onSuccess: "gotFonts" } this.$.getFontList.call(); gotFonts: function(inSender, inResponse, inRequest){ var fonts = inResponse.reply; for(var i = 0; i < fonts.length; i++){ console.log(fonts[i]); } } License: MIT Author: Zachary Burke Twitter: @error454 Website: http://mobilecoder.wordpress.com
About
A video player for webOS Touchpad
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published