49

App crashes with the following error message

2019-10-12 20:01:34.332334-0700 Awesome App[26368:3535170] [plugin] AddInstanceForFactory: No factory registered for id <CFUUID 0x600002903280> F8BB1C28-BAE8-11D6-9C31-00039315CD46

The breakpoint at crash seems to be related to AVAudioPlayer

let path = Bundle.main.path(forResource: "menu_background.mp3", ofType:nil)!
audioPlayer = try AwesomeAudioPlayer(contentsOf: URL(fileURLWithPath: path)) ---> breakpoint

Amar Kanala
  • 493
  • 1
  • 4
  • 6

11 Answers11

23

I believe you all might have added the AVFoundation to the frameworks list in Project General Info tab.

Erroneous Code was as follows:

import SwiftUI
import AVFoundation

struct PlayerDetailView: View {
@State private var downloadedFilePath: URL = nil
var audioPlayer: AVAudioPlayer
 
var body: some View {

And after I moved the var audioPlayer: AVAudioPlayer declaration to just after the line of import AVFoundation line it seemed to be working.

So following code worked for me in a SwiftUI project:

import SwiftUI
import AVFoundation
var audioPlayer: AVAudioPlayer!

struct PlayerDetailView: View {
    @State private var downloadedFilePath: URL = nil

    var body: some View {
        VStack {
            Button("Play the Downloaded Track") {
                if let downloadedPath = self.downloadedFilePath?.path, FileManager().fileExists(atPath: downloadedPath) {
                    do {
                        audioPlayer = try AVAudioPlayer(contentsOf: self.downloadedFilePath!)
                        guard let player = audioPlayer else { return }

                        player.prepareToPlay()
                        player.play()
                    } catch let error {
                        print(error.localizedDescription)
                    }
                } else {
                    print("The file doesn not exist at path || may not have been downloaded yet")
                }
            }
        }
    }
}

I was initially following this tutorial of CodeWithChris and its discussion also led to above change. Also checkout following tutorial too if you need further examples.

Hope this will be helpful to someone of you out there!

Cheers!

Joy Bits
  • 33
  • 3
Randika Vishman
  • 7,983
  • 3
  • 57
  • 80
9

I believe the error message is a warning for simulators hence it is not important.

I think your issue is a bug in your code. Should be something like this:

let path = Bundle.main.path(forResource: "menu_background", ofType:"mp3") audioPlayer = try AwesomeAudioPlayer(contentsOf: URL(fileURLWithPath: path!)) ---> breakpoint

Where the forResource is the name of the file and ofType is the extension. You can also use Bundle.main.url which will look like this:

let path = Bundle.main.url(forResource: "menu_background", withExtension:"mp3") audioPlayer = try AwesomeAudioPlayer(contentsOf: URL(fileURLWithPath: path!)) ---> breakpoint

Here2Huynh
  • 91
  • 4
7

I think it has to do with the AVAudioPlayer going out of scope before the simulator device is able to queue up the sound and play it...or something along those lines. I'm brand new to Swift and I have zero experience with iOS APIs.

Here's what I discovered after experimenting with the placement of:

var player: AVAudioPlayer!

The sound will either PLAY or NOT PLAY depending on the placement of the line above.

Regardless, the following error will always occur on my Simulator devices:

AddInstanceForFactory: No factory registered for id

(I'm on a Late 2013 MacBook Pro + MacOS Catalina + Xcode 11.7 and I tested this on an iPhone SE 2 simulator running iOS 13.7)

Although the error keeps occurring, I'm happy that I at least got the sound to play on the Simulator...

Error occurs and sound DOES NOT play...

import UIKit
import AVFoundation

class ViewController: UIViewController {
    func playTheSound() {
      // initializing the "player" variable within the "playTheSound()" function will cause the "AddInstanceForFactory: No factory registered for id" error and the sound WILL NOT play on the simulator
      var player: AVAudioPlayer! 

      let url = Bundle.main.url(forResource: "funny_sound", withExtension: "mp3")

      player = try! AVAudioPlayer(contentsOf: url!)
      player.play()     
    }
}

Error occurs and sound DOES play

import UIKit
import AVFoundation

class ViewController: UIViewController {
  // initializing the "player" variable at the class level will still cause the "AddInstanceForFactory: No factory registered for id" error to happen, but the sound will still play on the simulator
  var player: AVAudioPlayer! 

  func playTheSound() {
    let url = Bundle.main.url(forResource: "funny_sound", withExtension: "mp3")

    player = try! AVAudioPlayer(contentsOf: url!)
    player.play()       
  }
}
seanbuild
  • 71
  • 1
  • 2
  • 2
    I would strongly advice to use `var player: AVAudioPlayer?` instead of `var player: AVAudioPlayer!` – Daniel Mar 19 '21 at 11:14
2

In my case totally different...

The issue is solved after doing... var player = AVAudioPlayer()

It didn't work in... var player:AVAudioPlayer!

(Xcode 12.2)

  • `var player:AVAudioPlayer!` works fine if you initialize its value at the proper place, like in `viewDidLoad` for example, or even in your method just before it is used. – Eric Aya Jan 28 '21 at 14:04
2

I think I have solved the issue (hard to prove a negative, since the error was sporadic). I have my AVAudioPlayer in a separate class:

import SwiftUI
import AVFoundation
var audioPlayer: AVAudioPlayer?

class AudioManager {
    
    var userSettings = UserSettings()
    func playSoundEffect(_ assetName:String) {
        
        if !userSettings.soundDisabled {
            guard let audioData = NSDataAsset(name: assetName)?.data else {
                fatalError("Unable to find asset \(assetName)")
            }
            
            do {
                audioPlayer = try AVAudioPlayer(data: audioData)
                audioPlayer?.prepareToPlay()
                audioPlayer?.play()
            } catch {
                print(error.localizedDescription)
            }
        }
//        audioPlayer?.stop()
    }
    func stopPlay() {
        audioPlayer?.setVolume(0.0, fadeDuration: 0.25)
    }
    
}

Then, in the SwiftUI views where I need to play audio, be certain to import AVFoundation.

import SwiftUI
import AVFoundation

struct MyView: View {
    ...
    let audioManager = AudioManager()
    ...
}
1

I have found the solution in another stackoverflow thread about AVAudioPlayer, here it is :

If you initialize your AVAudioPlayer like

var wrongMusicPlayer: AVAudioPlayer = AVAudioPlayer() OR wrongMusicPlayer = AVAudioPlayer() in any method then please remove it and just Declare like var wrongMusicPlayer: AVAudioPlayer!.

anasmi
  • 2,562
  • 1
  • 13
  • 25
Francois
  • 66
  • 1
  • 42
    NOT the solution, unfortunately. – Phil Dec 01 '19 at 07:31
  • 8
    has anybody found a solution to this yet? having the same problem and this accepted answer doesn't work for me – alionthego Jan 27 '20 at 02:51
  • 9
    @alionthego Although I haven't dived deep into this error yet, what I've found is that it's an error you get when you run using simulator. Didn't get the error on device. – Roohul May 23 '20 at 00:46
1

You could use do/catch to avoid the crash and examine the exception, or ignore the issue all together with try?. For me, this was only showing up in the simulator when calling:

try? AVAudioSession.sharedInstance().setCategory(.playback)

I think it's safe to ignore it in my case.

pulse4life
  • 1,006
  • 10
  • 13
1

Similar problem - using Preferences > Sound > Output different than Logictech USB Headset led to app that executed perfect & played sound w/o problems. Was never a problem outside of the Simulator - code on a device worked fine.

TL;DR This is an especially gnarly & obtuse problem. I also encountered an issue with an unexpected: No factory registered for id

After a short wait, it was also followed by several other console-reported errors, including: HALC_ProxyIOContext::IOWorkLoop: the server failed to start, Error: AQMEIO.cpp:182:AwaitIOCycle: timed out after 15.000s CA_UISoundClient.cpp:244:StartPlaying_block_invoke: CA_UISoundClientBase::StartPlaying: AddRunningClient failed

error when trying to play sound. Xcode 12.2, Mac OSX Catalina 10.15.7, simulator running iOS 14.2. Code had previously worked on prior versions of the simulator. Always had proper import of AVFoundation & declaration of AVAudioPlayer class property as: var audioPlayer: AVAudioPlayer!

In my case it seems to be related to audio drivers in Mac OSX. This problem ONLY happened when I had Mac System Preferences > Sound > Output set to my Logitech USB Headset. The code otherwise worked when: played through my LG Monitor, played through my AirPods Pro, and when executing outside the simulator and on a device > my iPhone 11 Pro.

Spent over an hour trying to diagnose the issue before restarting & noticing audio working when headset wasn't used for output. Switching the Preferences > Sound > Output settings to something other than the Logitech USB headset immediately fixed the problem in all other playback instances.

Not even sure where to file this issue as an Apple bug, but hoping it helps someone. Am assuming it's an OS-specific issue & not one that'll result in a problem w/the app or code.

Gallaugher
  • 1,593
  • 16
  • 27
0

I found a solution in Here2Huynh's answer.

let path = Bundle.main.path(forResource: "menu_background.mp3", ofType:nil)! 

here change

ofType:nil

to

ofType: "mp3"

and then again.There is no error message when using the emulator.

By the way, I am using the swiftui project

icebarley
  • 31
  • 3
0

Simulator -> I/O -> Keyboard -> uncheck all enter image description here

Salvador
  • 61
  • 1
  • 8
0

It's a warning related to the simulator indeed. To silence it (and play sound only on real devices):

#if !targetEnvironment(simulator)
    // play sound here
#endif
oneshot
  • 591
  • 1
  • 5
  • 27