Search results for

“Popping Sound”

20,149 results found

Post

Replies

Boosts

Views

Activity

Playing Audio
So I have successfully triggered a PTT notification, but when I try to play audio – any audio – it doesn't play. Seems to be an issue with initiating my AVAudioSession. If I do not initiate it, the sound plays (outside of the didActivateAudioSession; such as on view did load), so I know that it's not the audio playing code. For some reason, the AVAudioSession is not allowing me to play sound. Even when I put PlayandRecord and when I put mix in the options
2
0
1.6k
Aug ’22
Audio problems
Hey, with an external monitor and an external camera connected to my MBP running Mojave, I have massive Facetime problems. I sound like a chipmunk to others, and others sound like a whale to me, theeir voice being extremely deep. Anyone else experiencing this or - better - having a solution? Everything else audio wise is fine...s.
1
0
984
Sep ’18
Playback rate for audio file player audio unit
A part of an application I'm working on uses audio units. In particular, it uses an audio unit with subtype kAudioUnitSubType_AudioFilePlayer. Is it possible to set the playback rate of such an audio unit? If so, how?I thought the parameter kAudioUnitParameterUnit_Rate was what I was looking for, but I've been unable to get that to work.Any help would be appreciated.
0
0
250
Jun ’15
Reply to How to Fix Cracking and Popping Sound ?
FYI I installed MacOS Monterey 12.5 Beta (21G5046c) and the clicking and popping is still present, and as bad as ever. I just bought this Macbook Pro 16 16GB at Best Buy so I am probably going to return it. The sound of that clicking popping every time I do something intensive, like compiling or loading an app, is so horrible. It makes my dog bark. Model Name: MacBook Pro Model Identifier: MacBookPro18,1 Chip: Apple M1 Pro Total Number of Cores: 10 (8 performance and 2 efficiency) Memory: 16 GB System Firmware Version: 7459.140.12.0.1 OS Loader Version: 7459.140.12.0.1
Topic: Community SubTopic: Apple Developers Tags:
Jun ’22
Play sound
Hello!!I need to play a sound when succes and an other when error. It's something like thisif succes { //Play sound for succes!!!! } else { //Play sound for error }I know that I can use the AudioServicesPlayAlertSound function but .... how?Thank you for your help!!!(and.... sorry for my English...)
1
0
584
Jun ’15
Pop up while opening from Universal Links
Hi I have setup universal links in our app , We have hosted our apple-app-site-association in our domain root directory https://example.com/apple-app-site-association and in Xcode, I have the associated domain set applinks:example.com after redirecting on the Universal Links in some devices app open pop is coming saying **Open in APP_NAME** ? can someone help with the reson of this popup can somone help
0
0
751
Jan ’23
Spurious pop and re-push during state changes
Hi,I've got a hard-to-reproduce bug where my views pop off the `NavigationView` stack and then re-push during state changes. I'm not sure what the heck is causing it yet. If this is a familiar problem to anyone, please let me know. In other words I have a navigation stack like: Root > A > B. I edit something in B and I get an unwanted pop animation back to Root > A, and then it immediately pushs again so it's back to Root > A > B. ~ R
7
0
1.9k
Jun ’20
WatchOS Sounds
I don't believe this is possible... but I find it rather annoying...Has anyone found a way to change the alert sound depending on what type of alert there is? I know that general app alerts have one sound but Mail (each account), Messages for example have that horrid DING sound. I see you can change type of alert (sound/feedback) per account, etc. but I want to be able to change the alert tone.Is this just a simple feature that has been overlooked?Thanks in advance!
1
0
550
Aug ’16
Playback and recording sound without embedded audio processing
I'm developing an iPhone application and want to playback and record sound from the bottom speaker and microphone without any embedded audio processing. If I use the following code, the sound comes from the top speaker. If I also add try playbackSession.setCategory(AVAudioSession.Category.multiRoute) then the sound comes from both the top and bottom speaker. If I use any other setMode than measurement, then there is an embedded audio processing that I want to avoid. playbackSession = AVAudioSession.sharedInstance() do { try playbackSession.overrideOutputAudioPort(AVAudioSession.PortOverride.speaker) try playbackSession.setMode(AVAudioSession.Mode.measurement)) } catch {print(Playing over the device's speakers failed) }
2
0
1.7k
Dec ’21
Haptic to Audio (synthesize audio file from haptic patterns?)
Haptics are often represented as audio for presentation purposes by Apple in videos and learning resources. I am curious if: ...Apple has released, or is willing to release any tools that may have been used synthesize audio to represent a haptic patterns (such as in their WWDC19 Audio-Haptic presentation)? ...there are any current tools available that take haptic instruction as input (like AHAP) and outputs an audio file? ...there is some low-level access to the signal that drives the Taptic Engine, so that it can be repurposed as an audio stream? ...you have any other suggestions! I can imagine some crude solutions that hack together preexisting synthesizers and fudging together a process to convert AHAP to MIDI instructions, dialing in some synth settings to mimic the behaviour of an actuator, but I'm not too interested in that rabbit hole just yet. Any thoughts? Very curious what the process was for the WWDC videos and audio examples in their documentat
2
0
814
Sep ’24
WebRTC Audio Is Not Playing Any Sound on Safari and IOS
I am trying to figure out why there is no audio on my iPhone or iPad, my code is working on other devices. I am on IPad iOS 15.3.1 and I test on my computer using Safari. Video is working, and both the video and audio work on Android, Chrome, etc. This is just an audio problem on iOS. From my WebRTC I have HTML5 Audio Track tracks as such: When debugging, I connect my IPad and have run this volume check: document.getElementById('xxx').volume And it returns the value of 1, so the volume is on its loudest (I think according to HTML5 audio tags range from 0, 0.1, 0.2, xxxx 1). document.getElementById('xxx').end The ended returns false. Next I try to run the play() function as such: $('#xxx')[0].play() .then((resp) => { console.log(Success); console.log(resp) }) .catch(error => {console.log(error)}) And it executes the success response. But there is still no sound. What could be causing this issue on iOS and Safari only?enter code here
1
0
2.3k
Sep ’22
Localized name for default sounds in /System/Library/Sounds
In the Mail settings one can choose one of the default sounds located at /System/Library/Sounds. Playing them is easy, e.g. with NSSound(named: Purr)?.play(), but how can I show a localized name for those sounds as Mail does? I couldn't find any way of getting a localized name. Would I have to manually translate each one to each supported language?
Topic: UI Frameworks SubTopic: AppKit Tags:
0
0
460
Mar ’23
Reply to App Crashes. I have many view controllers
It sounds like you are pushing more and more view controllers onto the navigation controller's stack, or you have a whole series of view controllers that are presenting another view controller. I think you need to pop the previous view controller off the navigation controller's stack before presenting the next one, or dismiss the previous view controller before presenting the next one.
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’16
Playing Audio
So I have successfully triggered a PTT notification, but when I try to play audio – any audio – it doesn't play. Seems to be an issue with initiating my AVAudioSession. If I do not initiate it, the sound plays (outside of the didActivateAudioSession; such as on view did load), so I know that it's not the audio playing code. For some reason, the AVAudioSession is not allowing me to play sound. Even when I put PlayandRecord and when I put mix in the options
Replies
2
Boosts
0
Views
1.6k
Activity
Aug ’22
Could anyone play a sound from the Library/Sounds directory using alarmkit?
Could anyone play a sound from the Library/Sounds directory using alarmkit? Same file can play in app bundle, but not available in Library/Sounds directory. Is this by design?
Replies
4
Boosts
0
Views
225
Activity
Sep ’25
Audio problems
Hey, with an external monitor and an external camera connected to my MBP running Mojave, I have massive Facetime problems. I sound like a chipmunk to others, and others sound like a whale to me, theeir voice being extremely deep. Anyone else experiencing this or - better - having a solution? Everything else audio wise is fine...s.
Replies
1
Boosts
0
Views
984
Activity
Sep ’18
Playback rate for audio file player audio unit
A part of an application I'm working on uses audio units. In particular, it uses an audio unit with subtype kAudioUnitSubType_AudioFilePlayer. Is it possible to set the playback rate of such an audio unit? If so, how?I thought the parameter kAudioUnitParameterUnit_Rate was what I was looking for, but I've been unable to get that to work.Any help would be appreciated.
Replies
0
Boosts
0
Views
250
Activity
Jun ’15
Reply to How to Fix Cracking and Popping Sound ?
FYI I installed MacOS Monterey 12.5 Beta (21G5046c) and the clicking and popping is still present, and as bad as ever. I just bought this Macbook Pro 16 16GB at Best Buy so I am probably going to return it. The sound of that clicking popping every time I do something intensive, like compiling or loading an app, is so horrible. It makes my dog bark. Model Name: MacBook Pro Model Identifier: MacBookPro18,1 Chip: Apple M1 Pro Total Number of Cores: 10 (8 performance and 2 efficiency) Memory: 16 GB System Firmware Version: 7459.140.12.0.1 OS Loader Version: 7459.140.12.0.1
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jun ’22
Play sound
Hello!!I need to play a sound when succes and an other when error. It's something like thisif succes { //Play sound for succes!!!! } else { //Play sound for error }I know that I can use the AudioServicesPlayAlertSound function but .... how?Thank you for your help!!!(and.... sorry for my English...)
Replies
1
Boosts
0
Views
584
Activity
Jun ’15
Pop up while opening from Universal Links
Hi I have setup universal links in our app , We have hosted our apple-app-site-association in our domain root directory https://example.com/apple-app-site-association and in Xcode, I have the associated domain set applinks:example.com after redirecting on the Universal Links in some devices app open pop is coming saying **Open in APP_NAME** ? can someone help with the reson of this popup can somone help
Replies
0
Boosts
0
Views
751
Activity
Jan ’23
Spurious pop and re-push during state changes
Hi,I've got a hard-to-reproduce bug where my views pop off the `NavigationView` stack and then re-push during state changes. I'm not sure what the heck is causing it yet. If this is a familiar problem to anyone, please let me know. In other words I have a navigation stack like: Root > A > B. I edit something in B and I get an unwanted pop animation back to Root > A, and then it immediately pushs again so it's back to Root > A > B. ~ R
Replies
7
Boosts
0
Views
1.9k
Activity
Jun ’20
WatchOS Sounds
I don't believe this is possible... but I find it rather annoying...Has anyone found a way to change the alert sound depending on what type of alert there is? I know that general app alerts have one sound but Mail (each account), Messages for example have that horrid DING sound. I see you can change type of alert (sound/feedback) per account, etc. but I want to be able to change the alert tone.Is this just a simple feature that has been overlooked?Thanks in advance!
Replies
1
Boosts
0
Views
550
Activity
Aug ’16
Playback and recording sound without embedded audio processing
I'm developing an iPhone application and want to playback and record sound from the bottom speaker and microphone without any embedded audio processing. If I use the following code, the sound comes from the top speaker. If I also add try playbackSession.setCategory(AVAudioSession.Category.multiRoute) then the sound comes from both the top and bottom speaker. If I use any other setMode than measurement, then there is an embedded audio processing that I want to avoid. playbackSession = AVAudioSession.sharedInstance() do { try playbackSession.overrideOutputAudioPort(AVAudioSession.PortOverride.speaker) try playbackSession.setMode(AVAudioSession.Mode.measurement)) } catch {print(Playing over the device's speakers failed) }
Replies
2
Boosts
0
Views
1.7k
Activity
Dec ’21
Safari extension pop up size limits
Hey everyone, does anyone know the size limits for the pop up for extensions for safari for the macOS , iPadOS and iPhone . Can’t seem to find any documentation. Thank you
Replies
0
Boosts
0
Views
584
Activity
Sep ’21
Haptic to Audio (synthesize audio file from haptic patterns?)
Haptics are often represented as audio for presentation purposes by Apple in videos and learning resources. I am curious if: ...Apple has released, or is willing to release any tools that may have been used synthesize audio to represent a haptic patterns (such as in their WWDC19 Audio-Haptic presentation)? ...there are any current tools available that take haptic instruction as input (like AHAP) and outputs an audio file? ...there is some low-level access to the signal that drives the Taptic Engine, so that it can be repurposed as an audio stream? ...you have any other suggestions! I can imagine some crude solutions that hack together preexisting synthesizers and fudging together a process to convert AHAP to MIDI instructions, dialing in some synth settings to mimic the behaviour of an actuator, but I'm not too interested in that rabbit hole just yet. Any thoughts? Very curious what the process was for the WWDC videos and audio examples in their documentat
Replies
2
Boosts
0
Views
814
Activity
Sep ’24
WebRTC Audio Is Not Playing Any Sound on Safari and IOS
I am trying to figure out why there is no audio on my iPhone or iPad, my code is working on other devices. I am on IPad iOS 15.3.1 and I test on my computer using Safari. Video is working, and both the video and audio work on Android, Chrome, etc. This is just an audio problem on iOS. From my WebRTC I have HTML5 Audio Track tracks as such: When debugging, I connect my IPad and have run this volume check: document.getElementById('xxx').volume And it returns the value of 1, so the volume is on its loudest (I think according to HTML5 audio tags range from 0, 0.1, 0.2, xxxx 1). document.getElementById('xxx').end The ended returns false. Next I try to run the play() function as such: $('#xxx')[0].play() .then((resp) => { console.log(Success); console.log(resp) }) .catch(error => {console.log(error)}) And it executes the success response. But there is still no sound. What could be causing this issue on iOS and Safari only?enter code here
Replies
1
Boosts
0
Views
2.3k
Activity
Sep ’22
Localized name for default sounds in /System/Library/Sounds
In the Mail settings one can choose one of the default sounds located at /System/Library/Sounds. Playing them is easy, e.g. with NSSound(named: Purr)?.play(), but how can I show a localized name for those sounds as Mail does? I couldn't find any way of getting a localized name. Would I have to manually translate each one to each supported language?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
0
Boosts
0
Views
460
Activity
Mar ’23
Reply to App Crashes. I have many view controllers
It sounds like you are pushing more and more view controllers onto the navigation controller's stack, or you have a whole series of view controllers that are presenting another view controller. I think you need to pop the previous view controller off the navigation controller's stack before presenting the next one, or dismiss the previous view controller before presenting the next one.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’16