更改首选音量

时间:2018-07-03 11:51:51

标签: swift4 avasset avmutablecomposition

是否可以增加/减少音频文件的AVAsset轨道或AVMutableComposition的音量? 我有两个音频文件(背景乐器和录制的歌曲),我想减小一个文件的音量并与另一个文件合并。

1 个答案:

答案 0 :(得分:0)

1。更改曲目的音量

要对物理文件执行此操作,您需要将原始PCM数据加载到Swift中。以下是通过this SO post:

获取浮点数据的示例
import AVFoundation
// ...

let url = NSBundle.mainBundle().URLForResource("your audio file", withExtension: "wav")
let file = try! AVAudioFile(forReading: url!)
let format = AVAudioFormat(commonFormat: .PCMFormatFloat32, sampleRate: file.fileFormat.sampleRate, channels: 1, interleaved: false)

let buf = AVAudioPCMBuffer(PCMFormat: format, frameCapacity: 1024)
try! file.readIntoBuffer(buf)

// this makes a copy, you might not want that
let floatArray = Array(UnsafeBufferPointer(start: buf.floatChannelData[0], count:Int(buf.frameLength)))

print("floatArray \(floatArray)\n")

一旦floatArray中有数据,只需将数组中的每个值乘以0到1之间的数字即可调整增益。如果您更熟悉分贝,则将分贝值放入下一行,并将每个数组值乘以linGain

var linGain = pow(10.0f, decibelGain/20.0f)

然后是在加载音频文件(credit)之前再次写回音频文件的问题:

let SAMPLE_RATE =  Float64(16000.0)

let outputFormatSettings = [
    AVFormatIDKey:kAudioFormatLinearPCM,
    AVLinearPCMBitDepthKey:32,
    AVLinearPCMIsFloatKey: true,
    //  AVLinearPCMIsBigEndianKey: false,
    AVSampleRateKey: SAMPLE_RATE,
    AVNumberOfChannelsKey: 1
    ] as [String : Any]

let audioFile = try? AVAudioFile(forWriting: url, settings: outputFormatSettings, commonFormat: AVAudioCommonFormat.pcmFormatFloat32, interleaved: true)

let bufferFormat = AVAudioFormat(settings: outputFormatSettings)

let outputBuffer = AVAudioPCMBuffer(pcmFormat: bufferFormat, frameCapacity: AVAudioFrameCount(buff.count))

// i had my samples in doubles, so convert then write

for i in 0..<buff.count {
    outputBuffer.floatChannelData!.pointee[i] = Float( buff[i] )
}
outputBuffer.frameLength = AVAudioFrameCount( buff.count )

do{
    try audioFile?.write(from: outputBuffer)

} catch let error as NSError {
    print("error:", error.localizedDescription)
}

2。混合曲目

一旦有了新的音频.wav文件,就可以像以前一样将它们都加载到AVAsets中,但这一次是使用以前应用的所需增益。

然后看起来您将要使用AVAssetReaderAudioMixOutput,它具有专门用于将两个音轨混合在一起的方法。

AVAssetReaderAudioMixOutput.init(audioTracks: [AVAssetTrack], audioSettings: [String : Any]?)

注意: 例如,如果您想将歌曲与滑块混合使用并听到结果,我将不连续使用步骤1和2,我建议您使用AVPlayer并调整其音量然后在用户准备就绪后,将该文件IO进行调用并进行混合。