播轉點播是將直播流同步錄制為點播視頻,并支持媒資管理、媒體處理(轉碼、內容審核、智能封面等AI處理)、內容制作(云剪輯)、CDN分發加速等一系列操作。本文提供了Python SDK查詢直播流錄制生成的點播視頻列表的API調用示例。
初始化客戶端
使用前請先初始化客戶端,請參見初始化。
查詢直轉點視頻列表
調用ListLiveRecordVideo接口,完成查詢直轉點視頻列表功能。
接口參數和返回字段請參見ListLiveRecordVideo。調用示例如下:
from aliyunsdkvod.request.v20170321 import ListLiveRecordVideoRequest
def list_live_record_video(clt):
request = ListLiveRecordVideoRequest.ListLiveRecordVideoRequest()
request.set_StartTime("2018-04-24T03:21:04Z")
request.set_EndTime("2018-05-21T03:21:44Z")
request.set_StreamName("testStream****")
request.set_DomainName("example.aliyundoc.com")
request.set_AppName("testApp****")
request.set_accept_format('JSON')
response = json.loads(clt.do_action_with_exception(request))
return response
try:
videoList = list_live_record_video(clt)
print(json.dumps(videoList, ensure_ascii=False, indent=4))
except Exception as e:
print(e)
print(traceback.format_exc())
相關文檔
文檔內容是否對您有幫助?