"Thread1:Fatal error:Unexpectedly found nil while unwrapping an Optional value" - swift

1these are the wav files I used
2I attached a screenshot of where it is throwing this error.
this is what I have right now. I thought I had everything correct. I know it has something to do with using an optional but not sure how to fix it.
import UIKit
import AVFoundation
class SecondViewController: UIViewController
{
var audioPlayer: AVAudioPlayer?
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
do
{
let catSound = Bundle.main.path(forResource: "Cat", ofType: "wav")
let horseSound = Bundle.main.path(forResource: "Horse", ofType: "wav")
let dogSound = Bundle.main.path(forResource: "Dog", ofType: "wav")
let raccoonSound = Bundle.main.path(forResource: "Raccoon", ofType: "wav")
audioPlayer = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: catSound!))
audioPlayer = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: horseSound!))
audioPlayer = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: dogSound!))
audioPlayer = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: raccoonSound!))
}
catch
{
print(error)///
}
}
#IBAction func cat(_ sender: Any)
{
audioPlayer?.play()
}
#IBAction func horse(_ sender: Any)
{
audioPlayer?.play()
}
#IBAction func dog(_ sender: Any)
{
audioPlayer?.play()
}
#IBAction func raccoon(_ sender: Any){
audioPlayer?.play()
}
}

As #Chris and #inexcitus mentioned, your complete code would look like.
class SecondViewController: UIViewController {
var audioPlayer: AVAudioPlayer?
override func viewDidLoad() {
super.viewDidLoad()
}
#IBAction func cat(_ sender: Any)
{
if let catSound = Bundle.main.path(forResource: "cat", ofType: "wav") {
audioPlayer = try? AVAudioPlayer(contentsOf: URL(fileURLWithPath: catSound))
audioPlayer?.play()
}else {
print("Cat File is missing")
}
}
#IBAction func horse(_ sender: Any)
{
if let horseSound = Bundle.main.path(forResource: "horse", ofType: "wav") {
audioPlayer = try? AVAudioPlayer(contentsOf: URL(fileURLWithPath: horseSound))
audioPlayer?.play()
}else {
print("Horse File is missing")
}
}
#IBAction func dog(_ sender: Any)
{
if let dogSound = Bundle.main.path(forResource: "dog", ofType: "wav") {
audioPlayer = try? AVAudioPlayer(contentsOf: URL(fileURLWithPath: dogSound))
audioPlayer?.play()
}else {
print("Dog File is missing")
}
}
#IBAction func raccoon(_ sender: Any)
{
if let raccoonSound = Bundle.main.path(forResource: "raccoon", ofType: "wav") {
audioPlayer = try? AVAudioPlayer(contentsOf: URL(fileURLWithPath: raccoonSound))
audioPlayer?.play()
}else {
print("Raccoon File is missing")
}
}}

One of your resources is nil.
You should check if your resoruce is nil before (forcefully) unwrapping it:
if let catSound = Bundle.main.path(forResource: "Cat", ofType: "wav")
{
audioPlayer = try? AVAudioPlayer(contentsOf: URL(fileURLWithPath: catSound))
}
Do this for every resource and use the debugger to see which one is nil.

Case sensitivity matters.
The files are lowercased ("cat") but the parameter strings in the code are uppercased ("Cat"). The parameter string and the file name must match exactly.
Your code is not very useful anyway because it overwrites the audio player instance three times in viewDidLoad.
A more efficient solution is to create a method to load the file and play the sound and to use the URL related API of Bundle.
The force unwrapping is fine because all files must be in the bundle at compile time. A design mistake (file is missing or name is misspellt) can be fixed immediately.
class SecondViewController: UIViewController
{
var audioPlayer: AVAudioPlayer!
#IBAction func cat(_ sender: Any) {
playSound(withName: "cat")
}
#IBAction func horse(_ sender: Any) {
playSound(withName: "horse")
}
#IBAction func dog(_ sender: Any) {
playSound(withName: "dog")
}
#IBAction func raccoon(_ sender: Any){
playSound(withName: "raccoon")
}
func playSound(withName name : String) {
let sound = Bundle.main.url(forResource: name, withExtension: "wav")!
audioPlayer = try! AVAudioPlayer(contentsOf: sound)
audioPlayer.play()
}
}

Related

AVAudioPlayer is not playing in swift. How to fix it?

