VimeoStream class

One playable source for a video.

A single video usually resolves to several: one HLS playlist per CDN, plus any progressive MP4 renditions. They are ordered best-first on VimeoVideo.streams.

Constructors

VimeoStream({required String url, required VimeoStreamFormat format, String? quality, int? width, int? height, String? cdn})
Creates a stream descriptor.
const

Properties

cdn String?
Which Vimeo CDN serves this stream, e.g. akfire_interconnect_quic.
final
format VimeoStreamFormat
Whether this is an adaptive playlist or a fixed-quality file.
final
hashCode int
The hash code for this object.
no setterinherited
height int?
Pixel height of a progressive rendition. Null for HLS.
final
isAdaptive bool
Whether this is an adaptive HLS playlist.
no setter
quality String?
Vimeo's label for a progressive rendition, e.g. 720p. Null for HLS, where quality is chosen automatically at playback time.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
url String
The direct, playable URL.
final
width int?
Pixel width of a progressive rendition. Null for HLS.
final

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