最简单的基于 FFmpeg 的 AVDevice 例子(屏幕录制)

最简单的基于 FFmpeg 的 AVDevice 例子(屏幕录制)

  • 最简单的基于 FFmpeg 的 AVDevice 例子(屏幕录制)
    • 简介
    • libavdevice 使用
    • 抓屏方法
      • gdigrab
      • dshow
    • 源程序
    • 结果
    • 工程文件下载
    • 参考链接

最简单的基于 FFmpeg 的 AVDevice 例子(屏幕录制)

参考雷霄骅博士的文章,链接:最简单的基于FFmpeg的AVDevice例子(屏幕录制)

简介

FFmpeg 中有一个和多媒体设备交互的类库:libavdevice。使用这个库可以读取电脑(或者其他设备上)的多媒体设备的数据,或者输出数据到指定的多媒体设备上。

libavdevice 支持以下设备作为输入端:

alsa
avfoundation
bktr
dshow
dv1394
fbdev
gdigrab
iec61883
jack
lavfi
libcdio
libdc1394
openal
oss
pulse
qtkit
sndio
video4linux2, v4l2
vfwcap
x11grab
decklink

libavdevice 支持以下设备作为输出端:

alsa
caca
decklink
fbdev
opengl
oss
pulse
sdl
sndio
xv

libavdevice 使用

本文记录一个基于 FFmpeg 的 libavdevice 类库录制屏幕的例子。本文程序读取计算机上的摄像头的数据并且解码显示出来。有关解码显示方面的代码本文不再详述,可以参考文章:
《 100行代码实现最简单的基于FFMPEG+SDL的视频播放器(SDL1.x)》。

本文主要记录使用 libavdevice 需要注意的步骤。

首先,使用 libavdevice 的时候需要包含其头文件:

#include "libavdevice/avdevice.h"

然后,在程序中需要注册 libavdevice:

avdevice_register_all();

接下来就可以使用 libavdevice 的功能了。

使用 libavdevice 读取数据和直接打开视频文件比较类似。因为系统的设备也被 FFmpeg 认为是一种输入的格式(即 AVInputFormat)。使用 FFmpeg 打开一个普通的视频文件使用如下函数:

AVFormatContext *pFormatCtx = avformat_alloc_context();
avformat_open_input(&pFormatCtx, "test.h265", NULL, NULL);

使用 libavdevice 的时候,唯一的不同在于需要首先查找用于输入的设备。在这里使用 av_find_input_format() 完成:

AVFormatContext *pFormatCtx = avformat_alloc_context();
AVInputFormat *ifmt=av_find_input_format("vfwcap");
avformat_open_input(&pFormatCtx, 0, ifmt, NULL);

上述代码首先指定了 vfw 设备作为输入设备,然后在 URL 中指定打开第 0 个设备(在我自己计算机上即是摄像头设备)。

在 Windows 平台上除了使用 vfw 设备作为输入设备之外,还可以使用 DirectShow 作为输入设备:

AVFormatContext *pFormatCtx = avformat_alloc_context();
AVInputFormat *ifmt=av_find_input_format("dshow");
avformat_open_input(&pFormatCtx,"video=Integrated Camera",ifmt,NULL) ;

抓屏方法

在 Windows 系统使用 libavdevice 抓取屏幕数据有两种方法:gdigrab 和 dshow。下文分别介绍。

gdigrab

gdigrab 是 FFmpeg 专门用于抓取 Windows 桌面的设备,非常适合用于屏幕录制。它通过不同的输入 URL 支持两种方式的抓取:

  1. “desktop”:抓取整张桌面。或者抓取桌面中的一个特定的区域。
  2. “title={窗口名称}”:抓取屏幕中特定的一个窗口(目前中文窗口还有乱码问题)。

gdigrab 另外还支持一些参数,用于设定抓屏的位置:

  • offset_x:抓屏起始点横坐标。
  • offset_y:抓屏起始点纵坐标。
  • video_size:抓屏的大小。
  • framerate:抓屏的帧率。

