Changeset 9d37fb6e617a1295b7d23704f3c16ae97b842046

Show
Ignore:
Timestamp:
03/03/07 23:07:59 (2 years ago)
Author:
KRKeegan <KRKeegan>
git-committer:
KRKeegan <KRKeegan> 1172984879 +0000
git-parent:

[2668e1141ec31c9f8a582dc41ad648e24ec446c6]

git-author:
KRKeegan <KRKeegan> 1172984879 +0000
Message:

- Added strange hex characters to 206 message, I think they might mean end of file?
- Changed ffmpeg bitrate command to use 'K' doesn't affect old ffmpeg and helps recent release of ffmpeg

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/video/transcode.py

    r2668e11 r9d37fb6  
    3131 
    3232def transcode(inFile, outFile): 
    33     cmd = [FFMPEG, '-i', inFile, '-vcodec', 'mpeg2video', '-r', '29.97', '-b', '4096'] + select_aspect(inFile)  +  ['-comment', 'pyTivo.py', '-ac', '2', '-ab', '192', '-f', 'vob', '-' ]    
     33    cmd = [FFMPEG, '-i', inFile, '-vcodec', 'mpeg2video', '-r', '29.97', '-b', '4096K'] + select_aspect(inFile)  +  ['-comment', 'pyTivo.py', '-ac', '2', '-ab', '192', '-f', 'vob', '-' ]    
    3434    ffmpeg = subprocess.Popen(cmd, stdout=subprocess.PIPE) 
    3535    try: 
  • plugins/video/video.py

    r303570a r9d37fb6  
    2525            handler.send_header('Server', 'TiVo Server/1.4.257.475') 
    2626            handler.end_headers() 
     27            handler.wfile.write("\x30\x0D\x0A") 
    2728            return 
    2829