49 Star 456 Fork 214

007lz / FFmpeg-QT实现摄像头rtsp实时显示

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 512 Bytes
一键复制 编辑 原始数据 按行查看 历史
lizhen 提交于 2024-02-27 10:58 . 规范注释

/**
* 李震
* 我的码云:https://git.oschina.net/git-lizhen
* 我的CSDN博客:http://blog.csdn.net/weixin_38215395
* 联系:QQ1039953685
*/
#include <QApplication>
#include <QTextCodec>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTextCodec *codec = QTextCodec::codecForName("UTF-8"); //设置编码格式为UTF-8
QTextCodec::setCodecForLocale(codec);
MainWindow w;
w.show();
return a.exec();
}
C++
1
https://gitee.com/git-lz/FFmpeg-QT-rtsp.git
git@gitee.com:git-lz/FFmpeg-QT-rtsp.git
git-lz
FFmpeg-QT-rtsp
FFmpeg-QT实现摄像头rtsp实时显示
master

搜索帮助