All Projects → apivideo → api.video-python-client

apivideo / api.video-python-client

Licence: MIT license
The official Python client library for api.video

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to api.video-python-client

FaceNet-IOT
IOT implementation for FaceNet project by David Sandberg https://github.com/davidsandberg/facenet
Stars: ✭ 18 (+5.88%)
Mutual labels:  video-streaming
py-mjpeg
Python MJPEG streaming utilities
Stars: ✭ 32 (+88.24%)
Mutual labels:  video-streaming
ZoomableVideo
PinchZoom on TextureView while playing your videos
Stars: ✭ 17 (+0%)
Mutual labels:  video-streaming
2nfm
Share your screen and computer's audio via WebRTC!
Stars: ✭ 29 (+70.59%)
Mutual labels:  video-streaming
videostream
Video Streaming site using Laravel and WebTorrent
Stars: ✭ 36 (+111.76%)
Mutual labels:  video-streaming
SSffmpegVideoOperation
This is a library of FFmpeg for android... 📸 🎞 🚑
Stars: ✭ 261 (+1435.29%)
Mutual labels:  video-streaming
emiga-stream
Video stream using Express.js , Socket.io
Stars: ✭ 24 (+41.18%)
Mutual labels:  video-streaming
streamZ
A simple video streaming application made with Dart, JavaScript, HTML, CSS & ❤️
Stars: ✭ 28 (+64.71%)
Mutual labels:  video-streaming
all-in-one-video-pack.wordpress
A Wordpress Plugin to simplify adding Kaltura to your Blog
Stars: ✭ 19 (+11.76%)
Mutual labels:  video-streaming
dewdle
A remote video-feed drawing tool (telestrator) for streaming and broadcast environments.
Stars: ✭ 29 (+70.59%)
Mutual labels:  video-streaming
shaka-player-react
A simple React component wrapper for shaka-player
Stars: ✭ 79 (+364.71%)
Mutual labels:  video-streaming
bigscreen-player
Simplified media playback for bigscreen devices
Stars: ✭ 62 (+264.71%)
Mutual labels:  video-streaming
SACK
System Abstraction Component Kit
Stars: ✭ 18 (+5.88%)
Mutual labels:  video-streaming
YetAnotherVideoPlayer
Yet Another Video Player for Andoid
Stars: ✭ 62 (+264.71%)
Mutual labels:  video-streaming
opentok-react-native
React Native live video streaming demo app using Open-Tok
Stars: ✭ 36 (+111.76%)
Mutual labels:  video-streaming
MessagingAPI-SDK-python
Telstra Messaging SDK - Python Library
Stars: ✭ 21 (+23.53%)
Mutual labels:  sdk-python
react-native-vlc-media-player
React native media player for video streaming and playing. Supports RTSP, RTMP and other protocols supported by VLC player
Stars: ✭ 221 (+1200%)
Mutual labels:  video-streaming
pyrite
Pyrite is a web(RTC) client for the Galène videoconference server.
Stars: ✭ 253 (+1388.24%)
Mutual labels:  video-streaming
client-python
An auto-generated python SDK to interact with KubeVirt resources
Stars: ✭ 21 (+23.53%)
Mutual labels:  sdk-python
SDK-python
SAP Conversational AI official SDK for Python
Stars: ✭ 22 (+29.41%)
Mutual labels:  sdk-python

badge   badge   badge

api.video Python client

api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.

Table of contents

Project description

api.video's Python API client streamlines the coding process. Chunking files is handled for you, as is pagination and refreshing your tokens.

Getting started

Requirements

Python >= 3.6

Installation

pip install api.video

Code samples

Automatic authentication

list all videos:

import apivideo
from apivideo.apis import VideosApi

api_key = "__API_KEY__"

with apivideo.AuthenticatedApiClient(api_key) as client:
    # if you rather like to use the sandbox environment:
    # with apivideo.AuthenticatedApiClient(api_key, production=False) as client:

    videos_api = VideosApi(client)
    videos = videos_api.list()

In this context the client will keep its authentication updated.

Manual authentication

If there is an issue, like you think a refresh token may have been exposed, you can manually retrieve a new one. Otherwise, authentication is handled for you. When you retrieve a new refresh token, the old one becomes invalid. Here is the code, where you retrieve a list of videos and then refresh your token:

