Search results for

“Popping Sound”

20,421 results found

Post

Replies

Boosts

Views

Activity

AudioToolBox how to make sound repeat
I used these codes so that my app plays sound when I turn on the switch:-(IBAction)play:(id)sender{ if (_soundSwitch.on) { CFBundleRef mainBundle = CFBundleGetMainBundle(); CFURLRef soundFileURLRef; soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @my sound name, CFSTR (wav), NULL); UInt32 soundID; AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID); AudioServicesPlaySystemSound(soundID); }else { //I didn't write any code here } }And it works. But the sound doesn't repeat and if I turn it off, the sound is still playing. Can anyone please tell me how to make the sound repeat and able to stop it when I switch it off or give me sample code? Thanks
1
0
567
Mar ’17
Custom sound for UNMutableNotificationContent | MacOS
Hello, I'm developing a macOS bar app and the goal is to fire a notification. For the notification, I want a specific sound to be played. However, while I see the notification with the wanted title and body, the sound is always the default notification sound , even though I set it to a custom one ! I looked in the Apple Documentation and verified that everything is correct with the sound file. I tried different files (.wav and .caf) and nothing worked. In the code block below, the print(Sound URL: (soundURL)) is seen in the console, which means that the file is indeed in the bundle. Xcode version : 14.3.1 macOS used : Ventura 13.4 Any help would be appreciated : code-block if let soundURL = Bundle.main.url(forResource: mixkit, withExtension: wav) { print(Sound URL: (soundURL)) content.sound = .init(named: UNNotificationSoundName(soundURL.lastPathComponent)) } else { print(Sound URL not found for mixkit.wav) } let trigger = UNTimeIntervalNotificati
0
0
379
Aug ’23
Stream Audio from URL
Hi All. Writing a swift iOS app (target iOS 13.1) and wanted to know if AVAudioPlayer or something else would fit these requirements:- Stream from URL (with auto-reconnect if network hiccups)- Stop and Start button (obviously)- Ability to choose the stop/start button images- Volume slider- Ability to use the switch object to switch between two audio streams (two different URLs)- Audio plays when app is in background- Display title/track metadata- And would really like an audio level meterI pieced together all these (with help of freelancers) when the app was in Obj-C. Now rebuilding in Swift.P.S. I'm an advanced newbie (a notch above newbie) so go easy on me :-)Thank-you!
2
0
5.7k
Oct ’19
UILocalNotifications custom sound ....
Dear developers,Since several days, I'm trying to work with a UILocalNotifications in order to perform tests of a my app. When I created the XCode project, in it i included several sounds file *.mp4a and the app worked perfectly. Succcesively I try to include some audio files, with same extension, in the Documents directory of the app. But writing in the code for example: notif.soundName=[[@%@/Documents/MySound.m4a lastPathComponent] copy];, when the app is in the background modality, the notification sound is the default. Kindly I would like if anyone could help me in solving this problem if it is possible.The UILocalNotification settings are the following: UIUserNotificationType types = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert; UIUserNotificationSettings *mySettings = [UIUserNotificationSettings settingsForTypes:types categories:nil]; [[UIApplication sharedApplication] registerUserNotificationSettings:mySettings]; UILocalNotification
1
0
554
Sep ’15
When is the "default alert sound" played?
Hi there, My app plays the default alert sound when received Remote Push Notification and other timing. I understand the default alert sound plays when received Remote Push Notification. However, it plays at some timing which is not the timing my app received Remote Push Notification. I have no idea what makes the default alert sound play. Is there any trigger to make the default alert sound play other than receiving Remote Push Notification?
1
0
558
Apr ’24
When iOS17 has a bug and cannot record audio, play the audio to a Bluetooth device
let session = AVAudioSession.sharedInstance() do { try session.setCategory(AVAudioSession.Category.playback) try session.setActive(true) //playAndRecord //playback print(session.currentRoute.outputs) } catch { print(error) } when I ssession.setCategory(AVAudioSession.Category.playback) audio play output a2dp ble devices. session.currentRoute.outputs print bellow ` when I ssession.setCategory(AVAudioSession.Category.playAndRecord) output BluetoothA2DPOutput is gone. but it is normal in ios15-16. Is there any solution? I want to record audio and play music at the same time. And the music is output from the Bluetooth speaker
1
0
905
Dec ’23
Visualization of Apple Music audio
Certain apps (eg. DJay) at least seem to have access to audio data from Apple Music streams, either directly or via an indirect dataset for visualization purposes either generated from audio data on the device or delivered from a remote service. Is there any framework provided by Apple or special agreement with Apple that gives access to Apple Music audio data, or sets of visualization meta data, or the ability to run processing of audio data on device or remotely (either on-demand or via preprocessing)?
0
0
96
2w
html5 audio delay in Safari
Where: HTML5What: Audio tag (player) in conjunction with SafariIssue: Performance problemHi guys,There is a noticeable audio delay when using Safari in conjuction with onclick audio events. Specifically: the audio does not sync with the onclick event. The user may click on the icon, link, li etc. and the event takes place but the audio associated with the event does not occur until 1 - 4 secs later. This makes for cumbersom and awkward user experience.Example: https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_audio_autoplay2notice the slight delay after clicking on enable autoplay*no delay in other browsers such as firefox, chrome, etcI am new to development as well as Safari and Apple. Is this normal? or is there some specific code adjustment needed for Safari. (works fine in all other browsers).*Delay is much more pronouced depending on audio event such as games etc.
0
0
2.1k
May ’17
Frustrating pop-up "Cannot Verify Server Identity"
For the last several betas, I keep getting the following error: Cannot Verify Server Identity The identity of domain name cannot be verified. This post won't allow me to type in the server, but it is in the attached picture. I keep assuming it is a beta issue, but it is persisting across betas. Any ideas on how to get rid of this or what is causing it? It also popped up on my new iPhone 14 Pro after synching with the iPhone 13 Pro it replaced.
0
0
353
Sep ’22
Is anybody able to actually record audio using presentAudioRecordingControllerWithOutputURL: on the device? The audio recording interface doesn't pickup audio AT ALL _ on device _.
It works fine in simulator. I can see that it picks up audio.However, when debugging on the device, the blue indicator is stuck to the left and doesn't pickup any audio. iPhone did ask for permission to use Microphone and that was allowed.Did it work for anyone so far?
11
0
3.1k
Jun ’15
No sound after updating.
I have updated my ipad 7th gen to ipados18.3 Beta last week and I realized that there is no sound at all no sound from speakers and no sound from bluetooth devices and no sound from airplay, I've checked google and reddit and alot of research people told me its a software bug, i submitted a bug report and now im still waiting for a bug fix update, youtube dosent work neither spotify aswell their UI stops working when i try to use it, So how long do i have to wait for a bug fix? Thanks apple.
0
0
293
Jan ’25
Audio input on the AppleTV simulator
We're prototyping without the actual hardware, and I'm trying to port a portion of our iOS application to AppleTV. We use Audio Units for recording from the microphone.The Audio Units code seems to work fine. It's querying things like the recording frequency from the simulator, and initializing everything for recording. The hold up is the audio session. The play and record category for AVAudioSession (and all the recording based audio categories) are defined as part of AVFoundation on the AppleTV, but they're not marked as available at runtime.Does the simulator currently not support audio input? Is there a feature to enable it? And I'm assuming the hardware will allow recording for the remote microphone if these APIs are present. Is that the case?
2
0
1.1k
Sep ’15
AudioToolBox how to make sound repeat
I used these codes so that my app plays sound when I turn on the switch:-(IBAction)play:(id)sender{ if (_soundSwitch.on) { CFBundleRef mainBundle = CFBundleGetMainBundle(); CFURLRef soundFileURLRef; soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @my sound name, CFSTR (wav), NULL); UInt32 soundID; AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID); AudioServicesPlaySystemSound(soundID); }else { //I didn't write any code here } }And it works. But the sound doesn't repeat and if I turn it off, the sound is still playing. Can anyone please tell me how to make the sound repeat and able to stop it when I switch it off or give me sample code? Thanks
Replies
1
Boosts
0
Views
567
Activity
Mar ’17
Custom sound for UNMutableNotificationContent | MacOS
Hello, I'm developing a macOS bar app and the goal is to fire a notification. For the notification, I want a specific sound to be played. However, while I see the notification with the wanted title and body, the sound is always the default notification sound , even though I set it to a custom one ! I looked in the Apple Documentation and verified that everything is correct with the sound file. I tried different files (.wav and .caf) and nothing worked. In the code block below, the print(Sound URL: (soundURL)) is seen in the console, which means that the file is indeed in the bundle. Xcode version : 14.3.1 macOS used : Ventura 13.4 Any help would be appreciated : code-block if let soundURL = Bundle.main.url(forResource: mixkit, withExtension: wav) { print(Sound URL: (soundURL)) content.sound = .init(named: UNNotificationSoundName(soundURL.lastPathComponent)) } else { print(Sound URL not found for mixkit.wav) } let trigger = UNTimeIntervalNotificati
Replies
0
Boosts
0
Views
379
Activity
Aug ’23
Stream Audio from URL
Hi All. Writing a swift iOS app (target iOS 13.1) and wanted to know if AVAudioPlayer or something else would fit these requirements:- Stream from URL (with auto-reconnect if network hiccups)- Stop and Start button (obviously)- Ability to choose the stop/start button images- Volume slider- Ability to use the switch object to switch between two audio streams (two different URLs)- Audio plays when app is in background- Display title/track metadata- And would really like an audio level meterI pieced together all these (with help of freelancers) when the app was in Obj-C. Now rebuilding in Swift.P.S. I'm an advanced newbie (a notch above newbie) so go easy on me :-)Thank-you!
Replies
2
Boosts
0
Views
5.7k
Activity
Oct ’19
UILocalNotifications custom sound ....
Dear developers,Since several days, I'm trying to work with a UILocalNotifications in order to perform tests of a my app. When I created the XCode project, in it i included several sounds file *.mp4a and the app worked perfectly. Succcesively I try to include some audio files, with same extension, in the Documents directory of the app. But writing in the code for example: notif.soundName=[[@%@/Documents/MySound.m4a lastPathComponent] copy];, when the app is in the background modality, the notification sound is the default. Kindly I would like if anyone could help me in solving this problem if it is possible.The UILocalNotification settings are the following: UIUserNotificationType types = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert; UIUserNotificationSettings *mySettings = [UIUserNotificationSettings settingsForTypes:types categories:nil]; [[UIApplication sharedApplication] registerUserNotificationSettings:mySettings]; UILocalNotification
Replies
1
Boosts
0
Views
554
Activity
Sep ’15
When is the "default alert sound" played?
Hi there, My app plays the default alert sound when received Remote Push Notification and other timing. I understand the default alert sound plays when received Remote Push Notification. However, it plays at some timing which is not the timing my app received Remote Push Notification. I have no idea what makes the default alert sound play. Is there any trigger to make the default alert sound play other than receiving Remote Push Notification?
Replies
1
Boosts
0
Views
558
Activity
Apr ’24
When iOS17 has a bug and cannot record audio, play the audio to a Bluetooth device
let session = AVAudioSession.sharedInstance() do { try session.setCategory(AVAudioSession.Category.playback) try session.setActive(true) //playAndRecord //playback print(session.currentRoute.outputs) } catch { print(error) } when I ssession.setCategory(AVAudioSession.Category.playback) audio play output a2dp ble devices. session.currentRoute.outputs print bellow ` when I ssession.setCategory(AVAudioSession.Category.playAndRecord) output BluetoothA2DPOutput is gone. but it is normal in ios15-16. Is there any solution? I want to record audio and play music at the same time. And the music is output from the Bluetooth speaker
Replies
1
Boosts
0
Views
905
Activity
Dec ’23
Audio performance of Airplay2
Does/will the new AirPlay 2 audio support something better than Lossless16 bit / 44.1 kHz ?Kind regardsMichael Wilspang
Replies
0
Boosts
0
Views
759
Activity
Oct ’17
Visualization of Apple Music audio
Certain apps (eg. DJay) at least seem to have access to audio data from Apple Music streams, either directly or via an indirect dataset for visualization purposes either generated from audio data on the device or delivered from a remote service. Is there any framework provided by Apple or special agreement with Apple that gives access to Apple Music audio data, or sets of visualization meta data, or the ability to run processing of audio data on device or remotely (either on-demand or via preprocessing)?
Replies
0
Boosts
0
Views
96
Activity
2w
html5 audio delay in Safari
Where: HTML5What: Audio tag (player) in conjunction with SafariIssue: Performance problemHi guys,There is a noticeable audio delay when using Safari in conjuction with onclick audio events. Specifically: the audio does not sync with the onclick event. The user may click on the icon, link, li etc. and the event takes place but the audio associated with the event does not occur until 1 - 4 secs later. This makes for cumbersom and awkward user experience.Example: https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_audio_autoplay2notice the slight delay after clicking on enable autoplay*no delay in other browsers such as firefox, chrome, etcI am new to development as well as Safari and Apple. Is this normal? or is there some specific code adjustment needed for Safari. (works fine in all other browsers).*Delay is much more pronouced depending on audio event such as games etc.
Replies
0
Boosts
0
Views
2.1k
Activity
May ’17
AVCaptureMultiCamSession audio power is very low
The audio samples coming from audio connection added to AVCaptureMultiCamSession are very low power compared to AVCaptureSession. This can be easily seen by printing averagePower of audio channels in sample code of AVMultiCamPip & AVCam and comparing. Why is it so?
Replies
2
Boosts
0
Views
1k
Activity
Jun ’20
Frustrating pop-up "Cannot Verify Server Identity"
For the last several betas, I keep getting the following error: Cannot Verify Server Identity The identity of domain name cannot be verified. This post won't allow me to type in the server, but it is in the attached picture. I keep assuming it is a beta issue, but it is persisting across betas. Any ideas on how to get rid of this or what is causing it? It also popped up on my new iPhone 14 Pro after synching with the iPhone 13 Pro it replaced.
Replies
0
Boosts
0
Views
353
Activity
Sep ’22
Is anybody able to actually record audio using presentAudioRecordingControllerWithOutputURL: on the device? The audio recording interface doesn't pickup audio AT ALL _ on device _.
It works fine in simulator. I can see that it picks up audio.However, when debugging on the device, the blue indicator is stuck to the left and doesn't pickup any audio. iPhone did ask for permission to use Microphone and that was allowed.Did it work for anyone so far?
Replies
11
Boosts
0
Views
3.1k
Activity
Jun ’15
No sound after updating.
I have updated my ipad 7th gen to ipados18.3 Beta last week and I realized that there is no sound at all no sound from speakers and no sound from bluetooth devices and no sound from airplay, I've checked google and reddit and alot of research people told me its a software bug, i submitted a bug report and now im still waiting for a bug fix update, youtube dosent work neither spotify aswell their UI stops working when i try to use it, So how long do i have to wait for a bug fix? Thanks apple.
Replies
0
Boosts
0
Views
293
Activity
Jan ’25
Notification Sound Issue
anyone have the issue when have 2 or more emails and trying to set diffrenet ringtones for each Mail account? No matter what account I pick, it sets the sound for all.
Replies
0
Boosts
0
Views
1.8k
Activity
Nov ’17
Audio input on the AppleTV simulator
We're prototyping without the actual hardware, and I'm trying to port a portion of our iOS application to AppleTV. We use Audio Units for recording from the microphone.The Audio Units code seems to work fine. It's querying things like the recording frequency from the simulator, and initializing everything for recording. The hold up is the audio session. The play and record category for AVAudioSession (and all the recording based audio categories) are defined as part of AVFoundation on the AppleTV, but they're not marked as available at runtime.Does the simulator currently not support audio input? Is there a feature to enable it? And I'm assuming the hardware will allow recording for the remote microphone if these APIs are present. Is that the case?
Replies
2
Boosts
0
Views
1.1k
Activity
Sep ’15