参考的代码如下:

//Use gdigrabAVDictionary* options = NULL;//Set some options//grabbing frame rate//av_dict_set(&options,"framerate","5",0);//The distance from the left edge of the screen or desktop//av_dict_set(&options,"offset_x","20",0);//The distance from the top edge of the screen or desktop//av_dict_set(&options,"offset_y","40",0);//Video frame size. The default is to capture the full screen//av_dict_set(&options,"video_size","640x480",0);AVInputFormat *ifmt=av_find_input_format("gdigrab");if(avformat_open_input(&pFormatCtx,"desktop",ifmt,&options)!=0){printf("Couldn't open input stream.(无法打开输入流)\n");return -1;}

dshow

使用 dshow 抓屏需要安装抓屏软件:screen-capture-recorder

软件地址:http://sourceforge.net/projects/screencapturer/

下载软件安装完成后,可以指定 dshow 的输入设备为“screen-capture-recorder”即可。有关 dshow 设备的使用方法在文章 最简单的基于FFmpeg的AVDevice例子(读取摄像头)中已经有详细叙述,这里不再重复。

在这里插入图片描述

参考的代码如下:

AVInputFormat *ifmt=av_find_input_format("dshow");if(avformat_open_input(&pFormatCtx,"video=screen-capture-recorder",ifmt,NULL)!=0){printf("Couldn't open input stream.(无法打开输入流)\n");return -1;}

使用 ffmpeg.exe 打开 vfw 设备和 Directshow 设备的方法可以参考文章:《FFmpeg获取DirectShow设备数据(摄像头,录屏)》。

在 Linux 平台上可以使用 x11grab 抓屏;在 MacOS 上,可以使用 avfoundation 抓屏,这里不再详述。

源程序

