摘要: 前面一直卡在参数设置上面,通过多种办法没有搞定,今天通过Cusor修正,能正常推流,特记录下来,以备后续使用. /** * 图片推流程序 * 该程序将一张图片按指定帧率推送到RTMP服务器,可用于测试或模拟视频流 */ #include <iostream> #include <string> #i 阅读全文
posted @ 2025-04-25 10:26 流逝的轻风 阅读(34) 评论(0) 推荐(0)
摘要: 题目1: Hadoop的安装,图文并茂的安装过程 实验内容及结果 第一步,下载安装包 下载地址: https://dlcdn.apache.org/hadoop/common/,选择hadoop-3.3.6版本。 图1-1 选择下载版本 图1-2 选择hadoop-3.3.6.tar.gz 图1-3 阅读全文
posted @ 2025-04-02 09:25 流逝的轻风 阅读(101) 评论(0) 推荐(0)
摘要: #include <iostream> #include <thread> #include <unistd.h> #include <mutex> #include <condition_variable> /** * 览辉视频封装接口 */ class LHAVObject { private: 阅读全文
posted @ 2025-03-20 15:24 流逝的轻风 阅读(6) 评论(0) 推荐(0)
摘要: #include <chrono> #include <thread> #include <iostream> extern "C" { #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> #include <libav 阅读全文
posted @ 2025-03-18 09:33 流逝的轻风 阅读(35) 评论(0) 推荐(0)
摘要: 交叉编译ffmpeg,并加上对rtmp的支持,即要先编译librtmp. 编译过程出了个librtmp not found问题,google了一圈,发现有很多类似的问题,但都和我的不完全一样。我的根本问题是mingw下的pkg-config没有正确安装。librtmp经过make和make inst 阅读全文
posted @ 2025-02-22 15:21 流逝的轻风 阅读(56) 评论(0) 推荐(0)
摘要: # Native compilation on ARM/ARM64 host # Build MPP mkdir -p ~/dev && cd ~/dev git clone -b jellyfin-mpp --depth=1 https://github.com/nyanmisaka/mpp.gi 阅读全文
posted @ 2024-11-20 16:06 流逝的轻风 阅读(1042) 评论(0) 推荐(1)
摘要: In file included from C:\visp-ws\3rdparty\opencv-4.7.0\sources\modules\videoio\src\cap_obsensor\obsensor_stream_channel_msmf.hpp:41, from C:\visp-ws\3 阅读全文
posted @ 2024-10-10 14:02 流逝的轻风 阅读(77) 评论(0) 推荐(0)
摘要: 1.安装yolov8 # Install the required package for YOLOv8 pip install ultralytics 2.模型转换 from ultralytics import YOLO # Load the YOLOv8 model model = YOLO( 阅读全文
posted @ 2024-09-19 16:56 流逝的轻风 阅读(1771) 评论(0) 推荐(0)
摘要: cmake -DCMAKE_TOOLCHAIN_FILE=../platforms/linux/mips32r5el-gnu.toolchain.cmake \ -D CMAKE_BUILD_TYPE=RELEASE \ -D CMAKE_INSTALL_PREFIX=/home/incar/pro 阅读全文
posted @ 2024-03-21 17:40 流逝的轻风 阅读(92) 评论(0) 推荐(0)
摘要: sudo docker run -itd --name ubuntu-mips -v /home/incar/projects:/home/incar/projects -p 9022:22 82af5fb43471 /bin/bash docker exec -it ubuntu-test /bi 阅读全文
posted @ 2024-02-06 10:21 流逝的轻风 阅读(69) 评论(0) 推荐(0)