• 大小: 1.91KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: 视频  rtsp  

资源简介

ffmpeg获取RTSP视频流信息

资源截图

代码片段和文件信息

#include “FFPlayVeido.h“
 
FFPlayVedio::FFPlayVedio(HWND hwd)
{
    char sdl_var[64];
    sprintf(sdl_var “SDL_WINDOWID=%d“ hwd); //主窗口句柄   
    putenv(sdl_var);
    //初始化
    av_register_all();
    avformat_network_init();
 
    if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)) {
        printf(“Could not initialize SDL - %s\n“ SDL_GetError());
        return;
    }
}
FFPlayVedio::~FFPlayVedio()
{
 
}
 
void FFPlayVedio::OnInit(HWND hwd)
{
 
}
void FFPlayVedio::GetVedioPlay( char *name)
{
 
    AVFormatContext *pFormatCtx;
    int             i videoindex;
    AVCodecContext  *pCodecCtx;
    AVCodec         *pCodec;
    char filepath[] = “rtsp://admin:123456@192.168.1.252:554/mpeg4cif“;
 
    pFormatCtx = avformat_alloc_context();
 
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5464  2015-09-23 14:10  CPlay.cpp

----------- ---------  ---------- -----  ----

                 5464                    1


评论

共有 条评论