Search results for

“Popping Sound”

20,421 results found

Post

Replies

Boosts

Views

Activity

Strange UINavigationController Push/Pop Glitch with interactive gesture
I was able to replicate a bug recently (which seems to have been around for quite a while but I have never been able to replicate), and I don't understand how to fix it. The steps to replicate it are: On the main screen make an edge swipe gesture as if you wanted to make the interactive pop. Tap on an element that invokes the push of a screen. The UI seems to freeze, but if you try to do an edge swipe gesture, the screen that was supposed to open appears slowly, and then closes.
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
1.1k
Dec ’20
Play sound on watch
I tried to play sound, putting the files in WatchKit app, then: let soundURL = NSURL.fileURLWithPath(NSBundle.mainBundle().pathForResource(ShipBullet, ofType:wav)!) let asset = WKAudioFileAsset(URL:soundURL) let sound = WKAudioFilePlayerItem(asset:asset) let audioPlayer = WKAudioFilePlayer(playerItem:sound) audioPlayer!.play()And the app crashed. Am I doing something wrong?
13
0
6.1k
Jun ’15
ios sound recognition: to what extent can developers access apple's built-in sound recognition?
hi, i am currently developing an app that has core functionalities reliant on detecting user laughter in the background. in our early stages we noticed apple's built-in sound recognition functionality. at the core, i am guessing that sound recognition requires permission from the user to access the microphone 24/7. currently, using the conventional avenue of background audio recording, a yellow indicator will be present on the top of the iphone screen indicating recording. this is not the case for sound recognition; instead. if all sound processing/recognition is kept on-device, is there any way to avoid the yellow dot and achieve sound laughter in a way that is similar to how apple's sound recognition does it? from the settings interface for sound recognition accessible to the user in the settings app, the only detectable people sounds are baby crying, coughing, and shouting. is it also possible to add laughter to this list some
2
0
965
Aug ’24
sounds set to default
I have updated my Ipad air 2 to Ios 9 Beta4 and now all sounds except ringtones have been set to default.And If I try to change the tone for any of the other sounds, the list of different tones comes up but clicking on any of the tones returns me to the home screen and does not change the tone to that selection.
4
0
589
Jul ’15
Reply to How to Fix Cracking and Popping Sound ?
I *really* want to see the flow of audio in macOS, and the changes in gain/amplitude along the way.If I use the test osc plugin in Logic Pro X, running thru a specific CoreAudio driver, I can succesfully manage keeping a consistent gain structure all the way thru my mixer, using Apple supplied Class-Compliant driver. 0db sine wave is exactly that all the way thru. Easy enough. If I go over that, I hear distortion.Now... safe to say that's calibrated, but... if I use the Music app, or audio coming from Safari, signal is about 4.5db hotter. That simply *cannot* be right. Send that to internal speakers and of course they're cracking and popping.
Topic: Community SubTopic: Apple Developers Tags:
May ’20
Problems with Pop-up Login on PWA Packaged
Hi there, We're a Wine eCommerce company and we have a project in progress to launch our webstore on the App Store. To achieve this, we're utilizing PWABuilder to package our website using PWA technology, allowing us to submit it to the App Stores. Naturally, given that it's a Google technology, everything went smoothly with the Play Store, and our app is already available there. However, we're encountering some challenges with the App Store. We need to implement additional features in our webstore, such as AppleID login and ApplePay payment integration. But, apart from that, we are facing another issue: Our third-party login options (Facebook and Google) function as pop-ups on our website but do not work within our Swift Application. When we run our application in Xcode and try to login via third-party, we get this error. 2023-07-28 09:50:26.633655-0300 grandeadega[12858:1201551] [Process] 0x133858818 - [pageProxyID=6, webPageID=7, PID=12915] WebPageProxy::didFailProvisionalLoadForFrame: frameID=957
3
0
1.3k
Sep ’23
How to merge audio
The app that I'm creating I'm trying to combine two audio files, one is larger than the other, I need the first one to run for a certain time and then the second, but all as one audio (the audio is playing while app is in the background)Here is what I got so farfunc merge(audio1: NSURL, audio2: NSURL, time:Double, date:NSDate) { var ok1 = false var ok2 = false / / var composition = AVMutableComposition() var compositionAudioTrack1:AVMutableCompositionTrack = composition.addMutableTrackWithMediaType(AVMediaTypeAudio, preferredTrackID: CMPersistentTrackID()) var compositionAudioTrack2:AVMutableCompositionTrack = composition.addMutableTrackWithMediaType(AVMediaTypeAudio, preferredTrackID: CMPersistentTrackID()) / var documentDirectoryURL = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask).first! as! NSURL var fileDestinationUrl = documentDirectoryURL.URLByAppendingPathComponent(resultmerge.wav) println(fileDestinationUrl) var url1 = audio1
0
0
1.7k
Aug ’15
Audio Units v3 OS x: Instantiating custom audio units
I'm working on writing a custom audio unit using the v3 APIs, and I'm having trouble getting them to instantiate correctly under some circumstances:I can instantiate my Audio Unit if I include its view controller and AUAudioUnit subclass within the associated app (either directly or by linking them in from a framework) and then registering it using AUAudioUnit.registerSubclass(asComponentDescription:, name:, version:), but I haven't been able to get it to work by installing the .appex file anywhere. The system just doesn't find it. I have tried putting the .appex in ~/Library/Audio/Plug-Ins/Components, and /Library/Audio/Plug-Ins/Components but it never shows up in the list returned by AVAudioUnitComponentManager.sharedAudioUnitComponentManager().componentsMatchingDescription(). I created a minimal test project using the templates provided by XCode for an Audio Unit Extension, and I've been careful to be sure the Info.plist file for the extension has been filled in
6
0
4.9k
May ’16
Reply to How to show/hide Now Playing button on CPTabBarTemplate
Hi, The system automatically shows the now playing button in the tab bar and nav bar when your app becomes the now playing app, and hides the button when another app starts playing audio. You are correct that, in order for the now playing button to show AND for now playing to populate with metadata, your app must start playing audio. In general, if your app is playing audio at the time when it's launched on the car screen, it's a best practice for your app to present its root template (e.g. a tab bar template) and then immediately push the now playing template on top. This is also done on behalf of your app if the user launches your app by way of the system 'Now Playing' icon on the CarPlay home screen. Also, is there a way to hide the Now Playing button after the queue of content has finished playing? I'm able to pop the Now Playing template, but the Now Playing button is still present and tapping it will navigate the user to the now blank Now Playing template. Not current
Topic: UI Frameworks SubTopic: General Tags:
Mar ’25
Xcode 7.1: Peek/Pop missing from certain Storyboard segues
Xcode 7.1 adds: Interface Builder supports enabling Peek & Pop for segues per <https://developer.apple.com/library/prerelease/watchos/releasenotes/DeveloperTools/RN-Xcode/Chapters/xc7_release_notes.html>I'm seeing the new Peek & Pop/Preview & Commit Segues for some segues, but not others. Where requirements need to be met for this option to appear in IB?
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
532
Dec ’15
Replacement for Inter-App Audio?
With iOS Inter-App audio and AUGraph being deprecated (according to the iOS 13 beta Release Notes), how does one expose the existence of an Audio Unit or custom AVAudioNode audio source to another audio destination app, and how does a destination app (recorder, player, and/or visualizer) get sent audio samples from the audio source app (synthesizer or on-screen keyboard)?
1
0
2.9k
Aug ’19
Strange UINavigationController Push/Pop Glitch with interactive gesture
I was able to replicate a bug recently (which seems to have been around for quite a while but I have never been able to replicate), and I don't understand how to fix it. The steps to replicate it are: On the main screen make an edge swipe gesture as if you wanted to make the interactive pop. Tap on an element that invokes the push of a screen. The UI seems to freeze, but if you try to do an edge swipe gesture, the screen that was supposed to open appears slowly, and then closes.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
1.1k
Activity
Dec ’20
Play sound on watch
I tried to play sound, putting the files in WatchKit app, then: let soundURL = NSURL.fileURLWithPath(NSBundle.mainBundle().pathForResource(ShipBullet, ofType:wav)!) let asset = WKAudioFileAsset(URL:soundURL) let sound = WKAudioFilePlayerItem(asset:asset) let audioPlayer = WKAudioFilePlayer(playerItem:sound) audioPlayer!.play()And the app crashed. Am I doing something wrong?
Replies
13
Boosts
0
Views
6.1k
Activity
Jun ’15
ios sound recognition: to what extent can developers access apple's built-in sound recognition?
hi, i am currently developing an app that has core functionalities reliant on detecting user laughter in the background. in our early stages we noticed apple's built-in sound recognition functionality. at the core, i am guessing that sound recognition requires permission from the user to access the microphone 24/7. currently, using the conventional avenue of background audio recording, a yellow indicator will be present on the top of the iphone screen indicating recording. this is not the case for sound recognition; instead. if all sound processing/recognition is kept on-device, is there any way to avoid the yellow dot and achieve sound laughter in a way that is similar to how apple's sound recognition does it? from the settings interface for sound recognition accessible to the user in the settings app, the only detectable people sounds are baby crying, coughing, and shouting. is it also possible to add laughter to this list some
Replies
2
Boosts
0
Views
965
Activity
Aug ’24
Route Audio of UILocalNotification
Hi,Is there a way to determine the output speaker for the sound of a UILocalNotification? For example provide an option for the user to choose wether the sound will be played through a bluetooth connected device or the phone's speakers?Thanks
Replies
0
Boosts
0
Views
316
Activity
Apr ’16
sounds set to default
I have updated my Ipad air 2 to Ios 9 Beta4 and now all sounds except ringtones have been set to default.And If I try to change the tone for any of the other sounds, the list of different tones comes up but clicking on any of the tones returns me to the home screen and does not change the tone to that selection.
Replies
4
Boosts
0
Views
589
Activity
Jul ’15
Web app sound
What code allows a webapp to auto play sounds on the iPhone speaker?
Replies
0
Boosts
0
Views
537
Activity
Oct ’22
Reply to How to Fix Cracking and Popping Sound ?
I *really* want to see the flow of audio in macOS, and the changes in gain/amplitude along the way.If I use the test osc plugin in Logic Pro X, running thru a specific CoreAudio driver, I can succesfully manage keeping a consistent gain structure all the way thru my mixer, using Apple supplied Class-Compliant driver. 0db sine wave is exactly that all the way thru. Easy enough. If I go over that, I hear distortion.Now... safe to say that's calibrated, but... if I use the Music app, or audio coming from Safari, signal is about 4.5db hotter. That simply *cannot* be right. Send that to internal speakers and of course they're cracking and popping.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
May ’20
Problems with Pop-up Login on PWA Packaged
Hi there, We're a Wine eCommerce company and we have a project in progress to launch our webstore on the App Store. To achieve this, we're utilizing PWABuilder to package our website using PWA technology, allowing us to submit it to the App Stores. Naturally, given that it's a Google technology, everything went smoothly with the Play Store, and our app is already available there. However, we're encountering some challenges with the App Store. We need to implement additional features in our webstore, such as AppleID login and ApplePay payment integration. But, apart from that, we are facing another issue: Our third-party login options (Facebook and Google) function as pop-ups on our website but do not work within our Swift Application. When we run our application in Xcode and try to login via third-party, we get this error. 2023-07-28 09:50:26.633655-0300 grandeadega[12858:1201551] [Process] 0x133858818 - [pageProxyID=6, webPageID=7, PID=12915] WebPageProxy::didFailProvisionalLoadForFrame: frameID=957
Replies
3
Boosts
0
Views
1.3k
Activity
Sep ’23
Audio in Big Sur
After downloading Big Sur my speakers in MacBook Pro 2019 broke down using google meet, hangouts or zoom. The sound isn't understandable and it sounds like something is bubbling.
Replies
3
Boosts
0
Views
762
Activity
Nov ’20
How to merge audio
The app that I'm creating I'm trying to combine two audio files, one is larger than the other, I need the first one to run for a certain time and then the second, but all as one audio (the audio is playing while app is in the background)Here is what I got so farfunc merge(audio1: NSURL, audio2: NSURL, time:Double, date:NSDate) { var ok1 = false var ok2 = false / / var composition = AVMutableComposition() var compositionAudioTrack1:AVMutableCompositionTrack = composition.addMutableTrackWithMediaType(AVMediaTypeAudio, preferredTrackID: CMPersistentTrackID()) var compositionAudioTrack2:AVMutableCompositionTrack = composition.addMutableTrackWithMediaType(AVMediaTypeAudio, preferredTrackID: CMPersistentTrackID()) / var documentDirectoryURL = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask).first! as! NSURL var fileDestinationUrl = documentDirectoryURL.URLByAppendingPathComponent(resultmerge.wav) println(fileDestinationUrl) var url1 = audio1
Replies
0
Boosts
0
Views
1.7k
Activity
Aug ’15
Audio Units v3 OS x: Instantiating custom audio units
I'm working on writing a custom audio unit using the v3 APIs, and I'm having trouble getting them to instantiate correctly under some circumstances:I can instantiate my Audio Unit if I include its view controller and AUAudioUnit subclass within the associated app (either directly or by linking them in from a framework) and then registering it using AUAudioUnit.registerSubclass(asComponentDescription:, name:, version:), but I haven't been able to get it to work by installing the .appex file anywhere. The system just doesn't find it. I have tried putting the .appex in ~/Library/Audio/Plug-Ins/Components, and /Library/Audio/Plug-Ins/Components but it never shows up in the list returned by AVAudioUnitComponentManager.sharedAudioUnitComponentManager().componentsMatchingDescription(). I created a minimal test project using the templates provided by XCode for an Audio Unit Extension, and I've been careful to be sure the Info.plist file for the extension has been filled in
Replies
6
Boosts
0
Views
4.9k
Activity
May ’16
Reply to How to show/hide Now Playing button on CPTabBarTemplate
Hi, The system automatically shows the now playing button in the tab bar and nav bar when your app becomes the now playing app, and hides the button when another app starts playing audio. You are correct that, in order for the now playing button to show AND for now playing to populate with metadata, your app must start playing audio. In general, if your app is playing audio at the time when it's launched on the car screen, it's a best practice for your app to present its root template (e.g. a tab bar template) and then immediately push the now playing template on top. This is also done on behalf of your app if the user launches your app by way of the system 'Now Playing' icon on the CarPlay home screen. Also, is there a way to hide the Now Playing button after the queue of content has finished playing? I'm able to pop the Now Playing template, but the Now Playing button is still present and tapping it will navigate the user to the now blank Now Playing template. Not current
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’25
Xcode 7.1: Peek/Pop missing from certain Storyboard segues
Xcode 7.1 adds: Interface Builder supports enabling Peek & Pop for segues per <https://developer.apple.com/library/prerelease/watchos/releasenotes/DeveloperTools/RN-Xcode/Chapters/xc7_release_notes.html>I'm seeing the new Peek & Pop/Preview & Commit Segues for some segues, but not others. Where requirements need to be met for this option to appear in IB?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
532
Activity
Dec ’15
Replacement for Inter-App Audio?
With iOS Inter-App audio and AUGraph being deprecated (according to the iOS 13 beta Release Notes), how does one expose the existence of an Audio Unit or custom AVAudioNode audio source to another audio destination app, and how does a destination app (recorder, player, and/or visualizer) get sent audio samples from the audio source app (synthesizer or on-screen keyboard)?
Replies
1
Boosts
0
Views
2.9k
Activity
Aug ’19
Audio available in extension
Hello. I tried to port corehaptic to extension custum keyboard, but failed. So I adopted hapticfeedback as a suboptimal solution, but I haven't solved the audio yet. Do you know which chord to use for the sound effect that we usually use on the basic ios keyboard? Thank you for helping me.
Replies
0
Boosts
0
Views
1.1k
Activity
Jul ’22