/plugin/authgooglesheets/vendor/google/apiclient-services/src/RealTimeBidding/ |
H A D | MediaFile.php | 25 public $bitrate; variable in Google\\Service\\RealTimeBidding\\MediaFile 34 public function setBitrate($bitrate) argument 36 $this->bitrate = $bitrate; 43 return $this->bitrate;
|
/plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
H A D | demo.browse.php | 431 function BitrateColor($bitrate, $BitrateMaxScale=768) { argument 435 $bitrate *= (256 / $BitrateMaxScale); // scale from 1-[768]kbps to 1-256 436 $bitrate = round(min(max($bitrate, 1), 256)); 437 $bitrate--; // scale from 1-256kbps to 0-255kbps 439 $Rcomponent = max(255 - ($bitrate * 2), 0); 440 $Gcomponent = max(($bitrate * 2) - 255, 0); 441 if ($bitrate > 127) { 442 $Bcomponent = max((255 - $bitrate) * 2, 0); 444 $Bcomponent = max($bitrate * 2, 0); 449 function BitrateText($bitrate, $decimals=0, $vbr=false) { argument [all …]
|
H A D | demo.mp3header.php | 879 function BitrateColor($bitrate) { argument 882 $bitrate = max($bitrate, 0); 883 $bitrate = min($bitrate, 255); 888 $Rcomponent = max(255 - ($bitrate * 2), 0); 889 $Gcomponent = max(($bitrate * 2) - 255, 0); 890 if ($bitrate > 127) { 891 $Bcomponent = max((255 - $bitrate) * 2, 0); 893 $Bcomponent = max($bitrate * 2, 0); 900 function BitrateText($bitrate) { argument 901 return '<SPAN STYLE="color: #'.BitrateColor($bitrate).'">'.round($bitrate).' kbps</SPAN>'; [all …]
|
H A D | demo.mysqli.php | 66 function BitrateColor($bitrate, $BitrateMaxScale=768) { argument 70 $bitrate *= (256 / $BitrateMaxScale); // scale from 1-[768]kbps to 1-256 71 $bitrate = round(min(max($bitrate, 1), 256)); 72 $bitrate--; // scale from 1-256kbps to 0-255kbps 74 $Rcomponent = max(255 - ($bitrate * 2), 0); 75 $Gcomponent = max(($bitrate * 2) - 255, 0); 76 if ($bitrate > 127) { 77 $Bcomponent = max((255 - $bitrate) * 2, 0); 79 $Bcomponent = max($bitrate * 2, 0); 84 function BitrateText($bitrate, $decimals=0) { argument [all …]
|
/plugin/jukebox/id3/ |
H A D | module.audio.mp3.php | 1719 function MPEGaudioFrameLength(&$bitrate, &$version, &$layer, $padding, &$samplerate) { argument 1722 if (!isset($AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate])) { 1723 $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = false; 1724 if ($bitrate != 'free') { 1768 $NewFramelength = ($FrameLengthCoefficient * $bitrate) / $samplerate; 1773 … $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = (int) $NewFramelength; 1777 return $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate]; 1780 function ClosestStandardMP3Bitrate($bitrate) { argument 1783 $roundbitrate = intval(round($bitrate, -3)); 1786 $BitrateTable[$roundbitrate] = round($bitrate, -4);
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | module.audio.mp3.php | 1908 * @param int|string $bitrate 1916 …public static function MPEGaudioFrameLength(&$bitrate, &$version, &$layer, $padding, &$samplerate)… argument 1919 if (!isset($AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate])) { 1920 $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = false; 1921 if ($bitrate != 'free') { 1965 $NewFramelength = ($FrameLengthCoefficient * $bitrate) / $samplerate; 1970 … $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = (int) $NewFramelength; 1974 return $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate];
|
H A D | module.audio-video.real.php | 501 * @param int $bitrate 505 public function RealAudioCodecFourCClookup($fourcc, $bitrate) { argument 536 $roundbitrate = intval(round($bitrate));
|
/plugin/jplayer/vendor/james-heinrich/getid3/ |
H A D | structure.txt | 53 Overall bitrate: ['bitrate'] // ex 113485.71 (bits-per-second - divide by 1000… 81 …['bitrate']=>double() // average bitrate for entire file (all audio/video streams),… 87 …['bitrate']=>double() // average bitrate for audio portion of file (all audio streams),… 100 …['bitrate']=>integer() // average bitrate for video portion of file (all video streams),… 186 ['bitrate']=>integer() // 330 ['bitrate']=>integer() // 881 ['bitrate']=>double() // 1004 ['bitrate']=>integer() // 1037 ['bitrate']=>integer() // 1076 ['bitrate']=>integer() // [all …]
|
H A D | changelog.txt | 92 * bugfix (G:147) Quicktime audio/video bitrate guessing 330 * Bugfix: FLV audio bitrate was returning kbps not bps 446 * Bugfix: [FLV] incorrect overall bitrate in some files 712 * Bugfix: Do not return NULL video bitrate for ASF v3. 1124 * Bugfix: VBR MP3s could have incorrect bitrate reported 1614 VBR MPEG video files based on the audio bitrate. 1717 bitrate (thanks ahØartemis*dk) 1800 (such as format, bitrate, comments). 2069 with correct bitrate (thanks ahØartemis*dk) 2178 samples, therefore also bitrate and playtime [all …]
|
H A D | README.md | 381 * Cannot determine bitrate for MPEG video with VBR video data 393 NSV, only the total bitrate. (need documentation)
|
H A D | readme.txt | 388 * Cannot determine bitrate for MPEG video with VBR video data 400 NSV, only the total bitrate. (need documentation)
|
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/ |
H A D | mp3.js | 269 bitrate: header.bitrate, 342 this.bitrate = 0; // stream bitrate (bps) 432 if (this.bitrate === 0) 438 var size = (this.bitrate * 12) / this.samplerate | 0; 442 var size = (this.bitrate * 144) / this.samplerate | 0; 448 var size = (this.bitrate * 144) / (this.samplerate << lsf) | 0; 487 this.bitrate = BITRATES[3 + (this.layer >> 1)][index]; 489 this.bitrate = BITRATES[this.layer - 1][index]; 572 if (header.bitrate === 0) { 576 header.bitrate = stream.freerate; [all …]
|
/plugin/flowplayer/player/ |
H A D | README.txt | 21 - #586 add a bitrate label with a new namespace attribute fp:bitratelabel. 181 …added feature to obtain bitrate and dimension information to a new clip custom property "bitrates"…
|