From: <ren...@us...> - 2007-08-20 20:26:16
|
Revision: 819 http://gmyth.svn.sourceforge.net/gmyth/?rev=819&view=rev Author: renatofilho Date: 2007-08-20 13:26:20 -0700 (Mon, 20 Aug 2007) Log Message: ----------- video bitrate changed from 600kbps to 300kbps. Frame rate default value set to 10fps Modified Paths: -------------- trunk/gmyth-stream/server/0.3/plugins/transcoders/gmencoder.py Modified: trunk/gmyth-stream/server/0.3/plugins/transcoders/gmencoder.py =================================================================== --- trunk/gmyth-stream/server/0.3/plugins/transcoders/gmencoder.py 2007-08-20 18:03:06 UTC (rev 818) +++ trunk/gmyth-stream/server/0.3/plugins/transcoders/gmencoder.py 2007-08-20 20:26:20 UTC (rev 819) @@ -47,8 +47,9 @@ "%s://%s" % (self.params_first("type", "file"), self.params_first("uri", ""))) self._insert_param("--video-encode", self.params_first("ve", "ffenc_mpeg1video")) - self._insert_param("--video-opts", "bitrate=600000,pass=512,quantizer=0.05,quant-type=1") - self._insert_param("--video-fps", self.params_first("fps", "")) + self._insert_param("--video-opts", "bitrate=300000,pass=512,quantizer=0.01,quant-type=1") + #self._insert_param("--video-fps", self.params_first("fps", "")) + self._insert_param("--video-fps", self.params_first("fps", "10")) self._insert_param("--video-width", self.params_first("width", "320")) self._insert_param("--video-height", self.params_first("height", "240")) self._insert_param("--audio-rate", "32000") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |