How to set AVAudioUnitEQ equalizer presets gain values for 10 frequency bands in iOS Swift











up vote
1
down vote

favorite












I could add an audio setup to change equalizer by changing slider values by



let FREQUENCY: [Float] = [31, 62, 125, 250, 500, 1000, 2000, 4000, 8000, 16000]
//let FREQUENCY: [Float] = [60, 230, 910, 3600, 14000]

self.audioEngine = AVAudioEngine.init()
self.audioPlayerNode = AVAudioPlayerNode.init()
self.audioUnitEQ = AVAudioUnitEQ(numberOfBands: 10)
self.audioEngine.attach(self.audioPlayerNode)
self.audioEngine.attach(self.audioUnitEQ)

for i in 0...9 {
self.audioUnitEQ.bands[i].filterType = .parametric
self.audioUnitEQ.bands[i].frequency = FREQUENCY[i]
self.audioUnitEQ.bands[i].bandwidth = 0.5 // half an octave
let eq = self.value(forKey: String(format: "eq%d", i)) as! UISlider
self.audioUnitEQ.bands[i].gain = eq.value
self.audioUnitEQ.bands[i].bypass = false
}


But Is there any method to change gain values or set equalizer presets like Accoustics, Rock etc. How to set their gain values for those presets










share|improve this question




























    up vote
    1
    down vote

    favorite












    I could add an audio setup to change equalizer by changing slider values by



    let FREQUENCY: [Float] = [31, 62, 125, 250, 500, 1000, 2000, 4000, 8000, 16000]
    //let FREQUENCY: [Float] = [60, 230, 910, 3600, 14000]

    self.audioEngine = AVAudioEngine.init()
    self.audioPlayerNode = AVAudioPlayerNode.init()
    self.audioUnitEQ = AVAudioUnitEQ(numberOfBands: 10)
    self.audioEngine.attach(self.audioPlayerNode)
    self.audioEngine.attach(self.audioUnitEQ)

    for i in 0...9 {
    self.audioUnitEQ.bands[i].filterType = .parametric
    self.audioUnitEQ.bands[i].frequency = FREQUENCY[i]
    self.audioUnitEQ.bands[i].bandwidth = 0.5 // half an octave
    let eq = self.value(forKey: String(format: "eq%d", i)) as! UISlider
    self.audioUnitEQ.bands[i].gain = eq.value
    self.audioUnitEQ.bands[i].bypass = false
    }


    But Is there any method to change gain values or set equalizer presets like Accoustics, Rock etc. How to set their gain values for those presets










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I could add an audio setup to change equalizer by changing slider values by



      let FREQUENCY: [Float] = [31, 62, 125, 250, 500, 1000, 2000, 4000, 8000, 16000]
      //let FREQUENCY: [Float] = [60, 230, 910, 3600, 14000]

      self.audioEngine = AVAudioEngine.init()
      self.audioPlayerNode = AVAudioPlayerNode.init()
      self.audioUnitEQ = AVAudioUnitEQ(numberOfBands: 10)
      self.audioEngine.attach(self.audioPlayerNode)
      self.audioEngine.attach(self.audioUnitEQ)

      for i in 0...9 {
      self.audioUnitEQ.bands[i].filterType = .parametric
      self.audioUnitEQ.bands[i].frequency = FREQUENCY[i]
      self.audioUnitEQ.bands[i].bandwidth = 0.5 // half an octave
      let eq = self.value(forKey: String(format: "eq%d", i)) as! UISlider
      self.audioUnitEQ.bands[i].gain = eq.value
      self.audioUnitEQ.bands[i].bypass = false
      }


      But Is there any method to change gain values or set equalizer presets like Accoustics, Rock etc. How to set their gain values for those presets










      share|improve this question















      I could add an audio setup to change equalizer by changing slider values by



      let FREQUENCY: [Float] = [31, 62, 125, 250, 500, 1000, 2000, 4000, 8000, 16000]
      //let FREQUENCY: [Float] = [60, 230, 910, 3600, 14000]

      self.audioEngine = AVAudioEngine.init()
      self.audioPlayerNode = AVAudioPlayerNode.init()
      self.audioUnitEQ = AVAudioUnitEQ(numberOfBands: 10)
      self.audioEngine.attach(self.audioPlayerNode)
      self.audioEngine.attach(self.audioUnitEQ)

      for i in 0...9 {
      self.audioUnitEQ.bands[i].filterType = .parametric
      self.audioUnitEQ.bands[i].frequency = FREQUENCY[i]
      self.audioUnitEQ.bands[i].bandwidth = 0.5 // half an octave
      let eq = self.value(forKey: String(format: "eq%d", i)) as! UISlider
      self.audioUnitEQ.bands[i].gain = eq.value
      self.audioUnitEQ.bands[i].bypass = false
      }


      But Is there any method to change gain values or set equalizer presets like Accoustics, Rock etc. How to set their gain values for those presets







      ios swift avplayer equalizer preset






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 4 hours ago

























      asked 6 hours ago









      Dinesh Kumar

      658




      658





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370729%2fhow-to-set-avaudiouniteq-equalizer-presets-gain-values-for-10-frequency-bands-in%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370729%2fhow-to-set-avaudiouniteq-equalizer-presets-gain-values-for-10-frequency-bands-in%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

          Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

          A Topological Invariant for $pi_3(U(n))$