/show/video

URL: https://<aws.fqdn>/<aws.cluster.name>/gpudb-0/show/video

Retrieves information about rendered videos.

Input Parameter Description

Name Type Description
paths array of strings The fully-qualified KiFS paths for the videos to show. If empty, shows all videos.
options map of string to strings Optional parameters. The default value is an empty map ( {} ).

Output Parameter Description

The GPUdb server embeds the endpoint response inside a standard response structure which contains status information and the actual response to the query. Here is a description of the various fields of the wrapper:

Name Type Description
status String 'OK' or 'ERROR'
message String Empty if success or an error message
data_type String 'show_video_response' or 'none' in case of an error
data String Empty string
data_str JSON or String

This embedded JSON represents the result of the /show/video endpoint:

Name Type Description
creation_times array of strings Creation time for each video as an ISO-8601 datetime.
elapsed_render_time_seconds array of longs The elapsed time spent rendering each video in seconds.
job_ids array of longs The job id of the rendering process, for each video that is still being rendered.
paths array of strings KIFS path to each video.
rendered_bytes array of longs The number of bytes emitted by the encoder for each video.
rendered_frames array of longs The number of frames rendered for each video.
rendered_percents array of longs Percent completion of each video's rendering process (0-100)
requests array of strings JSON-string reflecting each video's creation parameters.
status array of strings The status of the last rendered frame for each video. Either OK or Error with a message indicating the nature of the error.
ttls array of longs The remaining TTL, in minutes, before the respective video expires (-1 if it will never expire).
info map of string to strings Additional information.

Empty string in case of an error.