getid3_matroska::displayUnit()
{} It's a method of the class: getid3_matroska{}
No Hooks.
Return
String
.
Usage
$result = getid3_matroska::displayUnit( $value );
- $value(int) (required)
- -
Code of getid3_matroska::displayUnit() getid3 matroska::displayUnit WP 6.0
public static function displayUnit($value) { // http://www.matroska.org/technical/specs/index.html#DisplayUnit static $units = array( 0 => 'pixels', 1 => 'centimeters', 2 => 'inches', 3 => 'Display Aspect Ratio'); return (isset($units[$value]) ? $units[$value] : 'unknown'); }