feat: 增加河南机型的推拉流地址生成

shiyi
cbwu 4 months ago
parent 0c47e5f50a
commit 41be8aaa20

File diff suppressed because it is too large Load Diff

@ -5,8 +5,8 @@
ModelCameraDlg::ModelCameraDlg(QWidget *parent)
: QDialog(parent), ui(new Ui::ModelCameraDlg) {
ui->setupUi(this);
ui->videoIPLineEdit->setText(QStringLiteral(
"rtsp://192.168.55.65:554/live/track0")); // rtsp://192.168.5.74:8554/LIVE
ui->videoIPLineEdit->setText(
QStringLiteral("rtsp://192.168.5.74:8554/LIVE"));
ui->pushStreamIPEdit->setText(
QStringLiteral("rtmp://182.92.130.23/app/stream99"));
ui->cameraVideoWidget->setVedioSaveFileDirPath("./3DCameraVideo");

@ -368,11 +368,23 @@ void MainWindow::changeBtnColor(int num) {
* @brief UAVIDAPPName
*/
void MainWindow::initUAVIDMap() {
// 内蒙
g_mapAppName[5] = "nmyj";
g_mapAppName[7] = "nmyj";
// 江苏
for (int i = 8; i < 13; ++i) {
g_mapAppName[i] = "jsyj";
}
// 河南
g_mapAppName[13] = "hnyj";
for (int i = 15; i < 23; ++i) {
g_mapAppName[i] = "hnyj";
}
g_mapAppName[25] = "hnyj";
g_mapAppName[26] = "hnyj";
// 测试
g_mapAppName[99] = "testyj";
}

Loading…
Cancel
Save