以编程方式关闭点击 iPhone 上的静音按钮时的声音
如何以编程方式禁用在播放音频文件时按下 iPhone 静音按钮时的声音? 我正在使用流媒体播放音频。
How to programmatically disable the sound when mute button of iphone pressed while playing audio file?
I'm using streamer for audio.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能对您有帮助
现在,如果我们想以最简单的方式控制应用程序中的音量级别,我们将使用 MediaPlayer 框架中的一些内容。如果您在应用程序中实现音频播放器,这非常有用。
这个小功能的最大优点是可以在任何类中轻松实现。我们只需在类的标头中导入 MediaPlayer 框架 (#import ),然后在我们知道适合此功能的方法(init 方法)中添加下面的代码。
这种音量控制与 iPhone 硬件音量按钮连接。你会得到与音乐播放器相同的东西。
This may help you
Now, here is something from MediaPlayer framework that we are going to use if we want in most easiest way control level of volume in our application. This is very useful if you are implementing an audio player in your app.
The best thing about this small feature is easy implementation in any class. We just import MediaPlayer framework in header of our class (#import ) and add this code below in method we know that is appropriate for this feature (init method).
This kind of volume control is connected with iPhone hardware volume buttons. You get same thing like in Music player.
您必须使用iOS SDK的音频框架并选择正确的配置文件。系统自动决定静音是否合适。
Apple 在此处对此进行了解释。 :-)
You have to use the audio framework of the iOS SDK and choose the correct profile. The system automatically decides if muting is appropriate.
Apple explains it here. :-)
也许你可以使用....
如果您正在使用 MPMoviewPlayerController 并打算使用 mpvolumeview 控制音量
probably you can use ....
if you are using MPMoviewPlayerController and intend to control the volume using mpvolumeview