getid3_flv::videoCodecLookup

Advertisement

Syntax Syntax

getid3_flv::videoCodecLookup( int $id )

Parameters Parameters

$id

(Required)

Return Return

(string|false)

Source Source

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

	 * @param int $id
	 *
	 * @return string|false
	 */
	public static function videoCodecLookup($id) {
		static $lookup = array(
			GETID3_FLV_VIDEO_H263         => 'Sorenson H.263',
			GETID3_FLV_VIDEO_SCREEN       => 'Screen video',
			GETID3_FLV_VIDEO_VP6FLV       => 'On2 VP6',
			GETID3_FLV_VIDEO_VP6FLV_ALPHA => 'On2 VP6 with alpha channel',
			GETID3_FLV_VIDEO_SCREENV2     => 'Screen video v2',

Advertisement

Advertisement

Leave a Reply