Common function to query Microsoft Video Indexer
Project description
video_indexer
This library provides some common function for operating with Microsoft Video Indexer API
Getting started
pip install video_indexer
Create a VideoIndexer instance
from video_indexer import VideoIndexer
CONFIG = {
'SUBSCRIPTION_KEY': '',
'LOCATION': '',
'ACCOUNT_ID': ''
}
vi = VideoIndexer(
vi_subscription_key=CONFIG['SUBSCRIPTION_KEY'],
vi_location=CONFIG['LOCATION'],
vi_account_id=CONFIG['ACCOUNT_ID']
)
where SUBSCRIPTION_KEY can be found at https://api-portal.videoindexer.ai/developer LOCATION & ACCOUNT_ID can be found at https://www.videoindexer.ai/settings/account
Upload a video for indexing
video_id = vi.upload_to_video_indexer(
input_filename='some-video.mp4',
video_name='some-video-name', # identifier for video in Video Indexer platform, must be unique during indexing time
video_language='English'
)
The library will retry with delay if it's being hit by throttling limit. Maximum 5 times of retrying.
Get information for a video
info = vi.get_video_info(
video_id,
video_language='English'
)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
video_indexer-0.1.8.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for video_indexer-0.1.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b32e1840b982bb8b44ea21198ba0acc2b666cc4579d9f96d78627750de0353e |
|
MD5 | 679ff99f06c51cc45ec4ac0ec5436221 |
|
BLAKE2b-256 | d3c95db298f0a946afaed85ee6585e4b9de92ce98617eeb7c0e9fc6d8c641149 |