7 using System.Collections.Generic;
25 public IList<string>
paths {
get; set; } =
new List<string>();
29 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
46 IDictionary<string, string>
options = null)
48 this.paths = paths ??
new List<string>();
49 this.options =
options ??
new Dictionary<string, string>();
72 public IList<long>
job_ids {
get; set; } =
new List<long>();
75 public IList<string>
paths {
get; set; } =
new List<string>();
90 public IList<string>
requests {
get; set; } =
new List<string>();
95 public IList<string>
status {
get; set; } =
new List<string>();
100 public IList<long>
ttls {
get; set; } =
new List<long>();
103 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IList< long > ttls
The remaining TTL, in minutes, before the respective video expires (-1 if it will never expire)...
IList< string > paths
The fully-qualified KiFS paths for the videos to show.
IList< long > rendered_bytes
The number of bytes emitted by the encoder for each video.
IDictionary< string, string > options
Optional parameters.
IList< string > status
The status of the last rendered frame for each video.
ShowVideoRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowVideoRequest object with the specified parameters.
IList< string > paths
KIFS path to each video.
IList< long > elapsed_render_time_seconds
The elapsed time spent rendering each video in seconds.
IDictionary< string, string > info
Additional information.
IList< string > requests
JSON-string reflecting each video's creation parameters.
A set of results returned by Kinetica.showVideo(IList{string},IDictionary{string, string})...
IList< long > rendered_frames
The number of frames rendered for each video.
IList< long > rendered_percents
Percent completion of each video's rendering process (0-100)
IList< string > creation_times
Creation time for each video as an ISO-8601 datetime.
A set of parameters for Kinetica.showVideo(IList{string},IDictionary{string, string}).
IList< long > job_ids
The job id of the rendering process, for each video that is still being rendered. ...
KineticaData - class to help with Avro Encoding for Kinetica
ShowVideoRequest()
Constructs a ShowVideoRequest object with default parameters.