In my app I want to integrate a AVAudioPlayer in my app. But I can`t here anything.
Thats my code:
import UIKit
import AVFoundation
class NotenAnsicht: UIViewController{
var PlaybackPlayer:AVAudioPlayer = AVAudioPlayer()
override func viewDidLoad() {
super.viewDidLoad()
PlaybackAudioAufsetzen()
}
func PlaybackAudioAufsetzen(){
do{
let audioPath = Bundle.main.path(forResource: "song", ofType: "mp3")
try PlaybackPlayer = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
print("Song set")
}
catch{
print("there was an Error")
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
#objc func PlaybayStarten(sender:UIButton){
PlaybackPlayer.play()
PlaybackPlayer.volume = 1
print(PlaybackPlayer.isPlaying)
print("Song should play")
}
}
I have no idea where the problem is. All functions get called properly. And the audioplayer is not defined locally. After PlaybackPlayer.play(), PlaybackPlayer.isPlaying returns true. I just can`t here anything.
Do you have any idea where the problem is?
set try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback) and try AVAudioSession.sharedInstance().setActive(true) in your do block before setting audioPath.
your code should be look like that.
func PlaybackAudioAufsetzen(){
do{
let audioPath = Bundle.main.path(forResource: "song", ofType: "mp3")
/// this code will make this app ready to takeover the device audio
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
try AVAudioSession.sharedInstance().setActive(true)
try PlaybackPlayer = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
print("Song set")
}
catch let error {
print(error.localizedDescription)
}
}

How to make a function play different sounds in Swift

I have 10 different buttons and each button has a unique tag associated with it. All buttons are linked to the same IBAction. I have the function to play different different sounds according to the tag associated with the particular button that is clicked.
import AVFoundation
var myAudio: AVAudioPlayer!
let path = Bundle.main.path(forResource: "sound1", ofType: "wav")!
let url = URL(fileURLWithPath: path)
do {
let sound = try AVAudioPlayer(contentsOf: url)
myAudio = sound
sound.play()
} catch {
//
}
}
do like
#objc func yourbtnActionName(_ sender : UIButton){
switch sender.tag {
case 1:
commonSoundCode(name: "sound1")
break
case 2:
commonSoundCode(name: "yoursecondSoundname")
break
default:
break
}
}
then common method as
func commonSoundCode(name: String){
let path = Bundle.main.path(forResource: name, ofType: "wav")!
let url = URL(fileURLWithPath: path)
do {
let sound = try AVAudioPlayer(contentsOf: url)
myAudio = sound
sound.play()
} catch {
//
}
}
option 2
if your sound files are in the same sequence, for e.g (sound1.wav, sound2.wav......, sound10.wav) then call like
#objc func yourbtnActionName(_ sender : UIButton){
let path = Bundle.main.path(forResource: "sound\(sender.tag)", ofType: "wav")!
let url = URL(fileURLWithPath: path)
do {
let sound = try AVAudioPlayer(contentsOf: url)
myAudio = sound
sound.play()
} catch {
//
}
}
You need to simply play sounds according to the UIButton's tag.
#IBAction func playsound(_ sender: UIButton)
{
switch sender.tag
{
case 0:
//Sound for Button with tag=0
case 1:
//Sound for Button with tag=1
default:
//Default Sound
}
}
In the above code, add more cases according to your UIButton tags.
Please add some more code for a bit more clarity around your question.
import UIKit
//Mark: Do import AVFoundation is must here!
import AVFoundation
class ViewController: UIViewController {
//Mark: Create variable for AVAudioEngine! and AVAudioplayermode!
var engine: AVAudioEngine!
var audioPlayerNode : AVAudioPlayerNode!
//Mark: Create Variable for each tone as AVAudiofile!
var Cs:AVAudioFile!
var Ds:AVAudioFile!
var Es:AVAudioFile!
var Fs:AVAudioFile!
var Gs:AVAudioFile!
var As:AVAudioFile!
var Bs:AVAudioFile!
override func viewDidLoad() {
super.viewDidLoad()
// Mark: Load engine
engine = AVAudioEngine()
// Mark : Mention each sound
Cs = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "C", ofType: "wav")!))
Ds = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "D", ofType: "wav")!))
Es = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "E", ofType: "wav")!))
Fs = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "F", ofType: "wav")!))
Gs = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "G", ofType: "wav")!))
As = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "A", ofType: "wav")!))
Bs = try? AVAudioFile(forReading: NSURL.fileURL(withPath:
Bundle.main.path(forResource: "B", ofType: "wav")!))
}
//Mark: create function(playSound) for connect AVAudioEngine and AVAudioplayermode for playing audio when button clicked
func playSound(audioFile: AVAudioFile) {
audioPlayerNode = AVAudioPlayerNode()
if(audioPlayerNode.isPlaying){
audioPlayerNode.stop()
}
if(engine.isRunning){
engine.stop()
engine.reset()
}
engine.attach(audioPlayerNode)
engine.connect(audioPlayerNode, to: engine.mainMixerNode, format: audioFile.processingFormat)
audioPlayerNode.scheduleFile(audioFile, at: nil, completionHandler: nil)
// Start the audio engine
engine.prepare()
try! engine.start()
audioPlayerNode.play()
}
//Mark: create required button for actions to connect function(playSound) and mention each sound to button
#IBAction func btnC(_ sender: UIButton) {
playSound(audioFile: Cs)
}
#IBAction func btnD(_ sender: UIButton) {
playSound(audioFile: Ds)
}
#IBAction func btnE(_ sender: UIButton) {
playSound(audioFile: Es)
}
#IBAction func btnF(_ sender: UIButton) {
playSound(audioFile: Fs)
}
#IBAction func btnG(_ sender: UIButton) {
playSound(audioFile: Gs)
}
#IBAction func btnA(_ sender: UIButton) {
playSound(audioFile: As)
}
#IBAction func btnB(_ sender: UIButton) {
playSound(audioFile: Bs)
}
}

