Uses of Class
video.api.client.api.models.LiveStream
-
Packages that use LiveStream Package Description video.api.client.api.clients video.api.client.api.models -
-
Uses of LiveStream in video.api.client.api.clients
Methods in video.api.client.api.clients that return LiveStream Modifier and Type Method Description LiveStreamLiveStreamsApi. create(LiveStreamCreationPayload liveStreamCreationPayload)Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.LiveStreamLiveStreamsApi. deleteThumbnail(String liveStreamId)Delete a thumbnail Send the unique identifier for a live stream to delete its thumbnail.LiveStreamLiveStreamsApi. get(String liveStreamId)Retrieve live stream Supply a liveStreamId, and you'll get all the details for streaming into, and watching the livestream.LiveStreamLiveStreamsApi. update(String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).LiveStreamLiveStreamsApi. uploadThumbnail(String liveStreamId, File file)Upload a thumbnail Upload an image to use as a backdrop for your livestream.Methods in video.api.client.api.clients that return types with arguments of type LiveStream Modifier and Type Method Description ApiResponse<LiveStream>LiveStreamsApi. createWithHttpInfo(LiveStreamCreationPayload liveStreamCreationPayload)Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.ApiResponse<LiveStream>LiveStreamsApi. deleteThumbnailWithHttpInfo(String liveStreamId)Delete a thumbnail Send the unique identifier for a live stream to delete its thumbnail.Page<LiveStream>LiveStreamsApi.APIlistRequest. execute()Execute list requestApiResponse<LiveStream>LiveStreamsApi. getWithHttpInfo(String liveStreamId)Retrieve live stream Supply a liveStreamId, and you'll get all the details for streaming into, and watching the livestream.ApiResponse<LiveStream>LiveStreamsApi. updateWithHttpInfo(String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).ApiResponse<LiveStream>LiveStreamsApi. uploadThumbnailWithHttpInfo(String liveStreamId, File file)Upload a thumbnail Upload an image to use as a backdrop for your livestream.Method parameters in video.api.client.api.clients with type arguments of type LiveStream Modifier and Type Method Description okhttp3.CallLiveStreamsApi. createAsync(LiveStreamCreationPayload liveStreamCreationPayload, ApiCallback<LiveStream> _callback)Create live stream (asynchronously) A live stream will give you the 'connection point' to RTMP your video stream to api.video.okhttp3.CallLiveStreamsApi. deleteThumbnailAsync(String liveStreamId, ApiCallback<LiveStream> _callback)Delete a thumbnail (asynchronously) Send the unique identifier for a live stream to delete its thumbnail.okhttp3.CallLiveStreamsApi.APIlistRequest. executeAsync(ApiCallback<Page<LiveStream>> _callback)Execute list request (asynchronously)okhttp3.CallLiveStreamsApi. getAsync(String liveStreamId, ApiCallback<LiveStream> _callback)Retrieve live stream (asynchronously) Supply a liveStreamId, and you'll get all the details for streaming into, and watching the livestream.okhttp3.CallLiveStreamsApi. updateAsync(String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload, ApiCallback<LiveStream> _callback)Update a live stream (asynchronously) Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).okhttp3.CallLiveStreamsApi. uploadThumbnailAsync(String liveStreamId, File file, ApiCallback<LiveStream> _callback)Upload a thumbnail (asynchronously) Upload an image to use as a backdrop for your livestream. -
Uses of LiveStream in video.api.client.api.models
Methods in video.api.client.api.models that return LiveStream Modifier and Type Method Description LiveStreamLiveStream. _public(Boolean _public)LiveStreamLiveStream. assets(LiveStreamAssets assets)LiveStreamLiveStream. broadcasting(Boolean broadcasting)LiveStreamLiveStream. createdAt(OffsetDateTime createdAt)LiveStreamLiveStream. liveStreamId(String liveStreamId)LiveStreamLiveStream. name(String name)LiveStreamLiveStream. playerId(String playerId)LiveStreamLiveStream. record(Boolean record)LiveStreamLiveStream. streamKey(String streamKey)LiveStreamLiveStream. updatedAt(OffsetDateTime updatedAt)Methods in video.api.client.api.models that return types with arguments of type LiveStream Modifier and Type Method Description List<LiveStream>LiveStreamListResponse. getData()Get dataMethods in video.api.client.api.models with parameters of type LiveStream Modifier and Type Method Description LiveStreamListResponseLiveStreamListResponse. addDataItem(LiveStream dataItem)Method parameters in video.api.client.api.models with type arguments of type LiveStream Modifier and Type Method Description LiveStreamListResponseLiveStreamListResponse. data(List<LiveStream> data)voidLiveStreamListResponse. setData(List<LiveStream> data)
-