getid3_flv::audioRateLookup()
{} It's a method of the class: getid3_flv{}
No Hooks.
Return
Int|false
.
Usage
$result = getid3_flv::audioRateLookup( $id );
- $id(int) (required)
- -
Code of getid3_flv::audioRateLookup() getid3 flv::audioRateLookup WP 6.0
public static function audioRateLookup($id) { static $lookup = array( 0 => 5500, 1 => 11025, 2 => 22050, 3 => 44100, ); return (isset($lookup[$id]) ? $lookup[$id] : false); }