Changeset d66ab95ed7b0ed44eb94f30e0ae9945acc2b4d9a
- Timestamp:
- 02/07/08 17:10:41
(1 year ago)
- Author:
- wgw <tjm1100@gmail.com>
- git-committer:
- wgw <tjm1100@gmail.com> 1202425841 -0600
- git-parent:
[ebc6b29e44be3ef4b94a64e8ab642d8a633e57ae]
- git-author:
- wgw <tjm1100@gmail.com> 1202425841 -0600
- Message:
max_audio_br default common across tivos
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3be2079 |
rd66ab95 |
|
| 203 | 203 | return int(int(strtod(config.get('Server', 'max_audio_br'))/1000)/64)*64 |
|---|
| 204 | 204 | except NoOptionError: |
|---|
| 205 | | if isHDtivo(tsn): |
|---|
| 206 | | return int(448) #default to 448, max supported by HD TiVo's |
|---|
| 207 | | else: |
|---|
| 208 | | return int(384) #default to 384, max supported by mp2 audio (S2 TiVo) |
|---|
| | 205 | return int(448) #default to 448 |
|---|
| 209 | 206 | |
|---|
| 210 | 207 | # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg |
|---|