Search results for

Popping Sound

19,350 results found

Post

Replies

Boosts

Views

Activity

system sound for remote notification.
I am displaying the list of sound , retrieved from /System/Library/Audio/UISounds.When user select any sound from the app, I send the name of sound to the server. When server send the push notification , it configure that name in push notification, Still Device play the default system sound.What do I have to do so that system play selected system sound on push notification ? ( WhatsApp is giving this feature).
0
0
429
Jun ’16
Audio Unit Extensions using other audio units
I'm looking into how to package an Audio Unit consisting of several other audio units. I came up with the following solution, calling the AUAudioUnit render function explicitly from the AUInternalRenderBlock. But the audio unit doesn't seem to run, since mData inside outputData remains uninitialized after the render function has been triggered.Any suggestions?From myAudioUnit.m inheriting from AUAudioUnit:- (AUInternalRenderBlock)internalRenderBlock { return ^AUAudioUnitStatus(AudioUnitRenderActionFlags *actionFlags, const AudioTimeStamp *timestamp, AVAudioFrameCount frameCount, NSInteger outputBusNumber, AudioBufferList *outputData, const AURenderEvent *realtimeEventListHead, AURenderPullInputBlock pullInputBlock) { [_eqAudioUnit.audioUnit renderBlock](actionFlags, timestamp, frameCount, outputBusNumber, outputData, pullInputBlock); return noErr; }; }_eqAudioUnit is an instance of EQAudioUnit (ensuring that allocateRenderResources is invoked before triggering the renderBlock):publi
0
0
574
Sep ’16
Start looped audio from background?
I'm trying to do something similar to Tile.app. When it shows a notification, it plays a sound. That seems simple enough-- use UILocalNotification and include the sound file name. But local notifications limit sounds to no more than 30 seconds, and Tile's sound keeps playing for a whole lot longer than that. I expect it's looping, and it continues until I can't stand the noise any more.The sound also plays even if the phone's mute switch is on, which doesn't happen with local notifications.I thought maybe I could post a text-only local notification and have my app play the sound. But using AVAudioPlayer, the play method returns NO and the sound doesn't play.I've seen it suggested that this is by design, that apps aren't supposed to be able to play sounds from the background-- only continue sound that's already playing. I'd accept that reasoning except that Tile does it, so it's obviously possible. One suggested workaround is to l
0
0
443
May ’16
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
405
Mar ’25
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
152
Oct ’15
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
958
Jun ’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?
0
0
906
Nov ’23
Sound emission during an XCUITest
Greetings everyone, part of my XCUITest includes noise recognition and running voice commands. However, I noticed that during my XCUITests on my real device, the sound emission is completely blocked, means that I can't hear or produce any sound while testing. I haven't tested it on any simulator yet, but would need a solution to this issue for my real device testing anyway. Any takes on this? Thanks in advance
0
0
441
May ’23