diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-video-indexer.spec | 214 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 216 insertions, 0 deletions
@@ -0,0 +1 @@ +/video_indexer-0.1.8.tar.gz diff --git a/python-video-indexer.spec b/python-video-indexer.spec new file mode 100644 index 0000000..a65f6e0 --- /dev/null +++ b/python-video-indexer.spec @@ -0,0 +1,214 @@ +%global _empty_manifest_terminate_build 0 +Name: python-video-indexer +Version: 0.1.8 +Release: 1 +Summary: Common function to query Microsoft Video Indexer +License: MIT +URL: https://github.com/bklim5/python_video_indexer_lib +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/12/89/3798e522aebe155851abe161c281d8d53ecbeb22244c9f1908f7832d6d5c/video_indexer-0.1.8.tar.gz +BuildArch: noarch + +Requires: python3-requests + +%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' +) +``` + + + +%package -n python3-video-indexer +Summary: Common function to query Microsoft Video Indexer +Provides: python-video-indexer +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-video-indexer +# 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' +) +``` + + + +%package help +Summary: Development documents and examples for video-indexer +Provides: python3-video-indexer-doc +%description help +# 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' +) +``` + + + +%prep +%autosetup -n video-indexer-0.1.8 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-video-indexer -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.8-1 +- Package Spec generated @@ -0,0 +1 @@ +af5a787c056e6689f708ea3b49693d51 video_indexer-0.1.8.tar.gz |
