Supported dash for compress.

This commit is contained in:
sdk-team
2019-11-28 15:17:44 +08:00
parent 55ccde8b7c
commit 059ea89535
4 changed files with 18 additions and 1 deletions

View File

@@ -60,6 +60,17 @@ void CreateVideoCompressTaskRequest::setNotifyEndpoint(const std::string& notify
setCoreParameter("NotifyEndpoint", notifyEndpoint);
}
std::string CreateVideoCompressTaskRequest::getTargetContainer()const
{
return targetContainer_;
}
void CreateVideoCompressTaskRequest::setTargetContainer(const std::string& targetContainer)
{
targetContainer_ = targetContainer;
setCoreParameter("TargetContainer", targetContainer);
}
std::string CreateVideoCompressTaskRequest::getCustomMessage()const
{
return customMessage_;