问题标签 [system-sounds]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
iphone - 在不播放音乐的情况下更改应用内的音量
我的问题是:
1)我在 iOS 应用程序中 2)我在没有播放应用程序声音的情况下更改音量(单击音量按钮)-> 系统音量已更改。
有没有办法改变应用程序声音的音量而不播放它们?
提前致谢
iphone - 使用 AVPlayer 保留多个 mp3 声音
我正在写一本交互式儿童读物,为此我建立了一个滑动的声音窗口。对于声音 .caf,我在内存中加载不同的声音没有任何问题,因为我使用了 SystemSoundID:
但是,我也有 mp3 文件,对于那种声音,我不能使用我之前解释的方式(systemSoundID 不支持 mp3)。是否可以使用 AVPlayer 做到这一点?有没有办法同时在内存中加载多个 mp3 声音?
ios - iOS 中“玻璃”声音的声音 ID 是什么?
所有系统声音的完整列表在哪里?
http://iphonedevwiki.net/index.php/AudioServices没有。谷歌搜索没有帮助。我正在专门寻找 Glass 声音。
android - 禁用音响系统
我正在开发一个带有声音的应用程序,并用按钮播放声音,但我的问题是当您单击按钮播放声音时,还包括系统声音。当您启动我的应用程序时,如何自动关闭系统声音?提前致谢
c# - 从资源中获取媒体文件
我添加了一些短信的通知声音作为我项目主文件的参考,并尝试使其工作如下
我播放了声音,但它不是我添加的绝对声音。而是播放标准的 Windows 声音。有任何想法吗?
更新
问题在于从资源中获取文件
c++ - 在linux中通过c/c++程序生成系统声音
我在一个while(1)
循环中以每秒 1 帧的速率从相机捕获帧。
while(1)
当循环内满足特定条件时,我想每次在我的 C 程序中生成持续时间为 100 毫秒的哔声。
我尝试使用 shell 命令播放单音 .wav 文件aplay
,但它会减慢程序的速度。
有没有更省时的替代方案?
有没有办法使用 C/C++ 程序产生系统声音(例如,当我们在终端中按右箭头键时播放的声音)?
编辑: 我可以使用两种方法通过内部 pc 扬声器产生哔声:
方法一:通过启用pcspeaker使用beep命令:
sudo modprobe pcspkr
sudo beep
方法二:使用命令:xkbbell -force
aplay
但是除了和paplay
命令之外,我没有找到任何解决方案。当我尝试使用这些命令播放声音文件时,在播放声音文件并将控制权返回给 shell 用户后会有一些延迟。
ios - iOS:将系统声音重新路由到听筒(接收器)?
我正在向我的企业应用程序添加语音备忘录功能。当用户将手机举到脸上时,我正在使用 iPhone 的接近检测器开始录制。该动作还使用系统声音(AudioToolbox)播放“哔”声,让用户知道它正在录制。
我的问题是哔哔声通过下扬声器播放。当用户将手机举到脸上时,我想让它通过听筒播放,就像 Siri 一样。
由于这是一个记录器/播放功能,我将 SystemSound 和 AVAudioSession 混合在同一个类中。我知道如何将 AVAudioSession 重新路由到听筒或扬声器,但我不知道如何使用 SystemSounds 做到这一点。
有任何想法吗?
谢谢!
c# - How to use system audio output to draw spectrum in my C# application
I want to display the spectrum of output audio of my windows C# application. Currently i am using NAudio Library to calculate information through PCM data of input file. But it seems that this process is taking a lot of time and processing in older systems configurations. So i was wondering if i can use the windows audio output data to do so. I meant this.
As you can see windows is generating green bar of current sound output. And it does recognize multiple outputs in MIXER. So is there any way to get this data and use in my application to escape extra calculation? And i haven't posted any code or my work as i am not sure how to do that and if that is even possible so kindly bear with me.
Thank. You.
ios - 使用 Swift 播放系统声音
当使用系统声音按下按钮时,我正在尝试播放声音。我不断收到错误消息:“致命错误:在展开可选值时意外发现 nil”。我尝试调试,我相信错误发生在var ref行上。“roar.aif”是我在项目中包含的自定义声音。它只有一秒半长。我会很感激建议。谢谢!
ios8 - iOS: Do I need to release an internal system sound like 1104?
I know we should be disposing of our SystemSoundID's when creating / preloading them, but my question is, if this also is true when we use apple's internal system sounds like 1104:
Since we never have to actually create / preload them.