gpt4 book ai didi

Windows shell : How can I get the audio device(s) name(s)?

转载 作者:可可西里 更新时间:2023-11-01 09:37:33 25 4
gpt4 key购买 nike

I am not sure if this is strictly a programming question, as long as I don't mind to use additional software in order to solve the problem, as long as it keeps being scriptable or command-line (this is: a not GUI solution). Anyway, I have posted another (a bit different) question at SuperUser. By the way, I will update here if I get the answer there.

我的 Windows 程序(只是一个 shell 脚本)调用 VLC 命令行以便从声卡录制音频并将其流出,例如:

vlc dshow:// :dshow-vdev=none :dshow-adev="SoundMAX HD Audio I" :std{mux=ts,access=http,dst=:8080} :sout-keep [rest of the cmdline not relevant]

只要计算机上可能有多个音频设备(网络摄像头、多个音频卡、蓝牙设备...等),我就需要以编程方式获取名称 其中。

到目前为止,我一直在使用 FFMPEG:

ffmpeg -list_devices true -f dshow -i dummy

...但有时它无法正常工作,例如:

d:\Utils\FFMPEG\bin>ffmpeg -list_devices true -f dshow -i dummy
ffmpeg version N-72460-g11aa050 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.9.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmfx --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --ena
ble-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
libavutil 54. 26.100 / 54. 26.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 34.100 / 56. 34.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 3.100 / 53. 3.100
[dshow @ 0000000000363520] DirectShow video devices (some may be both video and
audio devices)
[dshow @ 0000000000363520] Could not enumerate video devices (or none found).
[dshow @ 0000000000363520] DirectShow audio devices
[dshow @ 0000000000363520] Could not enumerate audio only devices (or none found
).
dummy: Immediate exit requested

命令行工具 SystemInfo 都不起作用:

C:\>systeminfo | find "audio" /i

C:\>

regedit 中搜索,没有找到关于我的声卡示例(SoundMAX HD Audio I)的任何信息。

是否有任何其他更可靠的方法以编程方式获取声音设备名称?

如果可能,我希望获得适用于 Windows XP 和 Vista 或更高版本的答案。

执行的其他测试:

  • 安装了最新的 MicroSoft .NET FrameWork v4.5.2 并重新启动。
  • 测试了旧版本的 FFMPEG:v4.8 (2014) 和 v4.7 (2013)。
  • 已测试 UAC 提升提示。

最佳答案

从上述 super 用户线程获得的答案(感谢@Karan)。

首先,FFMPEG 应该返回设备名称值。如果没有,请尝试:

  • 将 FFMPEG 更新到最新版本。
  • 更新 .NET FrameWork。
  • 尝试 another version .请注意,如果这是问题所在(从 this thread 中提取),v4.7.3 似乎不需要 .NET Framework。
  • 对于麦克风设备,确保插孔已连接。在某些系统上,如果没有,设备似乎被禁用(消失)。当然,这不适用于带有嵌入式(内置)麦克风的可移植设备。

作为第二个选项,仅适用于 Vista 及更高版本(截至今天,2015 年 6 月),并且不需要下载 30-40MB 的 FFMPEG,您可以尝试 SoundVolumeView来自 NirSoft。将值发送到 .txt 文件并通过执行以下操作进行过滤:

SoundVolumeView /scomma Audio.txt
for /f "tokens=1 delims=," %d in ('type Audio.txt ^| find "Capture"') do @echo Default recording device is: "%d"

作为第三个选项,仍然适用于 Vista 及更高版本,所有音频输入(捕获和录制)设备都可以通过发出此命令从寄存器中提取(由@Karan 解释 here)行:

for /f "tokens=9 delims=\" %a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture" /s ^| find "\Properties"') do @for /f "tokens=2*" %k in ('reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\%a\Properties" /v "{a45c254e-df1c-4efd-8020-67d146a850e0},2"') do @echo "%l"

注意:请记住,在为此类设备编写脚本时,您会发现特殊的本地化字符,例如Microphone 的西类牙语单词Microfono。例如,FFMPEG 会将其显示为一些相当奇怪的 Microfono

上述所有三种方法,包括 NirSoft 的方法,都可以在远程控制台(例如 SSH)上正常工作。

补充点:

  • 请注意,此答案仅解决recording/input/capture 设备的音频设备名称问题,因此(除了 FFMPEG 情况,可能)上述方法无效或必须相应修改如果你搜索正在玩的。

关于Windows shell : How can I get the audio device(s) name(s)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30563471/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com