加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Push.cpp 3.25 KB
一键复制 编辑 原始数据 按行查看 历史
zc 提交于 2020-06-17 08:53 . 修改srt使用模式
#include "Push.h"
#include "Config.h"
#include <QFile>
#include "Json.h"
Push::Push(QObject *parent) : QObject(parent)
{
srcA=NULL;
srcV=NULL;
lastSrcA=NULL;
lastSrcV=NULL;
bPushing=false;
preview=Link::create("Mux");
QVariantMap data;
data["path"]="rtmp://127.0.0.1/live/preview";
preview->setData(data);
}
void Push::init()
{
QFile file("/link/config/push.json");
file.open(QFile::ReadOnly);
QString json=file.readAll();
file.close();
update(json);
if(config["autorun"].toBool())
start();
}
bool Push::start()
{
foreach(PushUrl *url,urlList)
{
if(url->enable)
url->mux->start();
}
startTime=QDateTime::currentDateTime();
preview->start();
bPushing=true;
return true;
}
bool Push::stop()
{
bPushing=false;
foreach(PushUrl *url,urlList)
{
url->mux->stop();
}
preview->stop();
return true;
}
QVariantMap Push::getState()
{
QVariantMap ret;
ret["duration"]=QDateTime::currentMSecsSinceEpoch()-startTime.toMSecsSinceEpoch();
ret["pushing"]=bPushing;
QVariantList speedList;
foreach(PushUrl *url,urlList)
{
if(bPushing && url->enable)
speedList<<(url->mux->invoke("getSpeed").toMap()["speed"].toInt()*8/1024);
else
speedList<<0;
}
ret["speed"]=speedList;
return ret;
}
bool Push::update(QString json)
{
config=Json::decode(json).toMap();
Channel *chn=Config::findChannelById(config["srcA"].toInt());
if(chn!=NULL)
srcA=chn->encA;
chn=Config::findChannelById(config["srcV"].toInt());
if(chn!=NULL)
srcV=chn->encV;
if(srcV==NULL)
return false;
QVariantList list=config["url"].toList();
for(int i=0;i<list.count() || i<urlList.count();i++)
{
PushUrl *tmp;
if(i>=urlList.count())
{
tmp=new PushUrl();
tmp->mux=Link::create("Mux");
urlList.append(tmp);
}
if(i>=list.count())
{
urlList.last()->mux->stop(true);
delete urlList.last()->mux;
urlList.removeLast();
continue;
}
tmp=urlList[i];
tmp->enable=list[i].toMap()["enable"].toBool();
tmp->path=list[i].toMap()["path"].toString();
QVariantMap data;
data["path"]=tmp->path;
data["bufLenV"]=256;
data["bufLenA"]=1024;
data["thread"]=true;
if(srcA==NULL)
data["mute"]=true;
else
{
if(lastSrcA!=NULL && lastSrcA!=srcA)
{
lastSrcA->unLinkA(tmp->mux);
lastSrcA->unLinkA(preview);
}
srcA->linkA(tmp->mux);
srcA->linkA(preview);
}
if(lastSrcV!=NULL && lastSrcV!=srcV)
{
lastSrcV->unLinkV(tmp->mux);
lastSrcV->unLinkV(preview);
}
srcV->linkV(tmp->mux);
srcV->linkV(preview);
tmp->mux->setData(data);
if(bPushing)
{
if(tmp->enable)
tmp->mux->start();
else
tmp->mux->stop();
}
}
lastSrcA=srcA;
lastSrcV=srcV;
Json::saveFile(config,"/link/config/push.json");
return true;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化