- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
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 或更高版本的答案。
执行的其他测试:
最佳答案
从上述 super 用户线程获得的答案(感谢@Karan)。
首先,FFMPEG 应该返回设备名称值。如果没有,请尝试:
作为第二个选项,仅适用于 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)上正常工作。
补充点:
关于Windows shell : How can I get the audio device(s) name(s)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30563471/
我是一名优秀的程序员,十分优秀!