Evan Hisey wrote:
> Duncan-
>   I am attempting to renecode mpeg files recorded by freevo 1.6.2
> with freevo 1.7.3. I have found an odd issue, it looks like 1.7.3 is
> setting the vbitrate to 6000 regardless of what the Video rate setting
> is. The files according to mplayer are 9000kbps recordings. After
> looking through the encodingserver.py (mind you python not me forte)
> it looks like the very last line of the def _CalcVideoBR(self) is
> getting triggered:
>         if self.vbrate > 12000:
>             self.vbrate = 6000
>         _debug_('_CalcVideoBR: vbrate=%s' % (self.vbrate), 2)
> 
> Seems to be the offending code. When I change the self.vbrate = 6000 to
> self.vbrate = 700 the change shows up in the encodingserver log.

700 if not > 12000 so the video bit rate should remain at 700, I wonder
if somewhere something is adding a couple of zeros. 12000 is will on the
high side, raw video is 27,000,000 and DVD is max 9,800,000 bits per
second and I think that the vbrate is expressed as kb/sec.

I'll do some quick testing to confirm this.

Duncan


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to