|
|
10-26-2009, 09:49 PM
|
#1
|
|
Registered User
Join Date: Dec 2003
Posts: 54
|
tivo web browser app
I ran across this the other day.
https://tivo-www.dev.java.net/
Interesting concept. Anyone ever look at this?
Thanks
|
|
|
10-27-2009, 09:41 AM
|
#2
|
|
Registered lÜser
Join Date: Sep 2008
Location: NM
Posts: 155
|
yeah... I started looking into it... basically the idea is run the Java built-in web parsing and send a picture to the TiVo DVR. That's all it does right now (plus handling page up/down).
I started looking into focusing on links and selecting them and such, but I kept hitting a wall with the web page update... it won't do the picture processing correctly when you load a new web page... haven't had time to look further in to it. I still think it's worth persuing... but I am the fanatic for lost causes, so don't take my word for it.
;]
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. David.Blackledge.com:
Enter Webz browser, Solitaire/FreeCell, Calendar, Map..., TyPo auto-completion, QuickKeyboard, widgets... To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. hmedev.wikidot.com (lists known apps!)
|
|
|
11-09-2009, 03:51 PM
|
#3
|
|
Registered lÜser
Join Date: Sep 2008
Location: NM
Posts: 155
|
FYI, this morning I took a quick look at what I had tried with this...
I had gotten it to focus on links with the arrow buttons and activate a link with select, but it was hit-or-miss whether the link worked (I think it's failing on forwarded requests or something) and it seems to stop responding after a successful 2nd page load.
Again, no time to mess with it lately, but probably the next things I'll try are
a) pre-process links to make sure the result will be good, and
b) rebuild the whole environment with each page load so it doesn't stop responding.
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. David.Blackledge.com:
Enter Webz browser, Solitaire/FreeCell, Calendar, Map..., TyPo auto-completion, QuickKeyboard, widgets... To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. hmedev.wikidot.com (lists known apps!)
|
|
|
12-02-2009, 03:44 PM
|
#4
|
|
Registered User
Join Date: Nov 2005
Posts: 458
|
I tried making a webpage viewer a while back using wmcbrine's HME for Python plus a hacked together Visual Basic back end that retrieved the images of the webpages. To achieve greater resolution than the Tivo's limit for one image, I split the webpage image in to multiple images and then laced them together after they were transfered to the Tivo.
The concept worked good but I never had the desire to finish it because I found that I really didn't have a need to view webpages on my TV. I had a working prototype but I found myself going to the computer to view those pages even thou they were accessible from my TV.
|
|
|
12-02-2009, 05:54 PM
|
#5
|
|
Registered lÜser
Join Date: Sep 2008
Location: NM
Posts: 155
|
I'd like to get such a thing working (or, dare I say, a "simple" HTML renderer written through HME itself) to allow for viewing of some simple content... mobile versions of websites ("My TiVo is my Cell Phone"), RSS feed content that is in HTML, etc... HTML is just so ubiquitous and web-centric that it would definitely have uses... but it has to be done as a module that can be used from another app, not an application unto itself.
What'd be better is a new HME Stream type for text/html... but I don't think they'll add that for us ;]
But you could sort of simulate it through Application-as-stream... a carefullly designed "web browser" application could be displayed by any other application and if it's designed for that kind of use, there could be a variety of "escape" keys/sequences to return control to the original application without getting rid of the "browser."
*ramble ramble*
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. David.Blackledge.com:
Enter Webz browser, Solitaire/FreeCell, Calendar, Map..., TyPo auto-completion, QuickKeyboard, widgets... To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. hmedev.wikidot.com (lists known apps!)
|
|
|
12-02-2009, 10:33 PM
|
#6
|
|
Registered User
Join Date: Nov 2005
Posts: 458
|
I've thought about using a web browser SDK such as WebKit to interpret the webpage then through HME render the page on the Tivo. But was never interested enough to pursue it.
|
|
|
12-03-2009, 08:53 PM
|
#7
|
|
Registered User
Join Date: Dec 2003
Posts: 54
|
Quote:
Originally Posted by Allanon
I've thought about using a web browser SDK such as WebKit to interpret the webpage then through HME render the page on the Tivo. But was never interested enough to pursue it.
|
I don't know if you noticed http://tivocommunity.com/tivo-vb/sho...d.php?t=436607 but I have taken a slightly different tack. I am using Xvfb and an X window manager and a tivo app that transfers the image of the screen to the tivo. The "mouse" is controlled by the TiVo remote. For a browser, one can launch firefox or konqueror (or any app for that matter.)
One goal is to run MythWeb and access it via a browser from the TiVo. Still playing around, but I have a rudimentary version running.
|
|
|
12-05-2009, 11:31 AM
|
#8
|
|
Registered User
Join Date: Nov 2005
Posts: 458
|
A while back I played around with sending desktop screen capture images to the Tivo and controlling the cursor with the remote but using the Tivo remote to control the cursor really turned me off. But last night I had an idea to have the Tivo cursor mimic the computer's cursor and to use my RF keyboard which has a mouse pad to control the cursor. This worked out pretty well, the cursor moved in real time and was easy to use even thou there was a pause every 7 seconds due to the Tivo updating the screen. I was using a resolution of 720p because my computer's resolution couldn't be set lower than 800x600 and I didn't feel like messing with the coordinate conversions for the cursor. But if I did lower the screen resolution then the screen could probably be updated every 3 seconds but that would also probably interfere with the control of the cursor.
Overall it worked but I still don't think I would use it instead of the computer. Below is the HME Python code that I used. It is Windows specific because of the mouse functions. I'm not including the cursor image or any of the HME Python SDK.
|
|
|
02-02-2010, 01:41 AM
|
#9
|
|
Registered User
Join Date: Nov 2005
Posts: 458
|
Quote:
Originally Posted by tweety562
What is that?
|
If you are referring to my attachment, it is Python source code for a program that displays the computer desktop on a Tivo and allows you to use the Tivo remote or a mouse to control the computer cursor. This source code requires the use of wmcbrine's HME for Python plus a bitmap of a cursor.
|
|
|
02-02-2010, 11:44 AM
|
#10
|
|
joined the 10k club
Join Date: Jan 2003
Location: St. Pete, FL
Posts: 10,766
|
Looks like that's just a spammer account trying to up his post count.
__________________
S4~190 HD hrs w/1TB eSATA (M-Card w/TA, MoCA) | S3~150 HD hrs (S-Cards, MoCA)
XL~150 HD hrs (M-Card, MoCA) | S2~130 SD hrs (offline)
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
03-16-2010, 06:23 AM
|
#11
|
|
Registered User
Join Date: Mar 2010
Location: Latvia
Posts: 1
|
tivo web browser app
Meh, TiVo still relies on cable companies getting cablecard right - which they will never ever do. I tried - I gave up after 6 months of bad cards, techs that didnt know anything, and channel authorizations that would last about an hour.
Boxee = freedom
|
|
|
04-13-2010, 01:19 AM
|
#12
|
|
Registered User
Join Date: Aug 2006
Posts: 10
|
Anyone remember WebTV? I used one, a friend of mine had it and I helped set it up and such. I found it slow and clunky, but, it was easier for a computer illiterate person to deal with than a PC, IMHO. A TiVo with this capability and ease of use would be awesome. I'm using Galleon, and trying to get pyTivo to work. Pytivo is giving me a massive headache, but at least I got Galleon working, mostly.
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|