Search results for

“Popping Sound”

20,619 results found

Post

Replies

Boosts

Views

Activity

realtime audio processing
Hi Apple Developer Community,Im realy new to ios dev and i have a problem with the question where to start and with witch framework.I want to develop a small app for realtime audio processing with fft.For fft i want use the accelerate framework.But how can a get the input from the mic and use this in the accelerate framework?Which framework is for this? AVFoundation(AVAudioEnging or AVAudioSession ...) or the Audio Toolkit thanks for help
0
0
171
Oct ’15
Auto Click a Print System Pop Up Window
We have a software product that sends prints to a printer driver with the driver settings pre-saved to a file and applied at the time of printing. For reasons outside the scope of this question in some specific cases we need to open a pop up window for the OEM driver for the settings to be accepted by the OEM driver. In these cases the user has to click Print a second time, not ideal. Our dev team is having a difficult time automatically clicking that second Print button so the user doesn't have to. The goal is the window would pop up for a fraction of a second and the file is sent off right away with only one click by the user. I have personally tried playing around with AppleScript to accomplish this but have not been able to do so. The application itself is written with QT and here is the info regarding the button in question from Accessibility Inspector: Does anyone have any knowledge how to auto press this button?
0
0
985
Nov ’23
UI Sounds visionOS
Hi, Looking to get secondary tap sound in UI, When in menus on visionOS there is a secondary sound that isn't a button sound when you tap on elements not - does anyone know how to add this sound (it's also in settings when you tap on any element? Currently I am generating a similar field as in the appstore settings but the onTapGesture doesn't make a system sound. Thanks! let title: String let subtitle: String? let action: (() -> Void)? @State private var isHovered = false init(title: String, subtitle: String? = nil, action: (() -> Void)? = nil) { self.title = title self.subtitle = subtitle self.action = action } var body: some View { HStack { VStack(alignment: .leading, spacing: 2) { Text(title) .font(.body) .foregroundColor(.primary) if let subtitle = subtitle { Text(subtitle) .font(.caption) .foregroundColor(.secondary) } } Spacer() Image(systemName: chevron.right) .font(.system(size: 12, weight: .medium)) .foregroundColor(.secondary) } .padding(.horizonta
0
0
133
Oct ’25
WebM audio playback
Is it possible to play WebM audio on iOS? Either with AVPlayer, AVAudioEngine, or some other API? Safari has supported this for a few releases now, and I'm wondering if I missed something about how to do this. By default these APIs don't seem to work (nor does ExtAudioFileOpen). Our usecase is making it possible for iOS users to play back audio recorded in our webapp (desktop versions of Chrome & Firefox only support webm as a destination format for MediaRecorder)
1
0
733
Mar ’25
Reply to Any update during WWDC26 on UWB direction-finding for 3rd party devices using the NI framework, etc?
Hey @makerdude, I'm not as familiar with Nearby Interaction and the iOS side of things, but I did find that new in iOS 27.0 is Bluetooth Channel Sounding via the new init(bluetoothChannelSoundingIdentifier:previousBluetoothIdentifier:). Since your question has the visionOS tag, I wanted to pop in to point out the improvements this year to object tracking on visionOS. Take a look at the session, Explore enhancements to visionOS object tracking to learn more about creating your own custom accessory to track. Hope this helps, Michael
Topic: Community SubTopic: Apple Developers Tags:
Jun ’26
How to disable AirPods connection sound
When playing a video in AVPlayer, when I put the AirPods in my ears, my player stops playing sound (but doesn't stop playing video), and the device is playing the system AirPods connection sound. And only after this sound ends, my player starts to play video's sound to the AirPods.How to disable that AirPods' system sound and change output route to the AirPods immediately, like in the Podcasts and YouTube iOS apps?
0
0
1.5k
Apr ’19
Audio Workgroup Availability
Just saw the Audio Workgroup WWDC20 video. Thanks for bringing this up as it reduces uncertainty for most real-time audio Apps. I am wondering about the availability of Workgroups. The speaker mentions Fall 2020. Is this already part of iOS 14? Is this only iOS 14+ feature or is there backward compatibility? thanks in advance, Arshia Cont
2
0
1k
Jun ’20
realtime audio processing
Hi Apple Developer Community,Im realy new to ios dev and i have a problem with the question where to start and with witch framework.I want to develop a small app for realtime audio processing with fft.For fft i want use the accelerate framework.But how can a get the input from the mic and use this in the accelerate framework?Which framework is for this? AVFoundation(AVAudioEnging or AVAudioSession ...) or the Audio Toolkit thanks for help
Replies
0
Boosts
0
Views
171
Activity
Oct ’15
How to make windows pop-up to remind users of test time of this app?
How to make windows pop-up to remind users of test time of this app? For exemple,pop-up windows to remind users when there are only 5 days left in the test time. Please help me!
Replies
0
Boosts
0
Views
338
Activity
Jul ’20
Auto Click a Print System Pop Up Window
We have a software product that sends prints to a printer driver with the driver settings pre-saved to a file and applied at the time of printing. For reasons outside the scope of this question in some specific cases we need to open a pop up window for the OEM driver for the settings to be accepted by the OEM driver. In these cases the user has to click Print a second time, not ideal. Our dev team is having a difficult time automatically clicking that second Print button so the user doesn't have to. The goal is the window would pop up for a fraction of a second and the file is sent off right away with only one click by the user. I have personally tried playing around with AppleScript to accomplish this but have not been able to do so. The application itself is written with QT and here is the info regarding the button in question from Accessibility Inspector: Does anyone have any knowledge how to auto press this button?
Replies
0
Boosts
0
Views
985
Activity
Nov ’23
How do you add a interactive audio player?
How do you add a audio player to a swift playgrounds app project? How would you be able to add local audio along in the backend along with a interactive audio player in the frontend??? Thanks!
Replies
1
Boosts
0
Views
848
Activity
Apr ’22
UI Sounds visionOS
Hi, Looking to get secondary tap sound in UI, When in menus on visionOS there is a secondary sound that isn't a button sound when you tap on elements not - does anyone know how to add this sound (it's also in settings when you tap on any element? Currently I am generating a similar field as in the appstore settings but the onTapGesture doesn't make a system sound. Thanks! let title: String let subtitle: String? let action: (() -> Void)? @State private var isHovered = false init(title: String, subtitle: String? = nil, action: (() -> Void)? = nil) { self.title = title self.subtitle = subtitle self.action = action } var body: some View { HStack { VStack(alignment: .leading, spacing: 2) { Text(title) .font(.body) .foregroundColor(.primary) if let subtitle = subtitle { Text(subtitle) .font(.caption) .foregroundColor(.secondary) } } Spacer() Image(systemName: chevron.right) .font(.system(size: 12, weight: .medium)) .foregroundColor(.secondary) } .padding(.horizonta
Replies
0
Boosts
0
Views
133
Activity
Oct ’25
WebM audio playback
Is it possible to play WebM audio on iOS? Either with AVPlayer, AVAudioEngine, or some other API? Safari has supported this for a few releases now, and I'm wondering if I missed something about how to do this. By default these APIs don't seem to work (nor does ExtAudioFileOpen). Our usecase is making it possible for iOS users to play back audio recorded in our webapp (desktop versions of Chrome & Firefox only support webm as a destination format for MediaRecorder)
Replies
1
Boosts
0
Views
733
Activity
Mar ’25
Push notification sound issue
Push notification audio sound working fine in other devices but in two iPad the sounds are not working. Two models in which audio sound is not working are : iPad(MHNF3LL) iPad(MK7M3LL) Both iPad have iOS 15.3.1 version. Is there any particular settings needed in the app to make the custom audio sound audible ?
Replies
0
Boosts
0
Views
524
Activity
Apr ’22
Alarm clock notification sound
Alarm clocks on my iPhone 12 pro is not playing the sound I chosE to wake me up. It plays the default sound. Even though it does show the sound I chose.
Replies
0
Boosts
0
Views
242
Activity
Dec ’20
Reply to Any update during WWDC26 on UWB direction-finding for 3rd party devices using the NI framework, etc?
Hey @makerdude, I'm not as familiar with Nearby Interaction and the iOS side of things, but I did find that new in iOS 27.0 is Bluetooth Channel Sounding via the new init(bluetoothChannelSoundingIdentifier:previousBluetoothIdentifier:). Since your question has the visionOS tag, I wanted to pop in to point out the improvements this year to object tracking on visionOS. Take a look at the session, Explore enhancements to visionOS object tracking to learn more about creating your own custom accessory to track. Hope this helps, Michael
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jun ’26
Audio MIDI Setup.app
I have submitted a bug report. Since installing Beta 3 the Audio MIDI Setup.app hangs upon opening.
Replies
3
Boosts
0
Views
484
Activity
Jul ’15
How to disable AirPods connection sound
When playing a video in AVPlayer, when I put the AirPods in my ears, my player stops playing sound (but doesn't stop playing video), and the device is playing the system AirPods connection sound. And only after this sound ends, my player starts to play video's sound to the AirPods.How to disable that AirPods' system sound and change output route to the AirPods immediately, like in the Podcasts and YouTube iOS apps?
Replies
0
Boosts
0
Views
1.5k
Activity
Apr ’19
Sound & Haptics
Is there a way to adjust the sound intensity and make the Haptic prominent programmatically (Swift).
Replies
0
Boosts
0
Views
659
Activity
Apr ’21
Alarm does not sound
I noticed this morning that the alarm went off without sound or haptic vibration. Watch was connected to power with mute enabled.
Replies
1
Boosts
0
Views
705
Activity
Jul ’15
AlarmKit Sound Fade in Possibility?
I'm trying to fade in the sound used in my alarm app but currently there's no way to achieve this since the alarm sound loops and if i add a fade-in at the beginning of my audio, every time the audio loops the fadein happens.
Replies
0
Boosts
0
Views
116
Activity
Oct ’25
Audio Workgroup Availability
Just saw the Audio Workgroup WWDC20 video. Thanks for bringing this up as it reduces uncertainty for most real-time audio Apps. I am wondering about the availability of Workgroups. The speaker mentions Fall 2020. Is this already part of iOS 14? Is this only iOS 14+ feature or is there backward compatibility? thanks in advance, Arshia Cont
Replies
2
Boosts
0
Views
1k
Activity
Jun ’20