体验地址 easy-video
easy-video-net
是基于Golang + Vue开发的前后端分离项目
- Server端采用 Golang + Gin + Gorm
- Web端采用 Vue3 + Typescript + Element-Plus
- 视频上传分享支持转码及弹幕功能
- 稿件投稿使用富文本编辑器进行简单发布
- 一个简单直播功能 需要使用livego搭建直播服务
- 简单的消息通知 及其im功能
- 个人相关及其相关发布信息的CRUD
- 上传支持 不用存储、 不同质量、 实现本地及阿里云oss存储、 支持分片上传、 断点续传、 oss直传
- 视频本地存储使用ffmpeg进行视频转码 , oss使用阿里云智能媒体转码
- 简单实现直播功能并且采用protobuf进行通信
easy-vide-net
├─service 服务端代码
│ ├─assets 静态资源
│ ├─config 配置文件
│ ├─consts 常量定义
│ ├─controllers 控制器
│ ├─global 全局使用
│ ├─interaction 结构体定义
│ │ ├─receive 请求
│ │ └─response 响应
│ ├─logic 逻辑处理
│ ├─middlewares 中间件
│ ├─models 模型定义
│ ├─proto proto文件
│ ├─router 路由定义
│ ├─runtime 运行时文件如日志
│ └─utils 工具类
│
└─web
│ .env 配置文件
└─src
├─apis 接口定义
├─assets 静态资源
├─components 组件
├─hooks
├─logic 逻辑代码
├─proto proto文件
├─router 路由定义
├─store 状态管理
├─types 类型定义
├─utils 工具类
└─views 视图文件
-
Server端依赖
- golang v1.18
- mysql v8.0
- reids v3.0
- ffmpeg v4.2
-
Web端依赖
- node v16.16
- 配置 ./service/config/config.ini
cd service && go mod tidy
go build
./easy-video-net.exe
- 配置 ./web/.env
cd web && npm i
npm run dev
The MIT License (MIT)
Copyright (c) 2023 saunju
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.