Search results for

Popping Sound

19,349 results found

Post

Replies

Boosts

Views

Activity

Advanced audio in SpriteKit
Hi! I'm doing a project where I need to do some more advanced audio features, and I'm wondering how others approach this topic. In a previous project I didn't find enough ready-made audio features in SpriteKit, so I kind of just hacked around to get what I needed. I was juggling mainly between playing sounds with SKAction and AVAudioPlayer. Now I've been asked to implement dynamic filtering to a group of sounds, such as low-pass filtering, and I'm trying to assess if this is even possible in SpriteKit.So I wanted to ask if anyone has any experiences with advanced audio? If so, did AVAudioPlayer fit your needs? Does SKAudioNode add some relevant stuff? I'm a total noob about audio stuff, so don't take everything I say as fact 😀.
4
0
656
Dec ’16
Is UIBackgroundModes audio required for WKWebView to play audio/airplay etc in the background?
I know WKWebview is in another process from the main app. My question is is the UIBackgroundModes audio entry in Info.plist required on the main app for WKWebview to play audio/video/airplay in the background? Or is simply setting WKWebViewConfiguration allowsAirPlayForMediaPlayback and allowsPictureInPictureMediaPlayback enough? I recall having issues with background audio from WKWebView on older versions of iOS a couple years ago so I added the audio entry to the Info.plist.... but I just removed the key from the Info.plist and background audio from WKWebview seems to be working fine...maybe audio background mode is not required? Or does it only seem to be working because my app is attached to the debugger? Or is this a bug?
1
0
1.4k
Aug ’22
Audio MIDI Set Up wont load
Hi - I've been using logic for a few years now. Three days ago I whilst opening it, a pop up said MIDICORE was not working and I haven't been able to fix it since. I read online that booting up in safe mode + opening audio MIDI set up would fix it, thing is audio MIDI set up wont load up. Anyone knows how I can fix it? I am on the verge of tears as I cannot seam to find any information online about audio MIDI set up not opening. And I cannot seam to fix the MIDI issue without it. Thanks!
0
0
232
Feb ’25
No Audio
Hi All,I've read the other comments but haven't figured this out. Is it possible to play audio to the watch speaker as of beta 1? I can get the mp3 file to tell me I need an external bluetooth speeker on the simulator but my watch just crashes. I just can't figure it out and it looks like others can't fix it either. Then I see a hack for nanoFlappy that plays all audio to the watch speaker...***? I have tried the code on other post but it just doesn't work. So if anyone has code (Swift) that actually works, I would appreciate seeing it...Thanks.
6
0
591
Jun ’15
iOS 15.1 - Notification sound is not playing when only .sound option
We have an issue when we tried to fire only the sound in the push notification in iOS 15. Sound does not play when UNNotificationPresentationOptions is only set as sound. [.sound] (see snippet code attached) It seems iOS 15 silence this. It was working before in iOS 14 but stopped working for iOS 15. The following StackOverflow's URLs recommend playing a sound with AudioServicesPlaySystemSound. https://stackoverflow.com/questions/69023854/ios-15-notification-sounds-are-not-playing-for-foreground-notifications https://stackoverflow.com/questions/69277080/before-ios-15-i-was-able-to-send-sound-only-local-notification-now-i-have-to-s Any tips/recommendations on how to resolve this? Does anyone know if Apple does not allow this anymore? func taskNotificationCenter(_ center: TaskNotificationCenterType, willPresent notification: UNNotificationType, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { compl
2
0
3.0k
Nov ’21
USB Audio
Latest 10.11 beta, I've discovered that USB Audio degrades over time to really rough with a lot of drops. Unplugging and reattaching the device clears the problem for a while, but then it goes ****** again.
2
0
484
Jun ’15
Play Audio for a Metronome
Hi, I am looking for a good way to play sounds at a high frequency. At the moment I am using the AVAudioEngine, and create a couple AVAudioPlayerNode and for each sound I need to play I create a AVAudioPCMBuffer. When the app needs to play a sound, I get the correct AVAudioPCMBuffer for the sound and use the first available AVAudioPlayerNode and feed it to the buffer. The timing for a metronome app has to be very precise because if it's of by about 16ms the user can hear that it is not playing had the right interval. For low speeds this is working without any problems, but at high speeds it is getting worse. Maybe anyone has an idea on how I can improve my method. Its a Plugin for Flutter. import AVFoundation class FastSoundPlayer { private var audioPlayers: [SoundPlayer?] = [] private var sounds: [String: Sound] = [:] private var engine = AVAudioEngine() let session = AVAudioSession.sharedInstance() init() { do { try session.setCategory(AVAudioSession.Cat
1
0
89
Mar ’25
Audio scratch problem
Hello, I have a question... I own a MacBook Pro 14'' M1 MAX and I have a problem with the audio, practically when I try to use AppleTV+ with the built-in audio on my Mac, the audio starts scratching. I don't know if it's a Codec problem or something else, is there anyone with my same problem or anyone who can help me? Thank you very much!
1
0
535
Jan ’22
Mutichannel audio decoding
Goodmorning everyone, I am having a problem regarding deconding of multichannel .aac audio files (number of channels = 16) in Safari desktop. I am using the Web Audio API library with input the video tag or the audio tag. Processing with this library outputs 2 channels. With other browsers (e.g. Chrome) the decoding works, while with Safari it doesn't. Do you have any ideas about it? Is there any documentation indicating the maximum number of audio channels? Thanks in advance for your support
0
0
430
Mar ’21
How to avoid pop-up message on VPN connection?
Hi, I've created a IPSec VPN profile with Apple Configurator 2. Installation and controlling [ means starting and stopping ] IPSecVPN service from my Mac OS app. My question is can i configure to suppress/avoid the VPN authentication failure pop-up messages in any way. I'm using scutil --nc command to start and stop the service from my Mac OS app. Thanks in advance.
0
0
382
Jan ’18
How to record audio in background
How can i record an audio when the app is in background? I tried on android and its working but on IOS its only recording on the foreground Its an Expo app and am using Expo Av library I have already allowed the permissions and set the UIBackgroundModes with audio infoPlist: { ... UIBackgroundModes: [ audio ] } And in the code also await Audio.setAudioModeAsync({ allowsRecordingIOS: true, playsInSilentModeIOS: true, staysActiveInBackground:true }); but once the app is in background mode it is failing to start recording. Can anyone help me how I can fix this ?
0
0
992
Sep ’23