版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

{
    "state": "train_session_faceToFace"
}


8、使用本地视频服务器上传课件


步骤一:

在私有环境中部署视频服务,请联系部署老师,保留app_id和app_secret

步骤二:

打开培训设置的全局配置,打开本地部署的视频服务器以及配置本地视频服务器的ip地址和端口

步骤三:

配置课件上传:

TrainOnlineCourse.meta.info.teacherCenter_trainClass.json

注意:在upload中配置的准确的视频服务器ip和端口,以及app_id和app_secret,其他的配置可直接粘贴使用

代码块
languagejson
themeEmacs
firstline1
linenumberstrue
{
    "fields": [
        {
            "key": "course_index",
            "options": {
                "onlyTc": false,
                "after_process": "=function (info, file_index, response) {if(info.name){SCOPE.base_form.data.course_index = response.data.index + ',' + info.name;let course_format_arr=info.name.split('.');SCOPE.base_form.data.course_format =course_format_arr[course_format_arr.length-1];SCOPE.base_form.data.name = info.name;}}",
                "uploadLocal": true,
                "custom_api": {
                    "upload": "http://119.91.211.116:23963/upload_video?app_id=123456&app_secret=qwe123"
                }
            }
        }
    ]
}

...