QT实现在线流媒体播放平台

文章目录

  • QT实现在线流媒体播放平台
    • 简介
    • 开发视频
      • ffmpeg下载
      • SimpleVideoPlayer.h
      • SimpleVideoPlayer.cpp
    • 开发音频
    • 添加功能
      • 打开文件夹
      • 播放暂停
      • 播放上下一首
      • 选择倍速
    • 效果展示
    • 项目下载

QT实现在线流媒体播放平台

简介

Qt是一种流行的C++开发框架,它提供了用于构建图形用户界面(GUI)和跨平台应用程序的工具和库。Qt具有广泛的应用范围,可以用于开发桌面应用程序、移动应用程序和嵌入式系统等。Qt具有丰富的多媒体功能,包括音频和视频处理能力。

在使用Qt进行在线流媒体开发时,我们可以结合FFmpeg和QMediaPlayer来实现强大的音视频处理和播放功能。首先,可以使用FFmpeg解码音视频文件或流,提取音频和视频数据。然后,可以使用QMediaPlayer加载音频和视频数据,并通过其播放控制接口实现音视频的同步播放。此外,可以使用Qt的图形界面开发能力,创建用户友好的界面,显示视频内容,并提供交互控制。

开发视频

FFmpeg是一个开源的多媒体框架,它提供了一套用于处理音视频的工具和库。FFmpeg支持广泛的音视频格式和编解码器,能够对音视频进行解码、编码、转换和处理等操作。在在线流媒体应用中,FFmpeg通常用于处理音视频文件或流,提取其中的音频和视频数据,进行解码和编码,以及应用特效和滤镜等。

ffmpeg下载

如果你的qt版本是32位,下载的FFmpeg是64位,则可能识别不了函数
在这里我提供了64位和32位的FFmpeg下载链接

32位链接: https://pan.baidu.com/s/1wBAv6yYYa_9n64wzmHdO2w
提取码:0703

64位链接: https://pan.baidu.com/s/1aEHWpbTQkhVA30KtfviYjA
提取码:0703

SimpleVideoPlayer.h

#ifndef SIMPLEVIDEOPLAYER_H
#define SIMPLEVIDEOPLAYER_H#include <QThread>
#include <QMainWindow>
#include <QImage>extern "C"
{#include "libavcodec/avcodec.h"#include "libavformat/avformat.h"#include "libavutil/pixfmt.h"#include "libswscale/swscale.h"#include <libavutil/imgutils.h>
}class SimpleVideoPlayer : public QThread
{Q_OBJECTpublic:explicit SimpleVideoPlayer();~SimpleVideoPlayer();void setVideo(const QString &videoPath){this->_videoPath = videoPath;}inline void play();enum class PlayerState {Playing,Paused,Stopped};void togglePlayPause();void changeState();void setPlaybackSpeed(QString speed);
signals:void sigCreateVideoFrame(QImage image);protected:void run();private:QString _videoPath;PlayerState _state = PlayerState::Playing;QString speedVideo = "1x";
};#endif // SIMPLEVIDEOPLAYER_H

SimpleVideoPlayer.cpp