// Simplest FFmpeg Screen Recorder.cpp : 定义控制台应用程序的入口点。
///**
* 最简单的基于 FFmpeg 的 AVDevice 例子(屏幕录制)
* Simplest FFmpeg Screen Recorder
*
* 源程序:
* 雷霄骅 Lei Xiaohua
* leixiaohua1020@126.com
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
* 修改:
* 刘文晨 Liu Wenchen
* 812288728@qq.com
* 电子科技大学/电子信息
* University of Electronic Science and Technology of China / Electronic and Information Science
* https://blog.csdn.net/ProgramNovice
*
* 本程序实现了屏幕录制功能,可以录制并播放桌面数据。
* 是基于 FFmpeg 的 libavdevice 类库最简单的例子。
* 通过该例子,可以学习 FFmpeg 中 libavdevice 类库的使用方法。
*
* 本程序在 Windows 下可以使用 2 种方式录制屏幕:
*  1. gdigrab: Win32 下的基于 GDI 的屏幕录制设备。抓取桌面的时候,输入URL为“desktop”。
*  2. dshow: 使用 Directshow。注意需要安装额外的软件 screen-capture-recorder。
*
* 在 Linux 下可以使用 x11grab 录制屏幕。
* 在 MacOS 下可以使用 avfoundation 录制屏幕。
*
* This software capture screen of computer. It's the simplest example
* about usage of FFmpeg's libavdevice Library.
* It's suiltable for the beginner of FFmpeg.
* This software support 2 methods to capture screen in Microsoft Windows:
*  1.gdigrab: Win32 GDI-based screen capture device.
*             Input URL in avformat_open_input() is "desktop".
*  2.dshow: Use Directshow. Need to install screen-capture-recorder.
* It use x11grab to capture screen in Linux.
* It use avfoundation to capture screen in MacOS.
*/#include "stdafx.h"#include <stdio.h>
#include <stdlib.h>// 解决报错:'fopen': This function or variable may be unsafe.Consider using fopen_s instead.
#pragma warning(disable:4996)// 解决报错:无法解析的外部符号 __imp__fprintf,该符号在函数 _ShowError 中被引用
#pragma comment(lib, "legacy_stdio_definitions.lib")
extern "C"
{// 解决报错:无法解析的外部符号 __imp____iob_func,该符号在函数 _ShowError 中被引用FILE __iob_func[3] = { *stdin, *stdout, *stderr };
}#define __STDC_CONSTANT_MACROS#ifdef _WIN32
// Windows
extern "C"
{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
#include "libavdevice/avdevice.h"
#include "SDL/SDL.h"
};
#else
// Linux...
#ifdef __cplusplus
extern "C"
{
#endif
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
#include <libavdevice/avdevice.h>
#include <SDL/SDL.h>
#ifdef __cplusplus
};
#endif
#endif// Output YUV420P 
#define OUTPUT_YUV420P 0
// 1:Use Dshow; 0: Use GDIgrab
#define USE_DSHOW 1// Refresh Event
#define SFM_REFRESH_EVENT  (SDL_USEREVENT + 1)
#define SFM_BREAK_EVENT  (SDL_USEREVENT + 2)int thread_exit = 0;int sfp_refresh_thread(void *opaque)
{thread_exit = 0;while (!thread_exit){SDL_Event event;event.type = SFM_REFRESH_EVENT;SDL_PushEvent(&event);SDL_Delay(40);}thread_exit = 0;// BreakSDL_Event event;event.type = SFM_BREAK_EVENT;SDL_PushEvent(&event);return 0;
}// Show Dshow Device
void show_dshow_device()
{AVFormatContext *pFormatCtx = avformat_alloc_context();AVDictionary* options = NULL;av_dict_set(&options, "list_devices", "true", 0);AVInputFormat *iformat = av_find_input_format("dshow");printf("=============== Device Info ===============\n");avformat_open_input(&pFormatCtx, "video=dummy", iformat, &options);printf("===========================================\n");
}// Show Dshow Device Option
void show_dshow_device_option()
{AVFormatContext *pFormatCtx = avformat_alloc_context();AVDictionary* options = NULL;av_dict_set(&options, "list_options", "true", 0);AVInputFormat *iformat = av_find_input_format("dshow");printf("\n============ Device Option Info ============\n");avformat_open_input(&pFormatCtx, "video=Integrated Camera", iformat, &options);printf("============================================\n");
}// Show VFW Device
void show_vfw_device()
{AVFormatContext *pFormatCtx = avformat_alloc_context();AVInputFormat *iformat = av_find_input_format("vfwcap");printf("\n============ VFW Device Info ============\n");avformat_open_input(&pFormatCtx, "list", iformat, NULL);printf("=========================================\n");
}// Show AVFoundation Device
void show_avfoundation_device()
{AVFormatContext *pFormatCtx = avformat_alloc_context();AVDictionary* options = NULL;av_dict_set(&options, "list_devices", "true", 0);AVInputFormat *iformat = av_find_input_format("avfoundation");printf("\n======= AVFoundation Device Info =======\n");avformat_open_input(&pFormatCtx, "", iformat, &options);printf("========================================\n");
}int main(int argc, char* argv[])
{AVFormatContext	*pFormatCtx;int videoindex;int ret;AVCodecContext *pCodecCtx;AVCodec *pCodec;av_register_all();avformat_network_init();pFormatCtx = avformat_alloc_context();// Open File//char filepath[] = "src01_480x272_22.h265";//avformat_open_input(&pFormatCtx, filepath, NULL, NULL);// Register Deviceavdevice_register_all();// Windows
#ifdef _WIN32// Show Dshow Deviceshow_dshow_device();// Show Device Optionsshow_dshow_device_option();// Show VFW Optionsshow_vfw_device();#if USE_DSHOWAVInputFormat *ifmt = av_find_input_format("dshow");// Set own video device's name// Need to Install screen-capture-recorder// Website: http://sourceforge.net/projects/screencapturer/if (avformat_open_input(&pFormatCtx, "video=screen-capture-recorder", ifmt, NULL) != 0){printf("Couldn't open input stream.\n");return -1;}
#else// Use gdigrabAVDictionary* options = NULL;// Set some options// grabbing frame rate//av_dict_set(&options, "framerate", "5", 0);// The distance from the left edge of the screen or desktop//av_dict_set(&options, "offset_x", "20", 0);// The distance from the top edge of the screen or desktop//av_dict_set(&options, "offset_y", "40", 0);// Video frame size. The default is to capture the full screen//av_dict_set(&options, "video_size", "640x480", 0);AVInputFormat *ifmt = av_find_input_format("gdigrab");if (avformat_open_input(&pFormatCtx, "desktop", ifmt, &options) != 0){printf("Couldn't open input stream.\n");return -1;}
#endif
#elif defined linux// LinuxAVDictionary* options = NULL;// Set some options// grabbing frame rate//av_dict_set(&options, "framerate", "5", 0);// Make the grabbed area follow the mouse//av_dict_set(&options, "follow_mouse", "centered", 0);// Video frame size. The default is to capture the full screen//av_dict_set(&options, "video_size", "640x480", 0);AVInputFormat *ifmt = av_find_input_format("x11grab");// Grab at position 10, 20if (avformat_open_input(&pFormatCtx, ":0.0+10,20", ifmt, &options) != 0){printf("Couldn't open input stream.\n");return -1;}
#elseshow_avfoundation_device();// MacOSAVInputFormat *ifmt = av_find_input_format("avfoundation");// Avfoundation// [video]:[audio]if (avformat_open_input(&pFormatCtx, "1", ifmt, NULL) != 0){printf("Couldn't open input stream.\n");return -1;}
#endifret = avformat_find_stream_info(pFormatCtx, NULL);if (ret < 0){printf("Couldn't find stream information.\n");return -1;}videoindex = -1;for (size_t i = 0; i < pFormatCtx->nb_streams; i++)if (pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO){videoindex = i;break;}if (videoindex == -1){printf("Couldn't find a video stream.\n");return -1;}pCodecCtx = pFormatCtx->streams[videoindex]->codec;pCodec = avcodec_find_decoder(pCodecCtx->codec_id);if (pCodec == NULL){printf("Codec not found.\n");return -1;}ret = avcodec_open2(pCodecCtx, pCodec, NULL);if (ret < 0){printf("Could not open codec.\n");return -1;}AVFrame	*pFrame, *pFrameYUV;pFrame = av_frame_alloc();pFrameYUV = av_frame_alloc();//unsigned char *out_buffer = (unsigned char *)av_malloc(avpicture_get_size(AV_PIX_FMT_YUV420P,//	pCodecCtx->width, pCodecCtx->height));//avpicture_fill((AVPicture *)pFrameYUV, out_buffer, AV_PIX_FMT_YUV420P,//	pCodecCtx->width, pCodecCtx->height);// ------------------------ SDL 1.2 ------------------------if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)){printf("Could not initialize SDL - %s.\n", SDL_GetError());return -1;}int screen_w = 640, screen_h = 360;const SDL_VideoInfo *vi = SDL_GetVideoInfo();// Half of the Desktop's width and height.screen_w = vi->current_w / 2;screen_h = vi->current_h / 2;SDL_Surface *screen;// 初始化屏幕(SDL 绘制的窗口)screen = SDL_SetVideoMode(screen_w, screen_h, 0, 0);if (!screen){printf("SDL: could not set video mode - exiting:%s.\n", SDL_GetError());return -1;}SDL_Overlay *bmp;// Now we create a YUV overlay on that screen so we can input video to itbmp = SDL_CreateYUVOverlay(pCodecCtx->width, pCodecCtx->height, SDL_YV12_OVERLAY, screen);SDL_Rect rect;rect.x = 0;rect.y = 0;rect.w = screen_w;rect.h = screen_h;// ------------------------ SDL End ------------------------int got_picture;AVPacket *packet = (AVPacket *)av_malloc(sizeof(AVPacket));#if OUTPUT_YUV420P FILE *fp_yuv = fopen("output.yuv", "wb+");
#endif  struct SwsContext *img_convert_ctx;img_convert_ctx = sws_getContext(pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt,pCodecCtx->width, pCodecCtx->height, AV_PIX_FMT_YUV420P, SWS_BICUBIC, NULL, NULL, NULL);// SDL 线程SDL_Thread *video_tid = SDL_CreateThread(sfp_refresh_thread, NULL);// 设置窗口标题SDL_WM_SetCaption("Simplest FFmpeg Screen Recorder", NULL);// Event LoopSDL_Event event;for (;;){// WaitSDL_WaitEvent(&event);if (event.type == SFM_REFRESH_EVENT){// Get an AVpacketif (av_read_frame(pFormatCtx, packet) >= 0){if (packet->stream_index == videoindex){ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet);if (ret < 0){printf("Decode error.\n");return -1;}if (got_picture){SDL_LockYUVOverlay(bmp);pFrameYUV->data[0] = bmp->pixels[0];pFrameYUV->data[1] = bmp->pixels[2];pFrameYUV->data[2] = bmp->pixels[1];pFrameYUV->linesize[0] = bmp->pitches[0];pFrameYUV->linesize[1] = bmp->pitches[2];pFrameYUV->linesize[2] = bmp->pitches[1];sws_scale(img_convert_ctx, (const unsigned char* const*)pFrame->data,pFrame->linesize, 0, pCodecCtx->height, pFrameYUV->data, pFrameYUV->linesize);#if OUTPUT_YUV420P  int y_size = pCodecCtx->width * pCodecCtx->height;fwrite(pFrameYUV->data[0], 1, y_size, fp_yuv); // Y   fwrite(pFrameYUV->data[1], 1, y_size / 4, fp_yuv); // U  fwrite(pFrameYUV->data[2], 1, y_size / 4, fp_yuv); // V  
#endifSDL_UnlockYUVOverlay(bmp);SDL_DisplayYUVOverlay(bmp, &rect);}}av_free_packet(packet);}else{// Exit Threadthread_exit = 1;}}else if (event.type == SDL_QUIT){thread_exit = 1;}else if (event.type == SFM_BREAK_EVENT){break;}}sws_freeContext(img_convert_ctx);#if OUTPUT_YUV420P fclose(fp_yuv);
#endif SDL_Quit();// av_free(out_buffer);av_free(pFrameYUV);avcodec_close(pCodecCtx);avformat_close_input(&pFormatCtx);system("pause");return 0;
}

