1 import ConfigParser
, os
3 from ConfigParser
import NoOptionError
5 BLACKLIST_169
= ('540', '649')
7 config
= ConfigParser
.ConfigParser()
8 p
= os
.path
.dirname(__file__
)
9 config
.read(os
.path
.join(p
, 'pyTivo.conf'))
12 if config
.has_option('Server', 'GUID'):
13 guid
= config
.get('Server', 'GUID')
18 def getBeaconAddresses():
19 if config
.has_option('Server', 'beacon'):
20 beacon_ips
= config
.get('Server', 'beacon')
22 beacon_ips
= '255.255.255.255'
26 return config
.get('Server', 'Port')
28 def get169Setting(tsn
):
32 if config
.has_section('_tivo_' + tsn
):
33 if config
.has_option('_tivo_' + tsn
, 'aspect169'):
35 return config
.getboolean('_tivo_' + tsn
, 'aspect169')
39 if tsn
[:3] in BLACKLIST_169
:
44 def getShares(tsn
=''):
45 shares
= [(section
, dict(config
.items(section
)))
46 for section
in config
.sections()
47 if not(section
.startswith('_tivo_') or section
== 'Server')]
49 if config
.has_section('_tivo_' + tsn
):
50 if config
.has_option('_tivo_' + tsn
, 'shares'):
51 # clean up leading and trailing spaces & make sure ref is valid
53 for x
in config
.get('_tivo_' + tsn
, 'shares').split(','):
54 y
= x
.lstrip().rstrip()
55 if config
.has_section(y
):
56 tsnshares
+= [(y
, dict(config
.items(y
)))]
60 for name
, data
in shares
:
61 if not data
.get('auto_subshares', 'False').lower() == 'true':
64 base_path
= data
['path']
65 for item
in os
.listdir(base_path
):
66 item_path
= os
.path
.join(base_path
, item
)
67 if not os
.path
.isdir(item_path
):
70 new_name
= name
+ '/' + item
72 new_data
['path'] = item_path
74 shares
.append((new_name
, new_data
))
80 return config
.getboolean('Server', 'debug')
81 except NoOptionError
, ValueError:
86 debug
= config
.get('Server', 'hack83')
87 if debug
.lower() == 'true':
96 return config
.getboolean('Server', 'optres')
97 except NoOptionError
, ValueError:
100 def get(section
, key
):
101 return config
.get(section
, key
)
103 def getFFMPEGTemplate(tsn
):
104 if tsn
and config
.has_section('_tivo_' + tsn
):
106 return config
.get('_tivo_' + tsn
, 'ffmpeg_prams', raw
=True)
107 except NoOptionError
:
110 return config
.get('Server', 'ffmpeg_prams', raw
=True)
111 except NoOptionError
: #default
112 return '-vcodec mpeg2video -r 29.97 -b %(video_br)s -maxrate %(max_video_br)s -bufsize %(buff_size)s %(aspect_ratio)s -comment pyTivo.py -ab %(audio_br)s %(audio_fr)s %(audio_codec)s -f vob -'
114 def isHDtivo(tsn
): # tsn's of High Definition Tivo's
115 return tsn
!= '' and tsn
[:3] in ['648', '652']
117 def getValidWidths():
118 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
120 def getValidHeights():
121 return [1080, 720, 480] # Technically 240 is also supported
123 # Return the number in list that is nearest to x
124 # if two values are equidistant, return the larger
125 def nearest(x
, list):
126 return reduce(lambda a
, b
: closest(x
, a
, b
), list)
128 def closest(x
, a
, b
):
129 if abs(x
- a
) < abs(x
- b
) or (abs(x
- a
) == abs(x
- b
) and a
> b
):
134 def nearestTivoHeight(height
):
135 return nearest(height
, getValidHeights())
137 def nearestTivoWidth(width
):
138 return nearest(width
, getValidWidths())
140 def getTivoHeight(tsn
):
141 if tsn
and config
.has_section('_tivo_' + tsn
):
143 height
= config
.getint('_tivo_' + tsn
, 'height')
144 return nearestTivoHeight(height
)
145 except NoOptionError
:
148 height
= config
.getint('Server', 'height')
149 return nearestTivoHeight(height
)
150 except NoOptionError
: #defaults for S3/S2 TiVo
156 def getTivoWidth(tsn
):
157 if tsn
and config
.has_section('_tivo_' + tsn
):
159 width
= config
.getint('_tivo_' + tsn
, 'width')
160 return nearestTivoWidth(width
)
161 except NoOptionError
:
164 width
= config
.getint('Server', 'width')
165 return nearestTivoWidth(width
)
166 except NoOptionError
: #defaults for S3/S2 TiVo
172 def getAudioBR(tsn
= None):
173 #convert to non-zero multiple of 64 to ensure ffmpeg compatibility
174 #compare audio_br to max_audio_br and return lowest
175 if tsn
and config
.has_section('_tivo_' + tsn
):
177 audiobr
= int(max(int(strtod(config
.get('_tivo_' + tsn
, 'audio_br'))/1000), 64)/64)*64
178 return str(min(audiobr
, getMaxAudioBR(tsn
))) + 'k'
179 except NoOptionError
:
182 audiobr
= int(max(int(strtod(config
.get('Server', 'audio_br'))/1000), 64)/64)*64
183 return str(min(audiobr
, getMaxAudioBR(tsn
))) + 'k'
184 except NoOptionError
: #defaults for S3/S2 TiVo
190 def getVideoBR(tsn
= None):
191 if tsn
and config
.has_section('_tivo_' + tsn
):
193 return config
.get('_tivo_' + tsn
, 'video_br')
194 except NoOptionError
:
197 return config
.get('Server', 'video_br')
198 except NoOptionError
: #defaults for S3/S2 TiVo
206 return str(int(strtod(config
.get('Server', 'max_video_br'))/1000)) + 'k'
207 except NoOptionError
: #default to 17Mi
212 return config
.get('Server', 'bufsize')
213 except NoOptionError
: #default 1024k
216 def getMaxAudioBR(tsn
= None):
217 #convert to non-zero multiple of 64 for ffmpeg compatibility
218 if tsn
and config
.has_section('_tivo_' + tsn
):
220 return int(int(strtod(config
.get('_tivo_' + tsn
, 'max_audio_br'))/1000)/64)*64
221 except NoOptionError
:
224 return int(int(strtod(config
.get('Server', 'max_audio_br'))/1000)/64)*64
225 except NoOptionError
:
226 return int(448) #default to 448
228 # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg
229 # For example, 2K==2000, 2Ki==2048, 2MB==16000000, 2MiB==16777216
230 # Algorithm: http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/eval.c
232 prefixes
= {'y': -24, 'z': -21, 'a': -18, 'f': -15, 'p': -12,
233 'n': -9, 'u': -6, 'm': -3, 'c': -2, 'd': -1,
234 'h': 2, 'k': 3, 'K': 3, 'M': 6, 'G': 9,
235 'T': 12, 'P': 15, 'E': 18, 'Z': 21, 'Y': 24}
236 p
= re
.compile(r
'^(\d+)(?:([yzafpnumcdhkKMGTPEZY])(i)?)?([Bb])?$')
239 raise SyntaxError('Invalid bit value syntax')
240 (coef
, prefix
, power
, byte
) = m
.groups()
244 exponent
= float(prefixes
[prefix
])
247 value
= float(coef
) * pow(2.0, exponent
/ 0.3)
250 value
= float(coef
) * pow(10.0, exponent
)
251 if byte
== 'B': # B == Byte, b == bit