AForge获取本机视频设备列表
Posted 宸瑞-疾风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AForge获取本机视频设备列表相关的知识,希望对你有一定的参考价值。
最近项目写了一个ffmpeg rtmp推流器,需要查询电脑视频列表。
研究了下大概有3种方法
1.利用ffmpeg打印
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");
//av_log_set_callback(my_logoutput);
printf("========Device Info=============\\n");
avformat_open_input(&pFormatCtx, "video=dummy", iformat, &options);
printf("================================\\n");
avformat_free_context(pFormatCtx);
//av_log_set_callback(NULL);
这样打印可能只能在控制台才能看到,对于编程不实用
这里我提供一个投机取巧的方式供大家参考可以得到名称集合
原理就是改变ffmpeg的打印输出log对象 捕获到log 就可以进行分析了
void my_logoutput(void* ptr, int level, const char* fmt, va_list vl)
FILE *fp = fopen("my_log.txt", "a");
if (fp)
vfprintf(fp, fmt, vl);
fflush(fp);
fclose(fp);
利用av_log_set_callback函数就可以实现捕获
2.利用原生direshow方法,这个方法是最好的 ffmpeg和其他类库都是基于这个接口。具体代码见:代码
3.利用AForge库
发现用AForge类库是最简单的,因为里面封装好了
现在贴出AForge 代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using AForge.Video.DirectShow;
namespace CRLIVE.UI.BLL
public static class CheckDevices
static FilterInfoCollection videoDevices;
public static void AForgeShowDevicesList()
// show device list
try
// enumerate video devices
videoDevices = new FilterInfoCollection(FilterCategory.AudioInputDevice);
if (videoDevices.Count == 0)
throw new ApplicationException();
// add all devices to combo
foreach (FilterInfo device in videoDevices)
Console.WriteLine(device.Name);
catch (ApplicationException)
Console.WriteLine("No local capture devices");
注意需要引用命名空间
using AForge.Video.DirectShow;
以上是关于AForge获取本机视频设备列表的主要内容,如果未能解决你的问题,请参考以下文章
AForge.NET:未触发 NewFrameEventHandler 参数方法