结果

可以通过下面的宏定义来确定是否将解码后的 YUV420P 数据输出成文件:

#define OUTPUT_YUV420P 0

可以通过下面的宏定义来确定使用 VFW 或者是 Dshow 打开摄像头:

//'1' Use Dshow 
//'0' Use GDIgrab
#define USE_DSHOW 0

运行程序,输出如下:

在这里插入图片描述

使用 dshow 时:

在这里插入图片描述

程序的运行效果如下。这个运行结果还是十分有趣的,会出现一个屏幕“嵌套”在另一个屏幕里面的现象,环环相套:

在这里插入图片描述

工程文件下载

GitHub:UestcXiye / Simplest-FFmpeg-Screen-Recorder

CSDN:Simplest FFmpeg Screen Recorder.zip

参考链接

  1. 《 100行代码实现最简单的基于FFMPEG+SDL的视频播放器(SDL1.x)》
  2. 《FFmpeg获取DirectShow设备数据(摄像头,录屏)》

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

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

相关文章

ASUS华硕天选2锐龙版笔记本电脑FA506ICB/FA706IC原装出厂Windows11系统,预装OEM系统恢复安装开箱状态

链接&#xff1a;https://pan.baidu.com/s/122iHHEOtNUu4azhVPnxNuA?pwdsqk7 提取码&#xff1a;sqk7 适用型号&#xff1a; FA506IM、FA506IE、FA506IC、FA506IHR FA506IR、FA506IHRB、FA506ICB、FA506IEB FA706IM、FA706IE、FA706IC、FA706IHR FA706IR、FA706IHRB、F…

