_bitrate = $bitrate; } public function format() { $kbps = bcdiv($this->_bitrate, 1000, 0); if ($kbps == 0) { return ''; } return "{$kbps} Kbps"; } }