7 using System.Collections.Generic;
25 public const string CHART =
"chart";
26 public const string RASTER =
"raster";
30 public const string LABELS =
"labels";
40 public const string TTL =
"ttl";
52 public const string WINDOW =
"window";
69 public const string FALSE =
"false";
70 public const string TRUE =
"true";
98 public string begin {
get;
set; }
106 public string end {
get;
set; }
143 public string path {
get;
set; }
211 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
329 IDictionary<string, string>
options =
null)
332 this.begin =
begin ??
"";
334 this.end =
end ??
"";
336 this.style =
style ??
"";
337 this.path =
path ??
"";
352 public string path {
get;
set; }
355 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
long job_id
An identifier for the created job.
IDictionary< string, string > info
Additional information.
string end
The end point for the video.
string style
The name of the visualize mode; should correspond to the schema used for the style_parameters field.
CreateVideoRequest(string attribute, string begin, double duration_seconds, string end, double frames_per_second, string style, string path, string style_parameters, IDictionary< string, string > options=null)
Constructs a CreateVideoRequest object with the specified parameters.
const string WINDOW
Specified using the data-type corresponding to the attribute.
string style_parameters
A string containing the JSON-encoded visualize request.
KineticaData - class to help with Avro Encoding for Kinetica
string begin
The start point for the video.
CreateVideoRequest()
Constructs a CreateVideoRequest object with default parameters.
double duration_seconds
Seconds of video to produce.
double frames_per_second
The presentation frame rate of the encoded video in frames per second.
IDictionary< string, string > options
Optional parameters.
string attribute
The animated attribute to map to the video's frames.
const string NO_ERROR_IF_EXISTS
If TRUE, does not return an error if the video already exists.
A set of results returned by Kinetica.createVideo.
const string REPLACE_IF_EXISTS
If TRUE, deletes any existing video with the same path before creating a new video.
A set of string constants for the parameter options.
string path
Fully-qualified KiFS path.
A set of string constants for the parameter style.
string path
Fully qualified KIFS path to the video file.
const string TTL
Sets the TTL of the video.
A set of parameters for Kinetica.createVideo.