VideoFormatTValue enum

Inheritance

Constructors

VideoFormatTValue(String _value)
const

Values

Webm → const VideoFormatTValue

WebM is an open media file format designed for the web. Video streams are compressed via VP8 or VP9 video codec. Audio gets compressed with Vorbis or Opus, more. WebM is compatible with many of the current devices and browsers and backed by Google.

const VideoFormatTValue('webm')
Ogg → const VideoFormatTValue

Ogg/Theora is a free and open video compression format from Xiph.org. Theora is considered competitive at low bitrates, which makes it suitable for the web, more. Theora is backed by the community is supported by fewer browsers than webm.

const VideoFormatTValue('ogg')
Mp4 → const VideoFormatTValue

MPEG-4 with its H.264 or H.265 video codec is widely supported across devices and browsers. Videos encoded with mp4 will work on Android and iOS, in Safari, Chrome, and IE. Choose it when you want to go universal or in case you need a fallback.

const VideoFormatTValue('mp4')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<VideoFormatTValue>
A constant List of the values in this enum, in order of their declaration.