Working with video streams from Java SDK
Java SDK offers you a way to handle videos and their streams from the backend of your system.
Every video has multiple streams. From original, to default and any other streams that have been created based on your setup.
Here you will see the way to work with video streams through your Java API calls.
Java SDK Video Streams Methods
- index Return all streams associated with a video
ziggeo.streams().index(String video_token_or_key, JSONObject arguments)
- states Filter streams by state
This method returns JSON[ { "volatile":false, "token":"d751140b4e1cf0a243f32092f6110296", "key":null, "creation_type":5, "state":5, "streamable":2, "video_type":"mp4", "video_sub_type":"other", "image_size":0, "video_size":36078, "video_width":640, "video_height":360, "duration":1, "has_video":true, "has_image":true, "submission_date":1390257799, "type":"ApiVideoStream", "created":1390257799, "owned":true, "creation_type_string":"SERVER_UPLOAD", "streamable_string":"DEGRADED", "state_string":"READY" }]
- get Get a single stream
ziggeo.streams().get(String video_token_or_key, String token_or_key)
This method returns JSON{ "volatile":false, "token":"d751140b4e1cf0a243f32092f6110296", "key":null, "creation_type":5, "state":5, "streamable":2, "video_type":"mp4", "video_sub_type":"other", "image_size":0, "video_size":36078, "video_width":640, "video_height":360, "duration":1, "has_video":true, "has_image":true, "submission_date":1390257799, "type":"ApiVideoStream", "created":1390257799, "owned":true, "creation_type_string":"SERVER_UPLOAD", "streamable_string":"DEGRADED", "state_string":"READY" }
- download_video Download the video data associated with the stream
ziggeo.streams().download_video(String video_token_or_key, String token_or_key)
This method returns DATA - download_image Download the image data associated with the stream
ziggeo.streams().download_image(String video_token_or_key, String token_or_key)
This method returns DATA - push_to_service Push a stream to a provided push service.
ziggeo.streams().push_to_service(String video_token_or_key, String token_or_key, JSONObject arguments)
- pushservicetoken Push Services's token (from the Push Services configured for the app)
This method returns JSON - delete Delete the stream
ziggeo.streams().delete(String video_token_or_key, String token_or_key)
- delete_file Delete video file only of specific stream (keeps the data) by providing video token or key.
ziggeo.streams().delete_file(String video_token_or_key, String token_or_key)
- create Create a new stream
ziggeo.streams().create(String video_token_or_key, JSONObject arguments, String file)
- file Video file to be uploaded
This method returns JSON{ "volatile":false, "token":"d751140b4e1cf0a243f32092f6110296", "key":null, "creation_type":5, "state":5, "streamable":2, "video_type":"mp4", "video_sub_type":"other", "image_size":0, "video_size":36078, "video_width":640, "video_height":360, "duration":1, "has_video":true, "has_image":true, "submission_date":1390257799, "type":"ApiVideoStream", "created":1390257799, "owned":true, "creation_type_string":"SERVER_UPLOAD", "streamable_string":"DEGRADED", "state_string":"READY" }
- attach_image Attaches an image to a new stream. Must be attached before video, since video upload triggers the transcoding job and binds the stream
ziggeo.streams().attach_image(String video_token_or_key, String token_or_key, JSONObject arguments, String file)
- file Image file to be attached
This method returns JSON - attach_video Attaches a video to a new stream
ziggeo.streams().attach_video(String video_token_or_key, String token_or_key, JSONObject arguments, String file)
- file Video file to be attached
This method returns JSON - attach_subtitle Attaches a subtitle to the stream.
ziggeo.streams().attach_subtitle(String video_token_or_key, String token_or_key, JSONObject arguments)
- lang Subtitle language
- label Subtitle reference
- data Actual subtitle
This method returns JSON