We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Console模块实现Controller接口
为整个ChopperBot提供对项目的视频文件,弹幕文件进行可控的管理以及在线浏览功能,并提供和包装成相应的API和Controller接口
删除,获取信息,修改文件名称
文件名称,文件创建时间,文件大小
弹幕模块文件结构如下
|-config |-- Barrage(弹幕模块根文件夹) |--- online (在线直播弹幕文件) |---- douyu (平台弹幕文件夹其中包含了该平台爬取的直播弹幕文件)
直播类型(直播or录播),平台信息
(String) GlobalFileCache.ModuleSrcConfigFile.get("src", ConstPool.BARRAGE)
详细展示一个弹幕文件:读取并返回一个弹幕文件中的弹幕列表,弹幕需包含(时间,弹幕内容)
视频模块文件结构如下
|-config |-- LiveRecord(视频模块根文件夹) |--- online (在线直播视频文件) |---- douyu (平台视频文件夹其中包含了该平台爬取的直播视频文件)
(String) GlobalFileCache.ModuleSrcConfigFile.get("src", ConstPool.LIVE_RECORD);
返回视频文件,能让前端播放视频内容
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Module
Console模块实现Controller接口
Description
为整个ChopperBot提供对项目的视频文件,弹幕文件进行可控的管理以及在线浏览功能,并提供和包装成相应的API和Controller接口
Requirement
一,文件管理开发要求
删除,获取信息,修改文件名称
文件名称,文件创建时间,文件大小
二,弹幕文件管理开发要求
弹幕模块文件结构如下
直播类型(直播or录播),平台信息
(String) GlobalFileCache.ModuleSrcConfigFile.get("src", ConstPool.BARRAGE)
获取弹幕模块路径三,视频文件管理开发需求
视频模块文件结构如下
直播类型(直播or录播),平台信息
(String) GlobalFileCache.ModuleSrcConfigFile.get("src", ConstPool.LIVE_RECORD);
获取视频模块路径The text was updated successfully, but these errors were encountered: