PHP-FFMpeg API
Class

FFMpeg\FFProbe\DataMapping\Stream

class Stream extends AbstractData

Methods

__construct(array $properties)

from AbstractData
Boolean has(string $property)

Returns true if data has property.

from AbstractData
mixed get(string $property)

Returns the property value given its name.

from AbstractData
array keys()

Returns all property names.

from AbstractData
array all()

Returns all properties and their values.

from AbstractData
count()

{@inheritdoc}

from AbstractData
Boolean isAudio()

Returns true if the stream is an audio stream.

Boolean isVideo()

Returns true if the stream is a video stream.

Details

in AbstractData at line 20
public __construct(array $properties)

Parameters

array $properties

in AbstractData at line 31
public Boolean has(string $property)

Returns true if data has property.

Parameters

string $property

Return Value

Boolean

in AbstractData at line 44
public mixed get(string $property)

Returns the property value given its name.

Parameters

string $property

Return Value

mixed

Exceptions

InvalidArgumentException In case the data does not have the property

in AbstractData at line 58
public array keys()

Returns all property names.

Return Value

array

in AbstractData at line 68
public array all()

Returns all properties and their values.

Return Value

array

in AbstractData at line 76
public count()

{@inheritdoc}

at line 21
public Boolean isAudio()

Returns true if the stream is an audio stream.

Return Value

Boolean

at line 31
public Boolean isVideo()

Returns true if the stream is a video stream.

Return Value

Boolean