最近项目写了一个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和其他类库都是基于这个接口。这个我没研究 感觉操作起来比较麻烦发现用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;
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。