![]() |
TouchPlayer 1.0.7 |
Archive for the ‘Homebrew’ Category
TouchPlayer Documentation
Posted by error454 on 10/16/2011
Posted in WebOS, Homebrew | Tagged: webos, ffmpeg, vlc, homebrew, mplayer, mkv, avi, flv, touchplayer, touchpad | 150 Comments »
Note to self: Port mplayer to Touchpad
Posted by error454 on 09/25/2011
I have been working on porting mplayer over to the Touchpad. When I work on projects, I write a note to myself at the end of the day to remember where I left off. This is a copy of those notes.
Posted in WebOS, Homebrew | Tagged: webos, ffmpeg, vlc, homebrew, mplayer, mkv, avi, stride, yuv, fragment shader, shader, draw_slice, draw_frame | 11 Comments »
Play mkv, avi, flv and wmv files on webOS Touchpad
Posted by error454 on 08/26/2011

This article is no longer maintained, please see TouchPlayer Documentation.
One thing the touchpad clearly lacks is the number of supported video formats available. Out of the box, the mp4 container with h.264 codec is pretty much it. If all of your videos are in this format already, you can benefit from the hardware acceleration that the stock video player provides for this codec.
If you want to play any other format, you have a few options:
- Convert your existing media to mp4 h.264 with an app like Handbrake. Leave it running overnight to take advantage of spare CPU cycles.
- Run a media server like Playon that transcodes media on the fly. You need a reasonably fast cpu to do this (atom powered servers do not apply) as you are converting and serving the video real-time.
- Get a new video player for your touchpad.
This article is going to explore the 3rd option in more detail. Read the rest of this entry »
Posted in Homebrew, WebOS | Tagged: avi, ffmpeg, homebrew, mkv, mplayer, vlc, webos | 55 Comments »
WebOS Camera Patch: Advanced Camera Configuration
Posted by error454 on 07/10/2011
UPDATE 2: What was formerly the Self-Timer and Burst-Frame patch has been replaced. To maintain compatibility with older camera patches, the new patch combines the following patches into a single Tweaks-supported patch:
- Video camera flashlight
- Capture with volume-key
- Shutter sound
- Self-Timer and Burst-Frames Read the rest of this entry »
Posted in Homebrew, WebOS | Tagged: burst, camera, patch, timer, webos | 33 Comments »
Lab Notes – Hacking file_storage.c
Posted by error454 on 03/25/2011
Progress Update
I made attempt 3 to use file_storage.c as a means of presenting an ISO image on the Pre as a CD-ROM drive over USB. I tried grabbing several of the more recent versions of file_storage.c from git.kernel.org in an attempt to back-port them to the 2.6.24 kernel.
I found the following: Read the rest of this entry »
Posted in Homebrew, WebOS | Tagged: file_storage.c, hacking, kernel, mass storage, webos | 4 Comments »
Using the Homebrew Javascript Service Framework
Posted by error454 on 03/18/2011

The Homebrew JS Service Framework
WebOS 2.x allows us to create services using node.js. Services are great, but by default they run in a jail that prevents them from accessing the entire device. For many services this is fine because there is no need to do anything outside of this jail. On the other hand, there are some services that are only useful if they have root access. To obtain root access, these services can use Jason Robitaille’s Homebrew Javascript Service Framework for webOS, hereto referred to as HJSF.
This article is going to explore the essential configuration requirements and validation steps for using HJSF in a node.js service.
Posted in Homebrew, WebOS | Tagged: framework, homebrew, js, node, node.js, root, service, webos | 4 Comments »