Working with video streams from C# SDK
C# SDK offers you a way to handle videos and their streams from the backend of your system.
What if you wanted to work with the videos through the API + from your C# server codes? Well with Ziggeo that is very simple and here you will see more about how exactly you can do that.
You will see each method available and then example code that you can check to see a working example of the same.
C# SDK Video Streams Methods
- index Return all streams associated with a video
ziggeo.streams().index(string video_token_or_key, Dictionary<string, string> 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, Dictionary<string, string> 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, Dictionary<string, string> 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, Dictionary<string, string> 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, Dictionary<string, string> 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, Dictionary<string, string> arguments)
- lang Subtitle language
- label Subtitle reference
- data Actual subtitle
This method returns JSON