2016-08-30 3 views
1

Я прочитал много сообщений и попробовал много разных подходов и окончательно подошел к фактически работающему решению, которое является парой func из другой записи переполнения стека, чтобы играть, добавлять эффект и сохранять его в файл , он играет добавленный эффект и сохраняет его, но проблема в том, что сохраненное caf. файл не читается. Я видел, что он создает файл в основном каталоге, но не может воспроизвести его. Любая идея, что вызывает эту проблему будет очень ценитьсяЗапись звука с добавленными эффектами

func playAudio(pitch : Float, rate: Float, reverb: Float, echo: Float) { 
    // Initialize variables 
    audioEngine = AVAudioEngine() 
    audioPlayerNode = AVAudioPlayerNode() 
    audioEngine.attachNode(audioPlayerNode) 

    // Setting the pitch 
    let pitchEffect = AVAudioUnitTimePitch() 
    pitchEffect.pitch = pitch 
    audioEngine.attachNode(pitchEffect) 

    // Setting the platback-rate 
    let playbackRateEffect = AVAudioUnitVarispeed() 
    playbackRateEffect.rate = rate 
    audioEngine.attachNode(playbackRateEffect) 

    // Setting the reverb effect 
    let reverbEffect = AVAudioUnitReverb() 
    reverbEffect.loadFactoryPreset(AVAudioUnitReverbPreset.Cathedral) 
    reverbEffect.wetDryMix = reverb 
    audioEngine.attachNode(reverbEffect) 

    // Setting the echo effect on a specific interval 
    let echoEffect = AVAudioUnitDelay() 
    echoEffect.delayTime = NSTimeInterval(echo) 
    audioEngine.attachNode(echoEffect) 

    // Chain all these up, ending with the output 
    audioEngine.connect(audioPlayerNode, to: playbackRateEffect, format: nil) 
    audioEngine.connect(playbackRateEffect, to: pitchEffect, format: nil) 
    audioEngine.connect(pitchEffect, to: reverbEffect, format: nil) 
    audioEngine.connect(reverbEffect, to: echoEffect, format: nil) 
    audioEngine.connect(echoEffect, to: audioEngine.mainMixerNode, format: nil) 


    // Good practice to stop before starting 
    audioPlayerNode.stop() 

    // Play the audio file 
    if(audioEngine != nil){ 
     audioEngine?.stop() 
    } 

    audioPlayerNode.scheduleFile(audioFile, atTime: nil, completionHandler: { 
     print("Complete") 

    }) 

    try! audioEngine.start() 


    let dirPaths: AnyObject = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.UserDomainMask, true)[0] 
    let tmpFileUrl: NSURL = NSURL.fileURLWithPath(dirPaths.stringByAppendingPathComponent("dddeffefsdctedSoundf23f13.caf")) 
    filteredOutputURL = tmpFileUrl 

    do{ 
     print(dirPaths) 
     print(tmpFileUrl) 

     self.newAudio = try! AVAudioFile(forWriting: tmpFileUrl, settings:[ 
      AVFormatIDKey: NSNumber(unsignedInt:kAudioFormatAppleLossless), 
      AVEncoderAudioQualityKey : AVAudioQuality.Medium.rawValue, 
      AVEncoderBitRateKey : 12800, 
      AVNumberOfChannelsKey: 2, 
      AVSampleRateKey : 44100.0 
      ]) 

     audioEngine.mainMixerNode.installTapOnBus(0, bufferSize: 2048, format: audioEngine.mainMixerNode.inputFormatForBus(0)) { 
      (buffer: AVAudioPCMBuffer!, time: AVAudioTime!) -> Void in 

      print(self.newAudio.length) 
      print("=====================") 
      print(self.audioFile.length) 
      print("**************************") 
      if (self.newAudio.length) < (self.audioFile.length){//Let us know when to stop saving the file, otherwise saving infinitely 

       do{ 
        //print(buffer) 
        try self.newAudio.writeFromBuffer(buffer) 
       }catch _{ 
        print("Problem Writing Buffer") 
       } 
      }else{ 
       self.audioEngine.mainMixerNode.removeTapOnBus(0)//if we dont remove it, will keep on tapping infinitely 

      } 

     } 
    }catch _{ 
     print("Problem") 
    } 

    audioPlayerNode.play() 

ответ

1

Вы должны очистить и закрыть аудиофайл файла, так что CAF файл правильно выписали.

Проводы AVAudioFile не имеет явных методов сделать это, ваша единственная надежда, кажется, настройка newAudio до нуля после того, как вы закончили, и в надежде, что это будет сделано в течение AVAudioFile «s dealloc:

self.audioEngine.mainMixerNode.removeTapOnBus(0) 
       print("finish?") 
self.newAudio = nil // hopefully flush & close, if there are no other strong references 
+0

самоуправления .newAudio = nil // исправлена ​​проблема Спасибо большое – ivan123

Смежные вопросы