/show/video

URL: http://<db.host>:<db.port>/show/video

Retrieves information about rendered videos.

Input Parameter Description

NameTypeDescription
pathsarray of stringsThe fully-qualified KiFS paths for the videos to show. If empty, shows all videos.
optionsmap of string to stringsOptional 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:

NameTypeDescription
statusString'OK' or 'ERROR'
messageStringEmpty if success or an error message
data_typeString'show_video_response' or 'none' in case of an error
dataStringEmpty string
data_strJSON or String

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

NameTypeDescription
creation_timesarray of stringsCreation time for each video as an ISO-8601 datetime.
elapsed_render_time_secondsarray of longsThe elapsed time spent rendering each video in seconds.
job_idsarray of longsThe job id of the rendering process, for each video that is still being rendered.
pathsarray of stringsKIFS path to each video.
rendered_bytesarray of longsThe number of bytes emitted by the encoder for each video.
rendered_framesarray of longsThe number of frames rendered for each video.
rendered_percentsarray of longsPercent completion of each video's rendering process (0-100)
requestsarray of stringsJSON-string reflecting each video's creation parameters.
statusarray of stringsThe status of the last rendered frame for each video. Either OK or Error with a message indicating the nature of the error.
ttlsarray of longsThe remaining TTL, in minutes, before the respective video expires (-1 if it will never expire).
infomap of string to stringsAdditional information.

Empty string in case of an error.