No description
  • Python 98.3%
  • C 1.4%
  • XSLT 0.3%
Find a file
2008-04-02 23:08:37 -05:00
Cheetah Merged KRKeegan's changes 2007-02-27 03:53:09 +00:00
eyeD3 pyTivo 2006-12-23 08:56:35 +00:00
plugins If I don't have optres set we should output what my config file says. 2008-04-02 23:08:14 -05:00
templates Added push support. 2008-03-26 16:31:35 -05:00
.gitignore Ignore debug output 2007-11-19 20:20:04 -06:00
beacon.py Added the ability to listen for/send beacons on TCP port 2190, for use with the manual server menu. (Use "beacon = listen" in pyTivo.conf to listen only, or "beacon = 255.255.255.255 listen" (or whatever) to both broadcast and listen. With no beacon keyword, no listening occurs.) 2007-12-29 22:45:50 -05:00
config.py Try to read the config from etc 2008-04-02 23:08:37 -05:00
debug.py User defined debug output path 2008-03-04 20:32:56 -06:00
httpserver.py Fixed bug with double quoting 2008-03-26 21:13:53 -05:00
lrucache.py pyTivo 2007-01-10 04:47:12 +00:00
mind.py Added Variable Length Integers for string size fields 2008-03-28 00:28:44 -05:00
plugin.py Adding back in failed plugin errors 2008-03-26 22:27:32 -05:00
pyTivo.conf.dist add admin to dist 2008-03-09 21:01:25 -05:00
pyTivo.py Merge branch 'master' of git://repo.or.cz/pyTivo/wgw 2008-03-02 19:36:31 -08:00
pyTivoConfigurator.pyw Use getboolean() where appropriate. 2008-01-12 19:36:02 -05:00
pyTivoService.py Cosmetic changes. 2008-02-02 14:13:35 -05:00
README Word-wrap this. To Do: It's outdated and incomplete. 2008-02-02 21:05:12 -05:00

---Changes
- Transfer End Properly

- File Sizes are estimated now. Sending 6gig estimates for a 400meg file 
  caused TiVo to unnecessarily dump shows for space. New estimation will 
  generally still be over but by a reasonable amount now.

- Ratios are altered.  Filed that are almost 4:3 or 16:9 will be crammed 
  into those formats, looks better on TV and streching image by less 
  than 1% is not noticable.

- Padding for videos that have a lower ratio than 4:3 is added. This 
  allows for black bars on left and right for oddly shaped movies.

---Description

pyTivo lets you stream most videos from yout PC to your unhacked tivo. 
It uses the HMO server protocol. It will guess if your video is 4:3 or 
16:9 and pad your video if it thinks it is needed (looked good on my 
tests). It will not transcode an mpeg that is supported by your tivo.

---Download

http://armooo.net/~armooo/pyTivo/pyTivo.zip

---Requirements

OS = Anything that will run python and ffmpeg, which I think is 
anything.  I have it running on linux, I know windows works as well.

Python - http://www.python.org/download/
- You need at least version 2.4 of python

pywin32 (only to install as a service) - 
http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
- Windows users only and only if you intend to install as a service

---Usage

You need to edit pyTivo.conf in 3 places

1. ffmpeg=
2. [<name of share>]
3. path=

ffmpeg should be the full path to ffmpeg including filename.  For 
windows users the exe has been included and is in the plugins/video 
directory. path is the absolute path to your media.

run pyTivo.py

---To install as a service in Windows

run pyTivoService.py --startup auto install

---To remove service

run pyTivoService.py remove

---Known Problems

- Now Playing List disappears
This seems to be an error with the TiVo software.  But what happens is 
that the NPL is replaced with the directory listing of your pyTivo 
server.  Very odd. Workaround - go to the bottom of the page and either 
select "Recently Deleted" or your pyTivo server that is listed and then 
hit the left arrow.  Your NPL will be back to normal.

---Notes
Most of the work has been done by armooo.  With minor updates by KRKeegan.