Does anybody know how to fix Do-Try-Catch error code= EXC_1386_INVOP in swift?

I'm writing calculator app in swift when I tried to add audio file I put this above the calc programming:
var player:AVAudioPlayer = AVAudioPlayer()
#IBAction func play(_ sender: UIButton)
{
player.play()
}
and down below in view did load I put this. Please, any help will be great!
override func viewDidLoad() {
super.viewDidLoad()
//Do any additional setup after loading the view, typically from a nib.
do
{
let audioPath = Bundle.main.path(forResource: "song", ofType: "mp4")
try player = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
}
catch
{
// error
abort()
}
}
you are retreiving path Not the URL... secondly your do try Syntax is wrong... try this code
do
{
let audioPath = Bundle.main.url(forResource: "song", withExtension: "mp4")
player = try AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
}
catch
{

Create a function from code

How do I create a function from this code in swift3?
I have a button which is pressed then plays this sound "push"
How can it be simplified when there are lots of buttons? I don't want to add all codes to every button.
var myAudio = AVAudioPlayer()
// Add sound
do {
try myAudio = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath:
Bundle.main.path(forResource: "push", ofType: "mp3")!) as URL)
} catch {
NSLog("No file!")
}
//call the sound
myAudio.play()
I made this change
func play(name : String){
do {
try myAudio = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath:
Bundle.main.path(forResource: name, ofType: "mp3")!) as URL)
} catch {
NSLog("No file!")
}
}
#IBAction func buttonFirst(_ sender: UIButton) {
play(name: "push")
myAudio.play()
}
#IBAction func buttonSecond(_ sender: UIButton) {
play(name: "second")
myAudio.play()
}
I got this output:
2017-07-25 16:13:23.270349+0100 sound[1728:933024] [aqme] 254: AQDefaultDevice (173): skipping input stream 0 0 0x0
Is that a problem?
I think you forgot the prepare
var audioPlayer = AVAudioPlayer()
let sound = URL(fileURLWithPath: Bundle.main.path(forResource: "sound", ofType: "mp3")!)
try! AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
try! AVAudioSession.sharedInstance().setActive(true)
try! audioPlayer = AVAudioPlayer(contentsOf: sound)
audioPlayer.prepareToPlay()
audioPlayer.play()
You can use it in the following way
var myAudio : AVAudioPlayer?
func playSound(){
let path = Bundle.main.path(forResource: "push", ofType:"mp3")!
let url = URL(fileURLWithPath: path)
do {
let sound = try AVAudioPlayer(contentsOf: url)
self.myAudio = sound
sound.numberOfLoops = 1
sound.prepareToPlay()
sound.play()
} catch {
print("error loading file")
// couldn't load file :(
}
}
Furthermore you can use SwiftySound that lets you play sounds easily in Swift 3.
for example
Sound.play(file: "push.mp3")

buttons are not playing the sound. I have included the wav file

The buttons are not playing the sound?
How can you make the coding more correct?
import UIKit
import AVFoundation
//var audioPlayer: AVAudioPlayer!
class ViewController: UIViewController {
var audioPlayer: AVAudioPlayer!
override func viewDidLoad() {
super.viewDidLoad()
let path = Bundle.main.path(forResource: "BtnSon", ofType: " WAV")
let soundURL = URL(fileURLWithPath: (path)!)
do {
try audioPlayer = AVAudioPlayer(contentsOf: soundURL)
audioPlayer.prepareToPlay()
} catch let err as NSError {
print(err.debugDescription)
}
}
#IBAction func numberPressed(Sender: UIButton){
playSound()
}
func playSound(){
if audioPlayer.isPlaying {
audioPlayer.stop()
}
audioPlayer.play()
}
}
Try this:
import UIKit
import UIKit
import AVFoundation
//var audioPlayer: AVAudioPlayer!
class ViewController: UIViewController {
var audioPlayer: AVAudioPlayer!
override func viewDidLoad() {
super.viewDidLoad()
//--------------------------------------------------------> No space before _W
guard let soundURL = Bundle.main.url(forResource: "BtnSon", withExtension: "WAV") else {
fatalError("You have failed to add 'BtnSon.WAV' in your app bundle.")
}
do {
try audioPlayer = AVAudioPlayer(contentsOf: soundURL)
audioPlayer.prepareToPlay()
} catch let err as NSError {
print(err.debugDescription)
}
}
#IBAction func numberPressed(_ sender: UIButton){
playSound()
}
func playSound(){
if audioPlayer.isPlaying {
audioPlayer.stop()
}
audioPlayer.play()
}
}
And be careful, iOS's file system is case-sensitive.