ImageTrackOptions

Settings options for placeholder images.

public class ImageTrackOptions
    {
        public string imageUrl { set; get; }
        public int fps { set; get; }

        public ImageTrackOptions()
        {
            imageUrl = "";
            fps = 1;
        }
    };

Properties

imageUrl
The URL of the placeholder image. Currently supports JPEG, JPG, PNG, and GIF formats. You can add a placeholder image from a local absolute or relative path.
Note: On Android, adding placeholder images from /assets/ is not supported.
fps
Video frame rate, ranging from [1, 30]. The default value is 1.