dashboard
repositories
filestore
activity
search
login
hefan
/
LiveProject
直播工具
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
绘制文本功能
Runt
2025-04-13
8c0f96b20f4cf44d230b373f51261566af02de8e
[hefan/LiveProject.git]
/
app
/
src
/
main
/
java
/
com
/
runt
/
live
/
enum
/
StreamType.kt
1
2
3
4
5
6
7
8
9
10
11
package com.runt.live.enum
/**
* @author Runt(qingingrunt2010@qq.com)
* @purpose 流类型
* @date 9/17/24
*/
enum class StreamType(var value : Int) {
NONE(-1),CAMERA(0),RTMP(1),VIDEO(2) ,AUDIO(3) ,SYSTEM(4) //视频文件、相机、音频文件,RTMP推流,本地系统
,UVC(5),TEXT(6)
}