1 Star 0 Fork 67

programlife555/aquila

forked from gozfree/aquila 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
aquila.lua 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
gozfree 提交于 2020-04-26 00:46 . refine with librtsp
aquila_global = {
videocap = {
type = "usbcam",
device = "/dev/video0",
width = 640,
height = 480,
format = "YUY2",
},
audiocap = {
type = "alsa",
},
vencode = {
--type supported: mjpeg/x264
--type = "mjpeg",
type = "x264",
format = "NV12",
},
vdecode = {
type = "h264dec",
},
overlay = {
type = "timestamp",
offsetx = 0,
offsety = 0,
switch = "on",
},
playback = {
-- type supported sdl/snkfake
--type = "snkfake",
--format = "file",
type = "sdl",
--format = "rgb",
format = "yuv",
width = 640,
height = 480,
},
upstream = {
type = "rtsp",
port = 8554,
url = "rtsp://localhost/usbcam",
},
filters = {
"videocap",
"vencode",
"upstream",
},
graphs = {
{
source = "videocap",
sink = "vencode",
},
{
source = "vencode",
sink = "upstream",
},
},
}
return aquila_global
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/cyrs/aquila.git
[email protected]:cyrs/aquila.git
cyrs
aquila
aquila
master

搜索帮助