一、什么是短视频矩阵管理系统?
短视频矩阵管理系统是专门为企业号商家、普通号商家提供帐号运营从流量 到转化成交的一站式服务方案,具体包含:点赞关注评论主动私信 ,评论区回复,自动潜客户挖掘,矩阵号营销,自动化营销,粉丝 管理等功能,可以帮助企业或商家快速批量制作高质量短视频,扩大企业宣传,提升企业经营效果。
通过短视频矩阵系统的运营,可以为企业带来什么效果呐,那小编也来逐一为大家分析下:
1.多账号授权绑定:
通过系统可以利用不同平台不同推荐机制,实现多账号多平台的统一授权管理,不需要企业再频繁的登录和退出各个平台账户,可以简化企业运营流程,降低企业经营成本
2. 短视频批量制作
在企业经营多平台多账号的过程中,内容的批量制作一直是企业最为头疼的问题,那么通过短视频矩阵系统,可以使用AI技术自动处理视频素材,商家只需要用手机拍摄几段基础素材,系统便可以自动匹配热门音乐,话题等对视频进行自动合成。
3 . 短视频定时自动发布
目前小编了解到的很多平台目前只支持单账户,单视频的发布,这样对企业经营多账号来说还是比较费力的,系统可以设置多账号,多平台定时一一键发布,包含投放时间,投放平台,投放频次等的设置,只需要授权好账户,设置好定时发布任务,无需人工干预,即可实现自动化运营管理。
4. 意向客户线索自动统计,智能客服自动接待
通过矩阵系统,除了可以实现上诉功能外,还可以实现评论及私信的自动回复,方便企业经营管理,也解决了企业或商家由于未及时相应造成的意向客户线索流失等问题。
意向线索收集:如图
二、 短视频矩阵系统融入了哪些能力?可以实现什么效果?
短视频矩阵系统在很大程度除了解决了企业经营效率及经营成本的问题外,还可以帮助企业推送企业产品信息及产品动态,吸引用户观看,点击,留资等,可以增加用户账户互动,提升品牌形象及企业认知。
综上,小编认为,抖音seo短视频矩阵系统是一种融合了多种研发技术的短视频推广工具及运营平台,可以帮助企业降低经营成本提升经营效率,那未来还将融入更多新的研发技术及开发能力,为企业经营福能。
部分代码展示如下:
/*
* 新增场景
*/
public function addSceneAction() {
$dv_id = $this->request->getIntParam('dv_id');
$name = $this->request->getStrParam('name');
$scene_model = new App_Model_Douyin_MysqlVideoSceneStorage();
$video_model = new App_Model_Douyin_MysqlVideoStorage();
$video_item = $video_model->getRowByIdSid($dv_id, $this->sid);
if (empty($video_item)) {
$this->displayJsonError('参数错误');
}
$max_scene = $scene_model->getMaxSceneByDvid($dv_id);
$indata = [
'dvs_dv_id' => $dv_id,
'dvs_ds_id' => $this->sid,
'dvs_name' => $name,
'dvs_duration' => $video_item['dv_video_shot']*1000,
'dvs_scene' => $max_scene+1,
'dvs_create_time' => time(),
];
$ret = $scene_model->insertValue($indata);
if ($ret) {
$video_model->incNumberById('dv_video_use', 1, $dv_id);
}
$url = "/dydqtshoppc/video/startProject?dv_id={$dv_id}&type=1&scene=".$indata['dvs_scene'];
$this->displayJsonSuccess(['url' => $url], true, '添加成功');
}
public function deleteSceneAction() {
$dv_id = $this->request->getIntParam('dv_id');
$scene = $this->request->getIntParam('scene', 1);
if ($scene == 1) {
$this->displayJsonError('第一个场景不允许删除');
}
$scene_model = new App_Model_Douyin_MysqlVideoSceneStorage();
$video_model = new App_Model_Douyin_MysqlVideoStorage();
$where = [
['name' => 'dvs_ds_id', 'oper' => '=', 'value' => $this->sid],
['name' => 'dvs_dv_id', 'oper' => '=', 'value' => $dv_id],
['name' => 'dvs_scene', 'oper' => '=', 'value' => $scene]
];
$ret = $scene_model->deleteValue($where);
if ($ret) {
$video_model->decNumberById('dv_video_use', 1, $dv_id);
}
$url = "/dydqtshoppc/video/startProject?dv_id={$dv_id}&type=1&scene=1";
$this->displayJsonSuccess(['url' => $url], true, '删除成功');
}
/*
* 视频缓存
*/
public function cacheVideoAction() {
//面包屑
$breadcrumbs = [
['title' => 'AI视频创意', 'link' => '#'],
['title' => '视频仓库', 'link' => ''],
];
$this->buildBreadcrumbs($breadcrumbs);
$dv_id = $this->request->getStrParam('dv_id');
$video_model = new App_Model_Douyin_MysqlVideoStorage();
$video_info = $video_model->getRowByIdSid($dv_id, $this->sid);
if (empty($video_info)) {
$this->displayBlankPage('参数错误');
}
$this->output['video_info'] = $video_info;
//获取视频缓存列表
$where = [
['name' => 'dvtv_s_id', 'oper' => '=', 'value' => $this->sid],
['name' => 'dvtv_dv_id', 'oper' => '=', 'value' => $dv_id],
];
$cache_model = new App_Model_Douyin_MysqlVideoTempVideoStorage();
$template_list = $cache_model->getList($where,$this->index,$this->count);
foreach ($template_list as &$item) {
$item['score'] = 100 - min($item['dvtv_score'], 100);
$use_platform = empty($item['dvtv_use_platform']) ? [] : json_decode($item['dvtv_use_platform'], 1);
$use_platform = array_unique($use_platform);
$item['used_count'] = count($use_platform);
$item['used_platform'] = $use_platform;
}
//计算分页
$template_list_all = $cache_model->getCount($where);
$page_libs = new Libs_Pagination_Paginator($template_list_all,$this->count,'jquery',true);
$pageHtml = $page_libs->render();
$this->output['template_list'] = $template_list;
$this->output['pageHtml'] = $pageHtml;
$this->output['dv_id'] = $dv_id;
$this->output_materail_link($dv_id, 0, $video_info);
//点数展示
$collect_model = new App_Model_Douyin_MysqlCollectShopStorage();
$collect_info = $collect_model->getCollectSurplusBySid($this->sid);
$this->output['collect_info'] = $collect_info;
//预约列表
$appoint_model = new App_Model_Task_MysqlAppointTaskStorage();
$appoint_where = [
['name' => 'va_ds_id', 'oper' => '=', 'value' => $this->sid],
['name' => 'va_dv_id', 'oper' => '=', 'value' => $dv_id],
#['name' => 'va_status', 'oper' => '<>', 'value' => 2],
];
$appoint_sort = ['va_status' => 'ASC'];
$appoint_list = $appoint_model->getList($appoint_where, 0, 1, $appoint_sort);
$this->output['appoint_list'] = $appoint_list;
$this->output['platform_list'] = $this->platform;
$this->output['appoint_status'] = [
0 => '<span style="color: #ff875c;">待执行</span>',
1 => '<span style="color: darkgreen">执行中</span>',
2 => '<span style="color: red">已结束</span>',
3 => '<span style="color: #db4040;">异常中断</span>',
];
$this->displaySmarty('dydqtshoppc/video/edit-project.tpl');
}
/*
* 生成预览视频