import apivideo
from apivideo.apis import VideosApi
from apivideo.exceptions import ApiAuthException

api_key = "__API_KEY__"

client = apivideo.AuthenticatedApiClient(api_key)
# if you rather like to use the sandbox environment:
# client = apivideo.AuthenticatedApiClient(api_key, production=False)
client.connect()
videos_api = VideosApi(client)
videos = videos_api.list()

try:
    client.refresh_token()
except ApiAuthException:
    print("cannot refresh token !")

...

Documentation

API Endpoints

All URIs are relative to https://ws.api.video

CaptionsApi

Method HTTP request Description
upload POST /videos/{videoId}/captions/{language} Upload a caption
get GET /videos/{videoId}/captions/{language} Retrieve a caption
update PATCH /videos/{videoId}/captions/{language} Update a caption
delete DELETE /videos/{videoId}/captions/{language} Delete a caption
list GET /videos/{videoId}/captions List video captions

ChaptersApi

Method HTTP request Description
upload POST /videos/{videoId}/chapters/{language} Upload a chapter
get GET /videos/{videoId}/chapters/{language} Retrieve a chapter
delete DELETE /videos/{videoId}/chapters/{language} Delete a chapter
list GET /videos/{videoId}/chapters List video chapters

LiveStreamsApi

Method HTTP request Description
create POST /live-streams Create live stream
get GET /live-streams/{liveStreamId} Retrieve live stream
update PATCH /live-streams/{liveStreamId} Update a live stream
delete DELETE /live-streams/{liveStreamId} Delete a live stream
list GET /live-streams List all live streams
upload_thumbnail POST /live-streams/{liveStreamId}/thumbnail Upload a thumbnail
delete_thumbnail DELETE /live-streams/{liveStreamId}/thumbnail Delete a thumbnail

PlayerThemesApi

Method HTTP request Description
create POST /players Create a player
get GET /players/{playerId} Retrieve a player
update PATCH /players/{playerId} Update a player
delete DELETE /players/{playerId} Delete a player
list GET /players List all player themes
upload_logo POST /players/{playerId}/logo Upload a logo
delete_logo DELETE /players/{playerId}/logo Delete logo

RawStatisticsApi

Method HTTP request Description
list_live_stream_sessions GET /analytics/live-streams/{liveStreamId} List live stream player sessions
list_session_events GET /analytics/sessions/{sessionId}/events List player session events
list_video_sessions GET /analytics/videos/{videoId} List video player sessions

UploadTokensApi

Method HTTP request Description
create_token POST /upload-tokens Generate an upload token
get_token GET /upload-tokens/{uploadToken} Retrieve upload token
delete_token DELETE /upload-tokens/{uploadToken} Delete an upload token
list GET /upload-tokens List all active upload tokens.

VideosApi

Method HTTP request Description
create POST /videos Create a video
upload POST /videos/{videoId}/source Upload a video
upload_with_upload_token POST /upload Upload with an upload token
get GET /videos/{videoId} Retrieve a video
update PATCH /videos/{videoId} Update a video
delete DELETE /videos/{videoId} Delete a video
list GET /videos List all videos
upload_thumbnail POST /videos/{videoId}/thumbnail Upload a thumbnail
pick_thumbnail PATCH /videos/{videoId}/thumbnail Pick a thumbnail
get_status GET /videos/{videoId}/status Retrieve video status

WatermarksApi

Method HTTP request Description
upload POST /watermarks Upload a watermark
delete DELETE /watermarks/{watermarkId} Delete a watermark
list GET /watermarks List all watermarks

WebhooksApi

Method HTTP request Description
create POST /webhooks Create Webhook
get GET /webhooks/{webhookId} Retrieve Webhook details
delete DELETE /webhooks/{webhookId} Delete a Webhook
list GET /webhooks List all webhooks

Models

Have you gotten use from this API client?

Please take a moment to leave a star on the client

This helps other users to find the clients and also helps us understand which clients are most popular. Thank you!

Contribution

Since this API client is generated from an OpenAPI description, we cannot accept pull requests made directly to the repository. If you want to contribute, you can open a pull request on the repository of our client generator. Otherwise, you can also simply open an issue detailing your need on this repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].