CSS的浮动属性,微信web开发

面试前的准备 在这部分&#xff0c;我将详细讲解面试前我们需要做哪些方面的工作&#xff0c;以保证我们在面试过程中更加顺利。 准备一份漂亮的简历 一份漂亮的简历就是你进入大厂的敲门砖。 网上有很多教程教大家如何写出一份漂亮的简历&#xff0c;这里我就不做重复劳动了…

开源模型应用落地-工具使用篇-Ollama(六)

一、前言 在AI大模型百花齐放的时代&#xff0c;很多人都对新兴技术充满了热情&#xff0c;都想尝试一下。但是&#xff0c;实际上要入门AI技术的门槛非常高。除了需要高端设备&#xff0c;还需要面临复杂的部署和安装过程&#xff0c;这让很多人望而却步。不过&#xff0c;随着…

LiveNVR监控流媒体Onvif/RTSP功能-视频广场点击在线或离线时展示状态记录快速查看通道离线原因

LiveNVR视频广场点击在线或离线时展示状态记录快速查看通道离线原因 1、状态记录1.1、点击在线查看1.2、点击离线查看 2、RTSP/HLS/FLV/RTMP拉流Onvif流媒体服务 1、状态记录 1.1、点击在线查看 可以点击视频广场页面中&#xff0c; 在线 两个字查看状态记录 1.2、点击离线查…

