getid3_mp3::MPEGaudioBitrateArray() –

You appear to be a bot. Output may be restricted

Description

Usage

$array = getid3_mp3::MPEGaudioBitrateArray();

Parameters

Returns

array

Source

File name: wordpress/wp-includes/ID3/module.audio.mp3.php
Lines:

1 to 18 of 18
  public static function MPEGaudioBitrateArray() {
    static $MPEGaudioBitrate;
    if (empty($MPEGaudioBitrate)) {
      $MPEGaudioBitrate = array (
        '1'  =>  array (1 => array('free', 32000, 64000, 96000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 352000, 384000, 416000, 448000),
                2 => array('free', 32000, 48000, 56000,  64000,  80000,  96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000, 384000),
                3 => array('free', 32000, 40000, 48000,  56000,  64000,  80000,  96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000)
                 ),

        '2'  =>  array (1 => array('free', 32000, 48000, 56000,  64000,  80000,  96000, 112000, 128000, 144000, 160000, 176000, 192000, 224000, 256000),
                2 => array('free',  8000, 16000, 24000,  32000,  40000,  48000,  56000,  64000,  80000,  96000, 112000, 128000, 144000, 160000),
                 )
      );
      $MPEGaudioBitrate['2'][3] = $MPEGaudioBitrate['2'][2];
      $MPEGaudioBitrate['2.5']  = $MPEGaudioBitrate['2'];
    }
    return $MPEGaudioBitrate;
  }
 

 View on GitHub View on Trac