Commit 10cac36b authored by 吴春's avatar 吴春

提交代码

parent 0ead0b38
......@@ -133,6 +133,8 @@ namespace Edu.WebApi.Controllers.Course
{
extModel.RoomPicList = new List<string>();
}
extModel.EndTime = extModel.EndTime ?? "09:30";
extModel.StartTime = extModel.StartTime ?? "21:30";
return ApiResult.Success(data: extModel);
}
......
......@@ -71,5 +71,53 @@ namespace Edu.WebApi.Controllers.Video
return ApiResult.Failed("获取失败");
}
}
/// <summary>
/// 获取播放地址
/// </summary>
/// <returns></returns>
[HttpPost]
[AllowAnonymous]
public ApiResult GetPlayInfo()
{
JObject jobj = JObject.Parse(RequestParm.Msg.ToString());
string VideoId = jobj.GetStringValue("strVid");
try
{
string regionId = "cn-shanghai";
IClientProfile profile = DefaultProfile.GetProfile(regionId, "LTAI5tBoku6yPFSkacA3sbAT", "zcjzTpMGyPwchaKAyUFeKNEBcqAxvL");
var acsClient = new Aliyun.Acs.Core.DefaultAcsClient(profile);
if (string.IsNullOrEmpty(VideoId))
{
return ApiResult.Failed("获取失败");
}
GetPlayInfoRequest request = new GetPlayInfoRequest();
request.VideoId = VideoId;
// 初始化客户端
// DefaultAcsClient client = InitVodClient();
// 发起请求,并得到 response
GetPlayInfoResponse response = acsClient.GetAcsResponse(request);
List<GetPlayInfoResponse.GetPlayInfo_PlayInfo> playInfoList = response.PlayInfoList;
GetPlayInfoResponse.GetPlayInfo_VideoBase videoBase = response.VideoBase;
if (playInfoList.Count > 0)
{
return ApiResult.Success("",new { URL= playInfoList[0].PlayURL ,VideoImg= videoBase.CoverURL});
}
else
{
return ApiResult.Failed("获取失败");
}
}
catch (Exception)
{
return ApiResult.Failed("获取失败");
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment