pub trait UriSourceAssetExt: 'static {
    fn filesource_asset(&self) -> UriClipAsset;
    fn stream_info(&self) -> DiscovererStreamInfo;
    fn stream_uri(&self) -> GString;
    fn is_image(&self) -> bool;
}
Expand description

Trait containing all UriSourceAsset methods.

Implementors

UriSourceAsset

Required Methods§

Get the UriClipAsset self_ is contained in

Returns

a UriClipAsset

Available on crate feature v1_18 only.

Check if self contains a single image

Returns

true if the video stream corresponds to an image (i.e. only contains one frame)

Implementors§