Thinkphp5.1中,将数组赋值给js使用

一、例如Thinkphp5.1中的的代码是这样的 $data [status > 1,msg > 加载成功,data > [id > 1,username > 小洪帽,] ];$this->assign(data,$data);二、JS代码接收PHP中的数组 注意 <> 符号是不需要放引号的。 let arr <?json_encode($data)?>…

【Godot4自学手册】第二十节增加游戏的打击感,镜头震颤、冻结帧和死亡特效

这节我主要学习增加游戏的打击感。我们通过镜头震颤、冻结帧、增加攻击点特效&#xff0c;增加死亡。开始了。 一、添加攻击点特效 增加攻击点特效就是&#xff0c;在攻击敌人时&#xff0c;会在敌人受击点显示一个受击动画。 1.添加动画。 第一步先做个受击点动画。切换到…

交叉编译qt5.14.2

qt源码下载地址&#xff1a;qt-everywhere-src-5.14.2.tar.xz 1.修改qt-everywhere-src-5.14.2/qtbase/mkspecs/linux-arm-gnueabi-g/qmake.conf文件&#xff1a; # # qmake configuration for building with arm-linux-gnueabi-g #MAKEFILE_GENERATOR UNIX CONFIG …

第三篇【传奇开心果系列】Python的自动化办公库技术点案例示例:深度解读Pandas股票市场数据分析

传奇开心果博文系列 系列博文目录Python的自动化办公库技术点案例示例系列 博文目录前言一、Pandas进行股票市场数据分析常见步骤和示例代码1. 加载数据2. 数据清洗和准备3. 分析股票价格和交易量4. 财务数据分析 二、扩展思路介绍1. 技术指标分析2. 波动性分析3. 相关性分析4.…

STM32CubeIDE基础学习-基础外设初始化配置

STM32CubeIDE基础学习-基础外设初始化配置步骤 前言 前面的文章介绍了基础工程的创建步骤&#xff0c;这篇文章就接着在基础工程的基础上来配置相关外设了&#xff0c;下面以STM32F103C8T6的主芯片为例进行简单配置。 基础工程创建步骤回顾 具体的配置步骤流程如下&#xff1…

【Linux】访问文件的本质|文件描述符|文件重定向

文章目录 文件的结构文件描述符标准输入输出文件描述符的规则 文件重定向输出重定向(对应符号>)echo的输出重定向 输入重定向&#xff08;对应符号<&#xff09;追加重定向&#xff08;对应符号‘>>’&#xff09;实现文件重定向的函数dup2()参数测试 前言&#xf…

