# ctyun-xstore-vod-sdk-python **Repository Path**: ctyun-xstore/ctyun-xstore-vod-sdk-python ## Basic Information - **Project Name**: ctyun-xstore-vod-sdk-python - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-26 - **Last Updated**: 2025-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 云点播 Python 客户端 ## 安装 请下载本库后,通过 pip 安装 ```shell python3 -m pip install . ``` ## 使用 ```python import xvod_client.logger as logger from xvod_client.xstore_vod_client import XstoreVodClient # 如果不调用这个函数,日志不会输出 logger.init_logger() # 可以设置日志级别,需要 `import logging` # logger.init_logger(level=logging.DEBUG) # 也可以设置自己的日志输出方式 # logger.set_logger(your_own_logger) client = XstoreVodClient("", "") videoId = client.multipart_upload( "C:/Documents/Video/2023-11/1699598768890.mp4", 1024 * 1024 * 5) transcode_task_ids = client.create_transcode_task(videoId, [], default_transcode_template=True) ```