2023-11-12 16:13:24 +00:00
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
|
#include <QPaintDevice>
|
|
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1600
|
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
|
|
|
QssMainWindow(parent,0,1.5),
|
|
|
|
|
ui(new Ui::MainWindow),
|
|
|
|
|
m_bCameraOpen(false),
|
|
|
|
|
mCamera(nullptr),
|
|
|
|
|
m_bRtmpPushing(false),
|
|
|
|
|
mPlayerWidget(nullptr),
|
|
|
|
|
mVideoCoder(nullptr),
|
|
|
|
|
mPusher(nullptr),
|
|
|
|
|
mAudioCapture(nullptr),
|
|
|
|
|
mTimer(nullptr)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
this->move(50,50);
|
|
|
|
|
int i(0);
|
|
|
|
|
QDesktopWidget* desktopWidget = QApplication::desktop();
|
|
|
|
|
QRect clientRect = desktopWidget->availableGeometry();
|
|
|
|
|
QRect applicationRect = desktopWidget->screenGeometry();
|
|
|
|
|
|
|
|
|
|
qDebug()<<this->pos()<<clientRect<<applicationRect<<this->m_frame->geometry()<<this->centralWidget()->geometry();
|
|
|
|
|
|
|
|
|
|
std::vector<std::wstring> cameras = Camera::EnumAllCamera();
|
|
|
|
|
for(std::wstring x : cameras){
|
|
|
|
|
ui->comboBox->addItem(QString::fromWCharArray(x.c_str(),x.size()),
|
|
|
|
|
QString::fromWCharArray(x.c_str(),x.size()));
|
|
|
|
|
}
|
|
|
|
|
mAudioCapture = new CaptureAudioFfmpeg(44100, 2);
|
|
|
|
|
mMic = mAudioCapture->EnumSpeakers();
|
|
|
|
|
qDebug()<<"capture "<<mMic.size()<<"mic";
|
|
|
|
|
for(vector<CaptureAudioFfmpeg::MICInfo>::iterator itr = mMic.begin();itr != mMic.end();itr++){
|
|
|
|
|
qDebug()<<QString::fromStdWString(itr->name)<<itr->index;
|
2023-12-10 17:02:28 +00:00
|
|
|
|
ui->comboBox_2->addItem(QString::fromWCharArray(itr->name.c_str(),itr->name.size()),
|
|
|
|
|
QString::fromWCharArray(itr->name.c_str(),itr->name.size()));
|
2023-11-12 16:13:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mTimer = new QTimer(this);
|
|
|
|
|
connect(mTimer, SIGNAL(timeout()), this, SLOT(DetectDpi()));
|
|
|
|
|
mTimer->start(100);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow(){
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_pushButton_clicked(){
|
|
|
|
|
if(nullptr == mPlayerWidget){
|
|
|
|
|
mPlayerWidget = new CPlayWidget(nullptr);
|
|
|
|
|
}
|
|
|
|
|
if(!m_bCameraOpen){
|
|
|
|
|
mPlayerWidget->SetDataType(CPlayWidget::IMG_TYPE::TYPE_RGB32);
|
|
|
|
|
|
|
|
|
|
qDebug()<<ui->comboBox->currentText().size()<<ui->comboBox->currentText();
|
|
|
|
|
wchar_t *opencamera = new wchar_t[ui->comboBox->currentText().size()];
|
|
|
|
|
ui->comboBox->currentText().toWCharArray(opencamera);
|
|
|
|
|
wstring ss = wstring(opencamera,ui->comboBox->currentText().size());
|
|
|
|
|
if(nullptr == mCamera){
|
|
|
|
|
this->mCamera = new Camera(ss);
|
|
|
|
|
}
|
2023-12-10 17:02:28 +00:00
|
|
|
|
GUIDToAvFormat(mCamera->MediaType());
|
|
|
|
|
mPlayerWidget->SetImgSize(mCamera->GetWidth(),mCamera->GetHeight());
|
|
|
|
|
|
2023-11-12 16:13:24 +00:00
|
|
|
|
this->mCamera->SetObserver(mPlayerWidget);
|
|
|
|
|
qDebug()<<ui->comboBox->currentText();
|
|
|
|
|
ui->pushButton->setText("关闭摄像头");
|
|
|
|
|
m_bCameraOpen = true;
|
|
|
|
|
mPlayerWidget->show();
|
|
|
|
|
ui->verticalLayout->addWidget(mPlayerWidget);
|
|
|
|
|
qDebug()<<ui->verticalLayout->layout();
|
|
|
|
|
ui->verticalLayout->setStretch(0,1);
|
|
|
|
|
ui->verticalLayout->setStretch(1,0);
|
|
|
|
|
ui->verticalLayout->setStretch(2,9);
|
|
|
|
|
|
|
|
|
|
} else{
|
|
|
|
|
m_bCameraOpen = false;
|
|
|
|
|
ui->pushButton->setText("打开摄像头");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_pushButton_2_clicked()
|
|
|
|
|
{
|
|
|
|
|
if(!m_bRtmpPushing){
|
|
|
|
|
if(!m_bCameraOpen){
|
|
|
|
|
ToastWidget::showTip("请打开摄像头",this);
|
|
|
|
|
return;
|
|
|
|
|
}else{
|
|
|
|
|
//
|
|
|
|
|
if(nullptr == mVideoCoder){
|
|
|
|
|
mVideoCoder = new VideoCoder(mCamera->GetWidth(),
|
|
|
|
|
mCamera->GetHeight(),
|
|
|
|
|
GUIDToAvFormat(mCamera->MediaType()));
|
|
|
|
|
}
|
|
|
|
|
mCamera->SetObserver(mVideoCoder);
|
2023-11-29 16:22:43 +00:00
|
|
|
|
if(mPusher == nullptr)
|
|
|
|
|
mPusher = new H264RtmpPuser();
|
2023-11-12 16:13:24 +00:00
|
|
|
|
// todo 根据返回结果判断是否推流
|
|
|
|
|
qDebug()<<"连接RTMP服务器"<<ui->lineEdit->text();
|
|
|
|
|
if (!mPusher->IfConnect()) {
|
|
|
|
|
const char* address = ui->lineEdit->text().toLocal8Bit().data();
|
|
|
|
|
qDebug()<<address;
|
2023-12-10 17:02:28 +00:00
|
|
|
|
if (0 == mPusher->RTMP264_Connect("rtmp://127.0.0.1:1935/live/1")) {
|
2023-11-12 16:13:24 +00:00
|
|
|
|
ToastWidget::showTip("已经连接上RTMP服务器",this->parentWidget());
|
|
|
|
|
mVideoCoder->SetOberver(mPusher);
|
|
|
|
|
mPusher->StartPush();
|
|
|
|
|
ui->pushButton_2->setText("关闭推流");
|
|
|
|
|
/*
|
|
|
|
|
if (nullptr != this->mAudioCoder) {
|
|
|
|
|
this->mAudioCoder->SetObserver(mPusher);
|
|
|
|
|
//音频流先不推流
|
|
|
|
|
}*/
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
ToastWidget::showTip("连接RTMP服务器失败,请检查服务器地址",this->parentWidget());
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
ToastWidget::showTip("正在推流,请先关闭",this->parentWidget());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_pushButton_3_clicked()
|
|
|
|
|
{
|
|
|
|
|
qDebug()<<ui->comboBox_2->currentText();
|
2023-12-10 17:02:28 +00:00
|
|
|
|
wchar_t ptr[200];
|
|
|
|
|
|
|
|
|
|
ui->comboBox_2->currentText().toWCharArray(ptr);
|
|
|
|
|
|
|
|
|
|
mAudioCapture->InitCapture(ptr,4800,2);
|
|
|
|
|
|
2023-12-12 15:01:12 +00:00
|
|
|
|
mAudioCapture->StartCapture();
|
|
|
|
|
|
2023-11-12 16:13:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::DetectDpi()
|
|
|
|
|
{
|
|
|
|
|
// qDebug()<<"detect dpi";
|
|
|
|
|
int horizontalDPI = logicalDpiX();
|
|
|
|
|
int verticalDPI = logicalDpiY();
|
|
|
|
|
|
|
|
|
|
// qDebug()<<horizontalDPI<<verticalDPI<<physicalDpiX()<<physicalDpiY();
|
|
|
|
|
|
|
|
|
|
}
|