1. 支持多账号多平台一键 授权管理
2.支持矩阵视频批量剪辑,批量发布
3. 多平台关键词布局,提升企业及产品曝光
4. 评论区关键词自动回复,意向线索智能挖掘
5. 多账号投放数据统计,省时省力
6. 留资线索,私信线索,意向线索,智能收集
7. 7*24小时智能在线客服,实时接待提升转化
云罗企客短视频矩阵系统主要是云罗科技基于抖音开放平台研发的集账号管理、视频创作。视频发布、数据统计、线索收集等为一体的短视频营销SaaS工具,致力于为通过技术为企业营销赋能。
短视频自媒体时代,各大中小企业营销方式发生了巨大的转变,从传统的“双微”模式,到现在的“南抖北快”,凡是具体流量的地方,必然少不了各大企业,短视频的巨大流量,也成为了企业争相逐鹿的新战场。面对企业巨大的营销需求,营销工具的开发与转变也变的十分重要。
Scope: video.create 需要申请权限 需要用户授权 该接口用于上传视频文件到文件服务器,获取视频文件video_id
(该 ID 为加密后的 ID)。该接口适用于抖音。
视频文件要求:
为了更好的观看体验,推荐上传16:9,分辨率为720p(1280x720)及以上的竖版视频。
支持常用视频格式,推荐使用 mp4 、webm。
视频文件大小不超过128M,时长在15分钟以内。
带品牌logo或品牌水印的视频,会命中抖音的审核逻辑,有比较大的概率导致分享视频推荐降权处理/分享视频下架处理/分享账号被封禁处理。强烈建议第三方应用自行处理好分享内容中的不合规水印。
视频审核逻辑与端上一致。
部分功能实现流程展示——剪辑
工作总台,所有短视频制作的数据总览统计,以及其他50+其他辅助运营工具在线跳转实用
1. 创建自己的视频计划(任务)
2. 批量根据所选模式上传所需要的素材
3. 可视化选择横屏、竖屏、标题,内容,文案布局的预设设定
4. 多个窗口投放入口,选择效果好的视频一键多账号,多平台发布投放
5. 投放数据分析,视频分析,点赞,粉丝趋势,关注,回复,意向线索概览分析
}
//随机色合集
if (isset($_REQUEST['color'])) {
$color_bg = $this->request->getArrParam('color');
$color_list = [];
foreach ($color_bg as $color => $val) {
array_push($color_list, $color);
}
unset($_REQUEST['color']);
$curr_platform['bgcolor'] = $color_list;
}
$updata['dv_platform'] = json_encode(array_merge($curr_platform, $_REQUEST));
$ret = $video_model->updateById($updata, $dv_id);
$this->showAjaxResult($ret, '保存配置');
}
/*
* 添加/编辑视频工程
*/
public function addVideoSubmitAction(){
$dv_id = $this->request->getIntParam('dv_id');
$video_name = $this->request->getStrParam('dv_title');
if (empty($video_name)) $this->displayJsonError('请输入项目名称');
$video_count = $this->request->getIntParam('dv_video_count', 1);
#$video_duration = $this->request->getIntParam('dv_video_duration', 30);
$video_transition = $this->request->getIntParam('dv_video_transition', 0);
$video_filter = $this->request->getIntParam('dv_video_filter', 0);
$video_effect = $this->request->getIntParam('dv_video_effect', 0);
$video_mixed = $this->request->getIntParam('dv_video_mode', 1); //混剪模式
$video_layout = $this->request->getIntParam('dv_video_layout', 1);//竖屏、横屏
$video_use = $this->request->getIntParam('dv_video_use', 5); //视频场景或组合数
$video_shot = $this->request->getIntParam('dv_video_shot', 5); //单镜头时长
$use_only = $this->request->getIntParam('dv_use_only', 0);
$use_platform = $this->request->getArrParam('use_platform');
//视频复用平台
$platform_list = [];
foreach ($use_platform as $key => $val) {
if ($val == 'on') {
array_push($platform_list, $key);
}
}
$video_duration = $video_use*$video_shot;
if ($video_duration < 10 || $video_duration > 120) {
$this->displayJsonError("最终成片时长建议介于10~120秒之间");
}
//获取视频信息
$video_model = new App_Model_Douyin_MysqlVideoStorage();
$name_exist = $video_model->findNameLikeBySid($video_name, $this->sid);
if ($name_exist && $name_exist['dv_id'] != $dv_id) {
$this->displayJsonError("创意工程『{$video_name}』已存在,请添加新工程。");
}
//标题、文案配置参数
$title_font = $this->request->getStrParam('title_font');
$title_size = $this->request->getIntParam('title_size', 12);
$title_color = $this->request->getStrParam('title_color');
$title_position = $this->request->getIntParam('title_position', 80);
$write_font = $this->request->getStrParam('write_font');
$write_size = $this->request->getIntParam('write_size', 14);
$write_color = $this->request->getStrParam('write_color');
$write_position = $this->request->getIntParam('write_position', 340);
$video_bg = $this->request->getIntParam('video_bg', 1);
$sigma_val = $this->request->getStrParam('sigma');
$color_bg = $this->request->getArrParam('color');
$color_list = [];
foreach ($color_bg as $color => $val) {
array_push($color_list, $color);
}
$select_type = $this->request->getIntParam('select_type', 1);
$vcn = $this->request->getArrParam('a_vcn');
$bgm = $this->request->getIntParam('bgm', 20);
$vcn_on = [];
foreach ($vcn as $key => $val) {
if ($val == 'on') {
$vcn_on[$key] = $key;
}