new AdvVideoCodecType()

Description

An Advanced VideoCodec class with Profile and Level methods

Methods


profile( profile )

Description

Specifies the profile to use with the h264 codec.

Parameters
Name Type Description
profile Qualifiers.VideoCodecProfile | string

Sets the profile of the video codec

Returns

this;

Examples

			new AdvVideoCodecType('h264').profile(VideoCodecProfile.baseline())

level( lvl )

Description

Specifies the level to use with the h264 codec and specified profile.

Parameters
Name Type Description
lvl Qualifiers.VideoCodecLevel | number | string
Returns

this;

Examples

			new AdvVideoCodecType('h264').profile(VideoCodecLevel.baseline())

toString()

Description

returns a toString representation of this qualifier

Returns

string;