示例#1
0
文件: Utils.cs 项目: zenit1/beame-lfe
 public static string CombimeVideoPictureKey(this long bcId, int userId, CommonEnums.eVideoPictureTypes type)
 {
     return
         ($"{userId}/{bcId}/{(type == CommonEnums.eVideoPictureTypes.Still ? Constants.VIDEO_STILL_NAME : Constants.VIDEO_THUMB_NAME)}.jpg");
 }
示例#2
0
文件: Utils.cs 项目: zenit1/beame-lfe
 public static string CombimeVideoUrl(this long bcId, int userId, CommonEnums.eVideoPictureTypes type)
 {
     return
         ($"https://courses-videos-prod.beame.io/{userId}/{bcId}/{(type == CommonEnums.eVideoPictureTypes.Still ? Constants.VIDEO_STILL_NAME : Constants.VIDEO_THUMB_NAME)}.jpg");
 }