Search results for

Popping Sound

19,745 results found

Post

Replies

Boosts

Views

Activity

How to record output audio
I have an app that produce kind of sounds / music taping buttons. I need to record those sounds as I play with the app. I cannot find any doc or example about this issue. I have tried with many approaches but I couldn't get any good result. Any insight ?
0
0
249
Apr ’16
Bluetooth Audio Streaming
Does anyone else have to put their watch into airplane mode when streaming music via Bluetooth. I have already completely factory reset my watch and iPhone and continue to have this issue. If the watch is allowed to be connected while Bluetooth audio streaming is occurring, the audio becomes choppy.
6
0
830
Jun ’16
NSUserNotification no sound ?
(OSX Sierra) The only time a banner or sound shows / plays is when the app is not in focus, when in focus a message still appears in the desktop notification center but I would like at least a sound when it arrives, preferably including the alert banner. Any suggestions ?
0
0
165
Feb ’17
Audio Volume increases by itself
I am using an AVAudioPlayer to play a tick sound once per second in a SwiftUI app. When running the app on an iPhone 16 (18.2.1) the tick sounds increase in volume after a few seconds. This does not happen in the simulator nor on an iPhone SE 2020 (18.1.1).
2
0
294
Jan ’25
Sound issues .
Hi everyone, I’m running an iPhone X on the latest beta of iOS , Is anyone experiencing and sound issues with Apple Airpods ? Connecting fine however all music and podcasts are playing at a very low volume when connected . Thanks C
0
0
658
Apr ’18
Periodic sounds from the background
I appreciate that very similar questions have been asked already, but users of my app have requested certain functionality that simply doesn’t seem possible given the current background mode regulations in iOS. However, many similar apps do have this functionality. So, could it be that I am missing something.Basically, a meditation timer app needs to be able to play bell sounds periodically. Some users, those who meditate for long periods of time for example, like to switch their screens off to preserve the battery charge, and because of that the app needs to play these bell sounds from the background.So far, my solution has been to use Local Notifications to play the sounds as they can be timed accurately and also can play custom sounds.However, there are two issues that my users are unhappy about:1. They want the bell sounds to play even when the silent switch is on (they don't want to be disturbed by other notifications, but do want the meditation bells)2. They want the
0
0
984
Mar ’19
AVAudioEngine no sound from Mac mini built-in audio devices
Hi,I've tried to get some audio things going on a new Mac mini 8,1 macOS 10.14.2 (18C54), and ran into an issue where there is no output from the built-in audio devices when using AVAudioEngine.Xcode prints this while setting up the AVAudioEngine:[AudioHAL_Client] HALC_ShellDriverPlugIn.cpp:104:Open: HALC_ShellDriverPlugIn::Open: opening the plug-in failed, Error: 2003329396 (what)If the built-in speaker or the headphone jack is selected as sound output device, no sound comes out from my AVAudioEngine app.If I select output via DisplayPort or AirPlay, sound is working, even though above error is also being printed.Here's repo with an example project: https://github.com/nsdvr/avaudioengine_basic_outputIt just plays a .wav file when you press the button. My own project uses a custom AudioUnit generator, and its internalRenderBlock is getting called, so the engine seems to be running fine, there's just silence at the physical outputs.Relevant setup code:- (void) setup
7
0
6.4k
Dec ’18
System Sound Path
I have a system sound( eg: Voicemail.caf) to play through AVAudioPlayer.It has different location in iPhone and iPad /System/Library/Audio.Is there a interface to get path of system sound directly rather than browsing through system directories.If not, could we include this sound file in our app bundle(eg. Resources). Are there chances of App rejection/licensing part if we do so?
2
0
2.6k
Jan ’18
web audio api
When I start the app in iOS 13.X, the Audio Context starts in a state of “suspended”.after the user clicked the “play” button (which has ‘onclick’ or ‘touchend’ event to trigger the context.resume() and wait until resolved), the audio context state turning into ‘running’.Then I use the method ‘createMediaElementSource’ and provide the HTML audio element and connect the source to the context.destination, but it doesn’t make any difference, because the audio fails to put out any sound.However, in iOS 12.X it works, so I can assume that the nodes connected properly.Is there something else i should do to make it work on iOS 13?Thanks in advance.
Topic: Safari & Web SubTopic: General Tags:
2
0
1.7k
Nov ’19
Setting Audio Input node for AVAudioEngine causes outside audio to stop
I'm building an app that will allow users to record voice notes. The functionality of all that is working great; I'm trying to now implement changes to the AudioSession to manage possible audio streams from other apps. I want it so that if there is audio playing from a different app, and the user opens my app; the audio keep playing. When we start recording, any third party app audio should stop, and can then can resume again when we stop recording. This is my main audio setup code: private var audioEngine: AVAudioEngine! private var inputNode: AVAudioInputNode! func setupAudioEngine() { audioEngine = AVAudioEngine() inputNode = audioEngine.inputNode audioPlayerNode = AVAudioPlayerNode() audioEngine.attach(audioPlayerNode) let format = AVAudioFormat(standardFormatWithSampleRate: AUDIO_SESSION_SAMPLE_RATE, channels: 1) audioEngine.connect(audioPlayerNode, to: audioEngine.mainMixerNode, format: format) } private func setupAudioSession() { let audioSession = AVAudioSe
0
0
739
Jul ’24
Carplay Audio on Android
Hi, I am looking forward to Integrate Carplay audio to android headunit speakers. Uing Mfi document we were able to implement Carplay and we see carplay app working on the headunit but we dont see the audio working on headunit speakers i.e we are trying to play the audio on the headunit speakers rather than on iphone speakers when connected to Now playing app in carplay and it seems to not work, we dont see any availbale document or sample that talk about this setup. Can you please help us with the support to integrate carplay audio to headunit .
2
0
736
Aug ’19