getid3_flv::audioRateLookup() –

You appear to be a bot. Output may be restricted

Description

Usage

$int|false = getid3_flv::audioRateLookup( $id );

Parameters

$id
( int ) required

Returns

int|false

Source

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

1 to 9 of 9
  public static function audioRateLookup($id) {
    static $lookup = array(
      0 =>  5500,
      1 => 11025,
      2 => 22050,
      3 => 44100,
    );
    return (isset($lookup[$id]) ? $lookup[$id] : false);
  }
 

 View on GitHub View on Trac