could not publish server configuration for tomcat at localhost

1&#xff0c;报错信息如图&#xff1a; 2&#xff0c;找到servers双击&#xff0c;选择Modules&#xff0c;如果有两个webModules ,remove一个&#xff0c; 3&#xff0c;如果重启还是报错&#xff0c;干脆两个都remove&#xff0c;双击tomcat服务add And Remove重新添加

【Python】深度学习基础知识——梯度下降详解和示例

尽管梯度下降&#xff08;gradient descent&#xff09;很少直接用于深度学习&#xff0c;但它是随机梯度下降算法的基础&#xff0c;也是很多问题的来源&#xff0c;如由于学习率过大&#xff0c;优化问题可能会发散&#xff0c;这种现象早已在梯度下降中出现。本文通过原理和…

Docker知识点总结

二、Docker基本命令&#xff1a; Docker支持CentOs 6 及以后的版本; CentOs7系统可以直接通过yum进行安装&#xff0c;安装前可以 1、查看一下系统是否已经安装了Docker: yum list installed | grep docker 2、安装docker&#xff1a; yum install docker -y -y 表示自动确认…

flutter旋转动画,算法题+JVM+自定义View

在很多的博客或者书上&#xff0c;说有三种&#xff0c;除了上述的两种以外&#xff0c;还有一种是实现Callable接口。但是这种并不是&#xff0c;因为&#xff0c;我们检查JDK中Thread的源码&#xff0c;看它的注释&#xff1a; There are two ways to create a new thread o…

Linux操作系统的vim常用命令和vim 键盘图

在vi编辑器的命令模式下&#xff0c;命令的组成格式是&#xff1a;nnc。其中&#xff0c;字符c是命令&#xff0c;nn是整数值&#xff0c;它表示该命令将重复执行nn次&#xff0c;如果不给出重复次数的nn值&#xff0c;则命令将只执行一次。例如&#xff0c;在命令模式下按j键表…

Fuyu-8B A Multimodal Architecture for AI Agents

Fuyu-8B: A Multimodal Architecture for AI Agents Blog: https://www.adept.ai/blog/fuyu-8b TL; DR&#xff1a;无视觉编码器和 adapter&#xff0c;纯解码器结构的多模态大模型。 Adept 是一家做 Copilot 创业的公司&#xff0c;要想高效地帮助用户&#xff0c;必须要准确…

【Linux网络】再谈 “协议“

目录 再谈 "协议" 结构化数据的传输 序列化和反序列化 网络版计算器 封装套接字操作 服务端代码 服务进程执行例程 启动网络版服务端 协议定制 客户端代码 代码测试 使用JSON进行序列化与反序列化 我们程序员写的一个个解决我们实际问题&#xff0c;满…

新品发布会媒体邀请,邀约记者现场报道

传媒如春雨&#xff0c;润物细无声&#xff0c;大家好&#xff0c;我是51媒体网胡老师。 新品发布会媒体邀请及记者现场报道邀约流程&#xff1a; 一、策划准备 明确新品发布会时间、地点和主题。 制定媒体邀请计划&#xff0c;确定目标媒体。 二、邀请媒体 向目标媒体发送…

CSS的三种定位,响应式web开发项目教程

标准文档流 文档流&#xff1a;指的是元素排版布局过程中 戳这里领取完整开源项目&#xff1a;【一线大厂前端面试题解析核心总结学习笔记Web真实项目实战最新讲解视频】 &#xff0c;元素会默认自动从左往右&#xff0c;从上往下的流式排列方式。并最终窗体自上而下分成一行行…

12、电源管理入门之clock驱动

目录 1. clock驱动构架 1.2 clock consumer介绍 2. Clock Provider 2.1 数据结构表示 2.2 clock provider注册初始化 2.3 DTS配置 2.4 clock驱动实现举例: 3. clock consumer 3.1 获取clock 3.2 操作clock 3.3 实例操作 4. SoC硬件中的使用 参考: 电源管理的两个…