Video
class Video extends VolumeFile
Traits
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. |
|
$hidden | The attributes hidden from the model's JSON form. |
Methods
Set a dynamic JSON attribute.
Get a dynamic JSON attribute.
Adds the url
attribute to the model. The url is the absolute path
to the original file.
URL to the thumbnail of this video.
The labels, this video got attached by the users.
The annotations that belong to this video.
Thumbnail string of this video. Use with the thumbnail_url
helper function.
Thumbnails array of this video. Use with the thumbnail_url
helper function.
URLs to the thumbnails of this video.
Get the error attribute.
Set the error attribute.
Determine whether the (new) video has been processed.
Set the taken_at timestamps.
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.
in
HasJsonAttributes at line 38
protected mixed
getJsonAttr(string $key, mixed $default = null, string $attrs = 'attrs')
Get a dynamic JSON attribute.
in
VolumeFile at line 27
string
getUrlAttribute()
Adds the url
attribute to the model. The url is the absolute path
to the original file.
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]://".
in
VolumeFile at line 44
BelongsTo
volume()
The volume this video belongs to.
in
VolumeFile at line 54
setMetadataAttribute(array $value)
Set the metadata attribute.
in
VolumeFile at line 64
array
getMetadataAttribute()
Get the metadata attribute.
in
VolumeFile at line 74
setWidthAttribute(int $value)
Set the width attribute.
in
VolumeFile at line 84
int|null
getWidthAttribute()
Get the width attribute.
in
VolumeFile at line 94
setHeightAttribute(int $value)
Set the height attribute.
in
VolumeFile at line 104
int|null
getHeightAttribute()
Get the height attribute.
in
VolumeFile at line 114
setSizeAttribute(int $value)
Set the size attribute.
in
VolumeFile at line 124
int|null
getSizeAttribute()
Get the size attribute.
in
VolumeFile at line 134
string
getMimeTypeAttribute()
Get the mimeType attribute.
in
VolumeFile at line 144
setMimeTypeAttribute(string $value)
Set the mimeType attribute.
at line 134
string
getThumbnailUrlAttribute()
URL to the thumbnail of this video.
at line 199
HasMany
labels()
The labels, this video got attached by the users.
at line 112
HasMany
annotations()
The annotations that belong to this video.
at line 122
string
getThumbnailAttribute()
Thumbnail string of this video. Use with the thumbnail_url
helper function.
at line 144
Collection
getThumbnailsAttribute()
Thumbnails array of this video. Use with the thumbnail_url
helper function.
at line 157
Collection
getThumbnailsUrlAttribute()
URLs to the thumbnails of this video.
at line 169
string
getErrorAttribute()
Get the error attribute.
at line 179
setErrorAttribute(string $value)
Set the error attribute.
at line 189
bool
hasBeenProcessed()
Determine whether the (new) video has been processed.
at line 209
setTakenAtAttribute(array $value)
Set the taken_at timestamps.
at line 221
array
getTakenAtAttribute()
Get the taken_at timestamps.