| 1 |
# This is an example config file, showing all the options. You probably |
|---|
| 2 |
# won't need most of them. Your working config file will be named |
|---|
| 3 |
# "pyTivo.conf". '#' starts a comment. It is recommended that |
|---|
| 4 |
# that you use the Web Administration tool to modify pyTivo.conf after |
|---|
| 5 |
# you get pyTivo up and running. You can access the tool by pointing your |
|---|
| 6 |
# browser to http://localhost:9032/ |
|---|
| 7 |
|
|---|
| 8 |
# Web administration. enable this section to use the web configuration feature. |
|---|
| 9 |
#[Admin] |
|---|
| 10 |
#type=admin |
|---|
| 11 |
|
|---|
| 12 |
[Server] |
|---|
| 13 |
port=9032 |
|---|
| 14 |
|
|---|
| 15 |
# Full path to ffmpeg including filename |
|---|
| 16 |
# For windows: ffmpeg=c:\Program Files\pyTivo\plugins\video\ffmpeg_mp2.exe |
|---|
| 17 |
# For linux: ffmpeg=/usr/bin/ffmpeg |
|---|
| 18 |
#ffmpeg=c:\Program Files\pyTivo\plugins\video\ffmpeg_mp2.exe |
|---|
| 19 |
ffmpeg=/usr/bin/ffmpeg |
|---|
| 20 |
|
|---|
| 21 |
# This will make a large debug.txt file in your base directory. It only |
|---|
| 22 |
# debugs transcode.py right now. |
|---|
| 23 |
#debug=false |
|---|
| 24 |
|
|---|
| 25 |
# Max video bitrate, default 17408k |
|---|
| 26 |
# sets ffmpeg -maxrate setting to minimize bitrate peak playback issues. |
|---|
| 27 |
# mpegs with video bitrate above this setting will also be transcoded. |
|---|
| 28 |
#MAX_VIDEO_BR=17408k |
|---|
| 29 |
|
|---|
| 30 |
# Audio bit-rate, defaults to 192K for S2, 384K for S3/HD |
|---|
| 31 |
#audio_br=320K |
|---|
| 32 |
|
|---|
| 33 |
# Video bit-rate, defaults to 4096K for S2, 8192K for S3/HD |
|---|
| 34 |
#video_br=12Mi |
|---|
| 35 |
|
|---|
| 36 |
# Beacon broadcast address(es) |
|---|
| 37 |
# The default is 255.255.255.255, but on some multihomed machines you |
|---|
| 38 |
# may need to specify the subnet broadcast address(es) of your Tivo |
|---|
| 39 |
# boxes. You can also specify "listen" to listen for direct connection |
|---|
| 40 |
# attempts on port 2190, for use with the "Manually add a server..." |
|---|
| 41 |
# function. (And if you set beacon to listen _only_, it turns off |
|---|
| 42 |
# broadcasts.) |
|---|
| 43 |
#beacon=192.168.1.255 listen |
|---|
| 44 |
|
|---|
| 45 |
# Output Pixel Width: |
|---|
| 46 |
# Width, defaults to 544 for S2, 1280 for S3/HD |
|---|
| 47 |
# Height, defaults to 480 for S2, 720 for S3/HD |
|---|
| 48 |
# Valid widths: [S3/HD = 1920, 1440, 1280], [S2/S3/HD = 720, 704, 544, 480, 352] |
|---|
| 49 |
# Valid heights: [S3/HD = 1080, 720], [S2/S3/HD = 480] |
|---|
| 50 |
#width=1280 |
|---|
| 51 |
#height=720 |
|---|
| 52 |
#ffmpeg_tmpl=%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_br)s %(audio_fr)s %(audio_ch)s %(audio_codec)s %(fmpeg_prams)s %(format)s |
|---|
| 53 |
|
|---|
| 54 |
# Per tivo options |
|---|
| 55 |
# section named _tivo_TSN with the tsn in all caps |
|---|
| 56 |
#[_tivo_00000DEADBEEF] |
|---|
| 57 |
|
|---|
| 58 |
# If you want to use 16:9 or 4:3 on this tivo |
|---|
| 59 |
#aspect169=true |
|---|
| 60 |
|
|---|
| 61 |
#width=1440 |
|---|
| 62 |
#height=720 |
|---|
| 63 |
#audio_br=320K |
|---|
| 64 |
#video_br=12Mi |
|---|
| 65 |
#ffmpeg_tmpl=%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_br)s %(audio_fr)s %(audio_ch)s %(audio_codec)s %(fmpeg_prams)s %(format)s |
|---|
| 66 |
|
|---|
| 67 |
[MyMovies] |
|---|
| 68 |
# Type can be 'video', 'music', or 'photo' |
|---|
| 69 |
type=video |
|---|
| 70 |
|
|---|
| 71 |
# Path is the full path to your files (No trailing slash needed) |
|---|
| 72 |
# For windows: path=c:\videos |
|---|
| 73 |
# For linux: path=/media |
|---|
| 74 |
path=/home/armooo/Videos |
|---|
| 75 |
|
|---|
| 76 |
# Make all subfolders in to top level shares |
|---|
| 77 |
#auto_subshares=True |
|---|
| 78 |
|
|---|
| 79 |
# You can have more than one share |
|---|
| 80 |
#[MyTelevision] |
|---|
| 81 |
#type=video |
|---|
| 82 |
#path=d:\television |
|---|