-
Notifications
You must be signed in to change notification settings - Fork 59
/
README
70 lines (47 loc) · 2.26 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---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.