class Video extends VolumeFile

Traits

HasFactory

Constants

MIMES

Allowed video MIME types.

CODECS

Allowed video codecs.

ERROR_NOT_FOUND

Error if a video cannot be found.

ERROR_MIME_TYPE

Error if a video has an invalid MIME type.

ERROR_CODEC

Error if a video has an invalid codec.

ERROR_MALFORMED

Error if a video cannot be parsed.

ERROR_TOO_LARGE

Error if a video file is too large.

Properties

bool $timestamps

Don't maintain timestamps for this model.

from  VolumeFile
protected array $fillable

The attributes that are mass assignable.

protected array $casts

The attributes that should be casted to native types.

protected array $hidden

The attributes hidden from the model's JSON form.

Methods

setJsonAttr(string $key, mixed $value, string $attrs = 'attrs')

Set a dynamic JSON attribute.

mixed
getJsonAttr(string $key, mixed $default = null, string $attrs = 'attrs')

Get a dynamic JSON attribute.

string
getUrlAttribute()

Adds the url attribute to the model. The url is the absolute path to the original file.

string
getUrl()

Get the file URL.

BelongsTo
volume()

The volume this video belongs to.

setMetadataAttribute(array $value)

Set the metadata attribute.

array
getMetadataAttribute()

Get the metadata attribute.

setWidthAttribute(int $value)

Set the width attribute.

int|null
getWidthAttribute()

Get the width attribute.

setHeightAttribute(int $value)

Set the height attribute.

int|null
getHeightAttribute()

Get the height attribute.

setSizeAttribute(int $value)

Set the size attribute.

int|null
getSizeAttribute()

Get the size attribute.

string
getMimeTypeAttribute()

Get the mimeType attribute.

setMimeTypeAttribute(string $value)

Set the mimeType attribute.

string
getThumbnailUrlAttribute()

URL to the thumbnail of this video.

HasMany
labels()

The labels, this video got attached by the users.

HasMany
annotations()

The annotations that belong to this video.

string
getThumbnailAttribute()

Thumbnail string of this video. Use with the thumbnail_url helper function.

Collection
getThumbnailsAttribute()

Thumbnails array of this video. Use with the thumbnail_url helper function.

Collection
getThumbnailsUrlAttribute()

URLs to the thumbnails of this video.

string
getErrorAttribute()

Get the error attribute.

setErrorAttribute(string $value)

Set the error attribute.

bool
hasBeenProcessed()

Determine whether the (new) video has been processed.

setTakenAtAttribute(array $value)

Set the taken_at timestamps.

array
getTakenAtAttribute()

Get the taken_at timestamps.

Details

in HasJsonAttributes at line 16
protected setJsonAttr(string $key, mixed $value, string $attrs = 'attrs')

Set a dynamic JSON attribute.

Parameters

string $key

Key of the attribute in the JSON.

mixed $value

Value of the attribute in the JSON.

string $attrs

Name of the JSON column of the model.

in HasJsonAttributes at line 38
protected mixed getJsonAttr(string $key, mixed $default = null, string $attrs = 'attrs')

Get a dynamic JSON attribute.

Parameters

string $key

Key of the attribute in the JSON.

mixed $default

Default value.

string $attrs

Name of the JSON column of the model.

Return Value

mixed

in VolumeFile at line 27
string getUrlAttribute()

Adds the url attribute to the model. The url is the absolute path to the original file.

Return Value

string

in VolumeFile at line 35
string getUrl()

Get the file URL.

This may be a remote URL starting with "http://" or "https://", or a storage disk path starting with "[disk-name]://".

Return Value

string

in VolumeFile at line 45
BelongsTo volume()

The volume this video belongs to.

Return Value

BelongsTo

in VolumeFile at line 55
setMetadataAttribute(array $value)

Set the metadata attribute.

Parameters

array $value

in VolumeFile at line 65
array getMetadataAttribute()

Get the metadata attribute.

Return Value

array

in VolumeFile at line 75
setWidthAttribute(int $value)

Set the width attribute.

Parameters

int $value

in VolumeFile at line 85
int|null getWidthAttribute()

Get the width attribute.

Return Value

int|null

in VolumeFile at line 95
setHeightAttribute(int $value)

Set the height attribute.

Parameters

int $value

in VolumeFile at line 105
int|null getHeightAttribute()

Get the height attribute.

Return Value

int|null

in VolumeFile at line 115
setSizeAttribute(int $value)

Set the size attribute.

Parameters

int $value

in VolumeFile at line 125
int|null getSizeAttribute()

Get the size attribute.

Return Value

int|null

in VolumeFile at line 135
string getMimeTypeAttribute()

Get the mimeType attribute.

Return Value

string

in VolumeFile at line 145
setMimeTypeAttribute(string $value)

Set the mimeType attribute.

Parameters

string $value

at line 132
string getThumbnailUrlAttribute()

URL to the thumbnail of this video.

Return Value

string

at line 193
HasMany labels()

The labels, this video got attached by the users.

Return Value

HasMany

at line 110
HasMany annotations()

The annotations that belong to this video.

Return Value

HasMany

at line 120
string getThumbnailAttribute()

Thumbnail string of this video. Use with the thumbnail_url helper function.

Return Value

string

at line 142
Collection getThumbnailsAttribute()

Thumbnails array of this video. Use with the thumbnail_url helper function.

Return Value

Collection

at line 153
Collection getThumbnailsUrlAttribute()

URLs to the thumbnails of this video.

Return Value

Collection

at line 163
string getErrorAttribute()

Get the error attribute.

Return Value

string

at line 173
setErrorAttribute(string $value)

Set the error attribute.

Parameters

string $value

at line 183
bool hasBeenProcessed()

Determine whether the (new) video has been processed.

Return Value

bool

at line 203
setTakenAtAttribute(array $value)

Set the taken_at timestamps.

Parameters

array $value

at line 215
array getTakenAtAttribute()

Get the taken_at timestamps.

Return Value

array