#include "SimpleVideoPlayer.h"
#include <iostream>
#include <QDebug>SimpleVideoPlayer::SimpleVideoPlayer()
{}SimpleVideoPlayer::~SimpleVideoPlayer()
{}void SimpleVideoPlayer::play()
{start();
}void SimpleVideoPlayer::togglePlayPause()
{if (_state == PlayerState::Playing) {_state = PlayerState::Paused;} else {_state = PlayerState::Playing;}
}void SimpleVideoPlayer::changeState()
{if(_state == PlayerState::Playing || _state == PlayerState::Paused){_state = PlayerState::Stopped;}
}void SimpleVideoPlayer::setPlaybackSpeed(QString speed)
{speedVideo = speed;
}void SimpleVideoPlayer::run()
{_state = PlayerState::Playing;if (_videoPath.isNull()){return;}char *file1 = _videoPath.toUtf8().data();//编解码器的注册,最新版本不需要调用//av_register_all();//描述多媒体文件的构成及其基本信息AVFormatContext *pAVFormatCtx = avformat_alloc_context();if (avformat_open_input(&pAVFormatCtx, file1, NULL, NULL) != 0){std::cout<<"open file fail"<<std::endl;avformat_free_context(pAVFormatCtx);return;}//读取一部分视音频数据并且获得一些相关的信息if (avformat_find_stream_info(pAVFormatCtx, NULL) < 0){std::cout<<"avformat find stream fail"<<std::endl;avformat_close_input(&pAVFormatCtx);return;}int iVideoIndex = -1;for (uint32_t i = 0; i < pAVFormatCtx->nb_streams; ++i){//视频流if (pAVFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO){iVideoIndex = i;break;}}if (iVideoIndex == -1){std::cout<<"video stream not find"<<std::endl;avformat_close_input(&pAVFormatCtx);return;}//获取视频流的编解码器上下文的数据结构AVCodecContext *pAVCodecCtx = avcodec_alloc_context3(NULL);if (!pAVCodecCtx) {fprintf(stderr, "Could not allocate codec context\n");exit(1);}if (avcodec_parameters_to_context(pAVCodecCtx, pAVFormatCtx->streams[iVideoIndex]->codecpar) < 0) {fprintf(stderr, "Could not copy codec parameters\n");exit(1);}//编解码器信息的结构体const AVCodec *pAVCodec = avcodec_find_decoder(pAVCodecCtx->codec_id);if (pAVCodec == NULL){std::cout<<"not find decoder"<<std::endl;return;}//初始化一个视音频编解码器if (avcodec_open2(pAVCodecCtx, pAVCodec, NULL) < 0){std::cout<<"avcodec_open2 fail"<<std::endl;return;}//AVFrame 存放从AVPacket中解码出来的原始数据AVFrame *pAVFrame = av_frame_alloc();AVFrame *pAVFrameRGB = av_frame_alloc();//用于视频图像的转换,将源数据转换为RGB32的目标数据SwsContext *pSwsCtx = sws_getContext(pAVCodecCtx->width, pAVCodecCtx->height, pAVCodecCtx->pix_fmt,pAVCodecCtx->width, pAVCodecCtx->height, AV_PIX_FMT_RGB32,SWS_BICUBIC, NULL, NULL, NULL);int iNumBytes = av_image_get_buffer_size(AV_PIX_FMT_RGB32, pAVCodecCtx->width, pAVCodecCtx->height,1);uint8_t *pRgbBuffer = (uint8_t *)(av_malloc(iNumBytes * sizeof(uint8_t)));//为已经分配的空间的结构体AVPicture挂上一段用于保存数据的空间av_image_fill_arrays(pAVFrameRGB->data, pAVFrameRGB->linesize, pRgbBuffer, AV_PIX_FMT_RGB32, pAVCodecCtx->width, pAVCodecCtx->height,1);//AVpacket 用来存放解码之前的数据AVPacket packet;av_new_packet(&packet, pAVCodecCtx->width * pAVCodecCtx->height);//读取码流中视频帧while (av_read_frame(pAVFormatCtx, &packet) >= 0){if (_state == PlayerState::Stopped) {qDebug()<<"当前音乐已终止";break;}if (_state == PlayerState::Paused) {QThread::msleep(600); // Sleep for 600ms 线程休息continue;}if (packet.stream_index != iVideoIndex){av_packet_unref(&packet);continue;}// 发送数据包到解码器if (avcodec_send_packet(pAVCodecCtx, &packet) < 0){std::cout << "Error sending packet for decoding." << std::endl;av_packet_unref(&packet);continue;}// 从解码器接收解码后的帧while (avcodec_receive_frame(pAVCodecCtx, pAVFrame) == 0){// 转换像素格式sws_scale(pSwsCtx, (uint8_t const * const *)pAVFrame->data, pAVFrame->linesize, 0, pAVCodecCtx->height, pAVFrameRGB->data, pAVFrameRGB->linesize);// 构造QImageQImage img(pRgbBuffer, pAVCodecCtx->width, pAVCodecCtx->height, QImage::Format_RGB32);// 绘制QImageemit sigCreateVideoFrame(img);}av_packet_unref(&packet);double fps = av_q2d(pAVFormatCtx->streams[iVideoIndex]->r_frame_rate);int delay = 900.0 / fps;if(speedVideo == "2x"){msleep(delay / 2);}else if(speedVideo == "0.5x"){msleep(delay * 2);}else{msleep(delay);}//msleep(15);}//资源回收/*av_free(pAVFrame);av_free(pAVFrameRGB);sws_freeContext(pSwsCtx);avcodec_close(pAVCodecCtx);avformat_close_input(&pAVFormatCtx);*/av_frame_free(&pAVFrame);av_frame_free(&pAVFrameRGB);sws_freeContext(pSwsCtx);avcodec_free_context(&pAVCodecCtx);avformat_close_input(&pAVFormatCtx);}

开发音频

QMediaPlayer是Qt自带的多媒体播放器类,它提供了简单易用的接口,用于播放音频和视频文件。QMediaPlayer支持多种音视频格式,并且可以通过网络流式传输音视频内容。它具有播放、暂停、停止、跳转和调整音量等常见的播放控制功能。此外,QMediaPlayer还提供了信号和槽机制,可用于捕获播放状态的变化和处理用户交互事件。

MainWindow::MainWindow(QWidget *parent) :QMainWindow(parent),ui(new Ui::MainWindow)
{ui->setupUi(this);this->setWindowTitle("在线播放平台");//comboBox 数据居中ui->comboBox->setStyleSheet("QComboBox QAbstractItemView { text-align: center; }");/*QMediaPlayer * m_player;m_player = new QMediaPlayer(this);QString strPlayer = "D:/QT.study/onlinePlay/qiFengLe";m_player->setMedia(QUrl::fromLocalFile(strPlayer));m_player->setVolume(50);m_player->play();*///QPushButton *openFileButton = new QPushButton("打开文件", this);//setCentralWidget(openFileButton);connect(ui->openFileButton, &QPushButton::clicked, this, &MainWindow::openFileDialog);_simpleVp = new SimpleVideoPlayer();// 创建媒体播放器player = new QMediaPlayer;//_simpleAp = new audioPlayer();connect(_simpleVp,SIGNAL(sigCreateVideoFrame(QImage)),this,SLOT(sigGetVideoFrame(QImage)));connect(ui->Slider,&QSlider::valueChanged,this,&MainWindow::changeAudio);connect(ui->startBtn,&QPushButton::clicked,this,&MainWindow::startPlay);connect(ui->pauseButton , &QPushButton::clicked, this->_simpleVp, &SimpleVideoPlayer::togglePlayPause);connect(ui->boxBS, &QComboBox::currentTextChanged, this, &MainWindow::onSpeedChanged);//下一首歌曲connect(ui->nextButton,&QPushButton::clicked,this->_simpleVp,&SimpleVideoPlayer::changeState);connect(ui->nextButton,&QPushButton::clicked,this,&MainWindow::nextVideo);//上一首歌曲connect(ui->previousBtn,&QPushButton::clicked,this->_simpleVp,&SimpleVideoPlayer::changeState);connect(ui->previousBtn,&QPushButton::clicked,this,&MainWindow::previousVideo);//暂停播放connect(ui->pauseButton,&QPushButton::clicked,this,&MainWindow::pauseAudio);//增加MV曲目ui->comboBox->addItem("起风了----------买辣椒也用券");ui->comboBox->addItem("悬溺------------葛东琪");ui->comboBox->addItem("平凡之路--------朴树");ui->comboBox->addItem("把回忆拼好给你---------王贰浪");ui->comboBox->addItem("带我去找夜生活---------告五人");//增加倍速ui->boxBS->addItem("1x");ui->boxBS->addItem("0.5x");ui->boxBS->addItem("2x");connect(this, &MainWindow::speedChanged, _simpleVp, &SimpleVideoPlayer::setPlaybackSpeed);//视频文件路径videoStr["起风了----------买辣椒也用券"] = "D:/QT.music/video/qifengle.mkv";videoStr["平凡之路--------朴树"] = "D:/QT.music/video/pingfanzhilu.mkv";videoStr["带我去找夜生活---------告五人"] = "D:/QT.music/video/yeshenghuo.mkv";videoStr["把回忆拼好给你---------王贰浪"] = "D:/QT.music/video/huiyi.mkv";videoStr["悬溺------------葛东琪"] = "D:/QT.music/video/xuanni.mkv";//音乐文件路径audioStr["起风了----------买辣椒也用券"] = "D:/QT.music/audio/qifengle1.mp3";audioStr["平凡之路--------朴树"] = "D:/QT.music/audio/pingfanzhilu.mp3";audioStr["带我去找夜生活---------告五人"] = "D:/QT.music/audio/yeshenghuo.mp3";audioStr["把回忆拼好给你---------王贰浪"] = "D:/QT.music/audio/huiyi.mp3";audioStr["悬溺------------葛东琪"] = "D:/QT.music/audio/xuanni.mp3";QIcon icon;icon.addFile(tr(":/qrs/4.png"));ui->pauseButton->setIconSize(QSize(120,40));ui->pauseButton->setIcon(icon);
}MainWindow::~MainWindow()
{delete ui;delete _simpleVp;delete player;
}void MainWindow::startPlay()
{//获得当前选择歌曲QString Str = ui->comboBox->currentText();qDebug()<<Str;// 加载音乐文件QString currentAudio = audioStr[Str];// player->setMedia(QUrl::fromLocalFile(currentAudio));//0~100音量范围,默认是100ui->Slider->setValue(50);player->setVolume(50);// 加载视频文件QString currentVideo = videoStr[Str];//_simpleVp->setVideo(currentVideo);/*_simpleAp->setAudio("D:/QT.study/onlinePlay/qifengle1.mp3");开始播放,QThread类的成员函数_simpleAp->start();*///开始播放player->play();_simpleVp->start();}

因为需要里面需要打开的文件位置,所以打开时需要更改位置
在这里插入图片描述

添加功能

我们目前只是完成了打开视频和音频的功能,还需要完善一下功能:

  • 打开文件夹
  • 播放暂停
  • 播放下一首歌曲
  • 开启倍速模式
  • 开启调节音量模式

打开文件夹

void MainWindow::openFileDialog()
{//QString filePath = QFileDialog::getOpenFileName(this, "Open Song", "", "Audio Files (*.mp3 *.wav);;All Files (*)");QString filePath = QFileDialog::getOpenFileName(this, "Open Video", "", "Video Files (*.mp4 *.avi *.mkv *.mov);;All Files (*)");ui->openFilePath->setText(filePath);if (!filePath.isEmpty()){// 这里处理用户选择的歌曲,例如将其传递给播放器等。qDebug() << "Selected song:" << filePath;_simpleVp->setVideo(filePath);QString str;for(auto it = videoStr.begin();it != videoStr.end();it++){if(it->second == filePath){str = it->first;break;}}player->setMedia(QUrl::fromLocalFile(audioStr[str]));}
}

播放暂停

void MainWindow::pauseAudio()
{QIcon icon;if (player->state() == QMediaPlayer::PlayingState) {icon.addFile(tr(":/qrs/3.png"));player->pause();//ui->pauseButton->setText("Play");ui->pauseButton->setIconSize(QSize(120,40));ui->pauseButton->setStyleSheet("background-color: transparent;");ui->pauseButton->setFlat(true);ui->pauseButton->setIcon(icon);} else {icon.addFile(tr(":/qrs/4.png"));player->play();//ui->pauseButton->setText("Pause");ui->pauseButton->setIconSize(QSize(120,40));ui->pauseButton->setStyleSheet("background-color: transparent;");ui->pauseButton->setFlat(true);ui->pauseButton->setIcon(icon);}
}

播放上下一首

void MainWindow::nextVideo() //播放下一首歌曲
{int idx = 0;QString fileStr = ui->openFilePath->text();for(auto it = videoStr.begin();it != videoStr.end();it++){if(it->second == fileStr){break;}idx++;}idx = (idx + 1) % 5;int idx1 = idx;QString videoFile;                 //= (videoStr.begin() + idx)->second;QString audioFile;                 //= (audioStr.begin() + idx)->second;for(auto it = videoStr.begin();it != videoStr.end();it++){if(idx == 0){videoFile = it->second;break;}idx--;}for(auto it = audioStr.begin();it != audioStr.end();it++){if(idx1 == 0){audioFile = it->second;break;}idx1--;}ui->openFilePath->setText(videoFile);_simpleVp->setVideo(videoFile);player->setMedia(QUrl::fromLocalFile(audioFile));_simpleVp->start();player->play();
}//实现上一首歌曲功能
void MainWindow::previousVideo()
{int idx = 0;QString fileStr = ui->openFilePath->text();for(auto it = videoStr.begin();it != videoStr.end();it++){if(it->second == fileStr){break;}idx++;}idx = (idx - 1 + 5) % 5;int idx1 = idx;QString videoFile;                 //= (videoStr.begin() + idx)->second;QString audioFile;                 //= (audioStr.begin() + idx)->second;for(auto it = videoStr.begin();it != videoStr.end();it++){if(idx == 0){videoFile = it->second;break;}idx--;}for(auto it = audioStr.begin();it != audioStr.end();it++){if(idx1 == 0){audioFile = it->second;break;}idx1--;}ui->openFilePath->setText(videoFile);_simpleVp->setVideo(videoFile);player->setMedia(QUrl::fromLocalFile(audioFile));_simpleVp->start();player->play();
}

选择倍速

void MainWindow::onSpeedChanged() //选择不同倍速时,会给视频和音频发射信号
{QString SpeedStr = ui->boxBS->currentText();if(SpeedStr == "2x"){player->setPlaybackRate(2.0);}else if(SpeedStr == "0.5x"){player->setPlaybackRate(0.5);}else {player->setPlaybackRate(1.0);}emit speedChanged(SpeedStr);
}

效果展示

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

项目下载

GitHub下载:
https://github.com/Shy2593666979/onlinePlay

百度网盘下载:
链接:https://pan.baidu.com/s/11NaEgQIrj-Z1FLzbyGcL-w
提取码:0703

歌曲文件下载:
链接:https://pan.baidu.com/s/1qs3CmqWdPT6XrFlY039ULQ
提取码:0703


更多资料尽在 GitHub 欢迎各位读者去Star

⭐学术交流群Q 754410389 持续更新中~~~

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/125683.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AT32固件库外设使用,ArduinoAPI接口移植,模块化

目录 一、ArduinoAPI移植一、通用定时器使用1.计时1.2.ETR外部时钟计数4.ArduinoAPI - timer 三、ADC1.ADC初始化&#xff08;非DMA&#xff09;2.ADC_DMA 规则通道扫描 六、USB HID IAP1.准备好Bootloader和app2.配置好时钟&#xff0c;一定要打开USB3.将生成的时钟配置复制到…

Mybatis执行流程简析

一、前言 日常工作中&#xff0c;我们用到mybatis的时候&#xff0c;都是写一个Mapper接口xml文件/注解形式&#xff0c;然后就可以在业务层去调用我们在Mapper接口中定义的CRUD方法&#xff0c;很方便&#xff0c;但一直都没有去研究过执行逻辑&#xff0c;下面附一篇我自己研…

使用simple_3dviz进行三维模型投影

【版权声明】 本文为博主原创文章&#xff0c;未经博主允许严禁转载&#xff0c;我们会定期进行侵权检索。 更多算法总结请关注我的博客&#xff1a;https://blog.csdn.net/suiyingy&#xff0c;或”乐乐感知学堂“公众号。 本文章来自于专栏《Python三维模型处理基础》的系列文…

飞鹅打印机使用注意事项:打印小票(云播报打印机)FP-V58-W(c)

文章目录 引言I 基础操作1.1 设置Wi-Fi1.2 在机器内预先内置logo 引言 应用场景&#xff1a; 云播报打印机&#xff1a;支持第三方软件开发商&#xff0c;接单后实现智能语音播报&#xff0c;可播报订单信息、打印订单小票。 http://www.feieyun.com/open/index.html 飞鹅对…

Android OpenGL ES 2.0入门实践

本文既然是入门实践&#xff0c;就先从简单的2D图形开始&#xff0c;首先&#xff0c;参考两篇官方文档搭建个框架&#xff0c;便于写OpenGL ES相关的代码&#xff1a;构建 OpenGL ES 环境、OpenGL ES 2.0 及更高版本中的投影和相机视图。 先上代码&#xff0c;代码效果如下图…

WPF自定义控件库之Window窗口

在WPF开发中&#xff0c;默认控件的样式常常无法满足实际的应用需求&#xff0c;我们通常都会采用引入第三方控件库的方式来美化UI&#xff0c;使得应用软件的设计风格更加统一。常用的WPF的UI控件库主要有以下几种&#xff0c;如&#xff1a;Modern UI for WPF&#xff0c;Mat…

Elasticsearch:使用 Elasticsearch 进行词汇和语义搜索

作者&#xff1a;PRISCILLA PARODI 在这篇博文中&#xff0c;你将探索使用 Elasticsearch 检索信息的各种方法&#xff0c;特别关注文本&#xff1a;词汇 (lexical) 和语义搜索 (semantic search)。 使用 Elasticsearch 进行词汇和语义搜索 搜索是根据你的搜索查询或组合查询…

0基础学习PyFlink——使用DataStream进行字数统计

大纲 sourceMapSplittingMapping ReduceKeyingReducing 完整代码结构参考资料 在《0基础学习PyFlink——模拟Hadoop流程》一文中&#xff0c;我们看到Hadoop在处理大数据时的MapReduce过程。 本节介绍的DataStream API&#xff0c;则使用了类似的结构。 source 为了方便&…

C# Onnx 用于边缘检测的轻量级密集卷积神经网络LDC

效果 项目 代码 using Microsoft.ML.OnnxRuntime; using Microsoft.ML.OnnxRuntime.Tensors; using OpenCvSharp; using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;namespace Onnx…

【HTML】HTML基础知识扫盲

1、什么是HTML&#xff1f; HTML是超文本标记语言&#xff08;Hyper Text Markup Language&#xff09;是用来描述网页的一种语言 注意&#xff1a; HTML不是编程语言&#xff0c;而是标记语言 HTML文件也可以直接称为网页&#xff0c;浏览器的作用就是读取HTML文件&#xff…

【网络协议】聊聊http协议

当我们输入www.baidu.com的时候&#xff0c;其实是先将baidu.com的域名进行DNS解析&#xff0c;转换成对应的ip地址&#xff0c;然后开始进行基于TCP构建三次握手的连接&#xff0c;目前使用的是1.1 默认是开启了keep-Alive。可以在多次请求中进行连接复用。 HTTP 请求的构建…

Bayes决策:身高与体重特征进行性别分类

代码与文件请从这里下载&#xff1a;Auorui/Pattern-recognition-programming: 模式识别编程 (github.com) 简述 分别依照身高、体重数据作为特征&#xff0c;在正态分布假设下利用最大似然法估计分布密度参数&#xff0c;建立最小错误率Bayes分类器&#xff0c;写出得到的决…

控梦术(一)之什么是清明梦

控梦术 首先&#xff0c;问大家一个问题。在梦中&#xff0c;你知道自己是在做梦吗&#xff1f;科学数据表明&#xff0c;大约23%的人在过去一个月中&#xff0c;至少有一次在梦中意识到自己正在做梦。科学家把这叫做清醒梦或者叫做清明梦。科学家说&#xff0c;每个人都能学会…

springboot的缓存和redis缓存,入门级别教程

一、springboot&#xff08;如果没有配置&#xff09;默认使用的是jvm缓存 1、Spring框架支持向应用程序透明地添加缓存。抽象的核心是将缓存应用于方法&#xff0c;从而根据缓存中可用的信息减少执行次数。缓存逻辑是透明地应用的&#xff0c;对调用者没有任何干扰。只要使用…

云计算与ai人工智能对高防cdn的发展

高防CDN&#xff08;Content Delivery Network&#xff09;作为网络安全领域的一项关键技术&#xff0c;致力于保护在线内容免受各种网络攻击&#xff0c;包括分布式拒绝服务攻击&#xff08;DDoS&#xff09;等。然而&#xff0c;随着人工智能&#xff08;AI&#xff09;和大数…

C#__委托delegate

委托存储的是函数的引用&#xff08;把某个函数赋值给一个委托类型的变量&#xff0c;这样的话这个变量就可以当成这个函数来进行使用了&#xff09; 委托类型跟整型类型、浮点型类型一样&#xff0c;也是一种类型&#xff0c;是一种存储函数引用的类型 using System.Reflec…

Linux网络基础2 -- 应用层相关

一、协议 引例&#xff1a;编写一个网络版的计算器 1.1 约定方案&#xff1a;“序列化” 和 “反序列化” 方案一&#xff1a;客户端发送形如“11”的字符串&#xff0c;再去解析其中的数字和计算字符&#xff0c;并且设限&#xff08;如数字和运算符之间没有空格; 运算符只…

RIS辅助MIMO广播信道容量

RIS辅助MIMO广播信道容量 摘要RIS辅助的BC容量矩阵形式的泰勒展开学习舒尔补 RIS-Aided Multiple-Input Multiple-Output Broadcast Channel Capacity论文阅读记录 基于泰勒展开求解了上行容量和最差用户的可达速率&#xff0c;学习其中的展开方法。 摘要 Scalable algorithm…

什么是神经网络,它的原理是啥?(1)

参考&#xff1a;https://www.youtube.com/watch?vmlk0rddP3L4&listPLuhqtP7jdD8CftMk831qdE8BlIteSaNzD 视频1&#xff1a; 简单介绍神经网络的基本概念&#xff0c;以及一个训练好的神经网络是怎么使用的 分类算法中&#xff0c;神经网络在训练过程中会学习输入的 pat…