From: paul Date: Sat, 9 Apr 2011 20:58:05 +0000 (+0000) Subject: specified bitrate label X-Git-Url: http://git.plutz.net/?p=viper;a=commitdiff_plain;h=c1458d48a3daa47de8c91c53e934e640dc938cb2 specified bitrate label svn path=/trunk/; revision=5 --- diff --git a/plugins/v_x264.py b/plugins/v_x264.py index be10c12..08c8738 100644 --- a/plugins/v_x264.py +++ b/plugins/v_x264.py @@ -49,7 +49,8 @@ class V_x264(V_Plugin): self.subgets['o_psy'].grid(row = 1, column = 3) self.subgets['bitrate'] = False - self.subgets['c_bitrate'] = Checkbutton(self, text = 'Force avg.\nBitrate:', command = self.c_bitrate) + self.subgets['c_bitrate'] = Checkbutton(self, text = 'Force avg.\nBitrate (Kb/s):', + command = self.c_bitrate) self.subgets['c_bitrate'].deselect() self.subgets['c_bitrate'].grid(row = 0, column = 4) self.subgets['s_bitrate'] = Spinbox(self, from_ = 0, to = 20000, increment = 100, width = 6)