如何快速降低音乐音量?
Posted
技术标签:
【中文标题】如何快速降低音乐音量?【英文标题】:How to lower the volume of music in swift? 【发布时间】:2014-08-19 23:35:05 【问题描述】:我正在创建一个带有背景音乐循环的 SpriteKit 游戏。问题是音乐太大声了。如何降低音量?
这是我用来设置音乐的代码
var backGroundMusic = AVAudioPlayer()
var bgMusicUrl:NSURL = NSBundle.mainBundle().URLForResource("BackGround", withExtension: "wav")
backGroundMusic = AVAudioPlayer(contentsOfURL:bgMusicUrl, error: nil)
backGroundMusic.numberOfLoops = (-1)
backGroundMusic.prepareToPlay()
backGroundMusic.play()
【问题讨论】:
【参考方案1】:你试过了吗?
backGroundMusic.volume = 0.5
音量从 0.0 变为 1.0(全音量)。 https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVAudioPlayerClassReference/index.html
【讨论】:
我也有同样的问题。我试过这个,但无论我做什么,它总是在最大音量。即使值为 0.1。不知道该怎么办:s @Mr.Boon 看来我没有这个问题。 @Mr.Boon 确保在 play() 之后设置音量【参考方案2】:试试这个:
backGroundMusic.setVolume(0.05, fadeDuration: TimeInterval(1))
【讨论】:
以上是关于如何快速降低音乐音量?的主要内容,如果未能解决你的问题,请参考以下文章