Search results for

“Popping Sound”

20,421 results found

Post

Replies

Boosts

Views

Activity

Audio Unit Tool Box
Hi,I am new to iOS programming.I want to learn more about audio related features in SWIFT.How can I get a better understanding the concept of Nodes, Audio Unit toolBox and AU Graphs using SWIFT?Are there any resources with examples available?I want to produce audio spectrums etc.Your input will be greatly appreciated.Thank you,Fizza
2
0
589
Jun ’15
Stream Audio
I try to get Streaming Audio to work in WatchKIT. I just simple use the AVPlayer with a remote URL.The Code working on iOS but WatchOS give me error.I Added Background Audio to info.plst.do{ try AVAudioSession.sharedInstance().setCategory(.playback) try AVAudioSession.sharedInstance().setActive(true, options: .notifyOthersOnDeactivation) } catch { NSLog(error.localizedDescription) }let playBackURL = URL(string: https://facyremoturl/stream.mp3)PlayerItem = AVPlayerItem(url: playBackURL!)PlayerItem.addObserver(self, forKeyPath: timedMetadata, options: NSKeyValueObservingOptions(), context: nil)Player = AVPlayer(playerItem: PlayerItem)Player.play()The Logs now show this error:2019-06-05 14:31:09.149728+0200 watchtest WatchKit Extension[92922:10939355] [] [14:31:09.148] <<< CFByteFlume >>> FigByteFlumeCreateWithHTTP: [0x786984c0] Created CFHTTP byte flume 0x786984b0. 2019-06-05 14:31:09.210511+0200 watchtest WatchKit Extension[92922:10938788] Task <C4B1C312-11B6-4547-8072-EC
0
0
628
Jun ’19
iMovie cutting the end of my audio
Hi, can someone help me, with this very very annoying issue I have with iMovie. I'm making some videos where I take an MP4 video I've filmed and then I'm taking an MP3 file and using as sound. The sound and the clip are both exactly 13 seconds long, but for some reason, iMovie keep cutting off the audio about 1 second before the clip. When i delete the audio from the project and add it back again it cuts again on a different place. So I have to keep remove it and add it back until it stops cutting it. It's as if it sets the cut at some random point between the end and up to something like 2 seconds before the end of the clip. How do I fix this? Kind Regards Ben
1
0
957
Jan ’23
"open a pop-up window" message appeares at hideen tab.
Our site is Open a new tab in safari as following example.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- -----------------------The timing when “This site is attempting to open a pop-up window”message appears isiPad with OS10.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- ----------------------- ↑ ↑ message - allow message - allow           iPad with OS11.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- ----------------------- ↑ message - allow       ↑    message - allow User cannot allow while on Chlid screen_A tab. Tab transition to Parent screen is required.Please tell me the way for To avoid This site is attempting to
0
0
979
Apr ’18
play system sound for UILocalNotification
Hey,I would like to know if it's possible to play one of the system sounds for a UILocalNoification?For example I would like to do something like this: localNotification.soundName = /Library/RingtonesApex.m4rBut that doesn't work. Is there a solution for this? Because I don't want to import custom sounds if there are already useable sounds for notifications on the device.
3
0
2.1k
Jun ’16
AVAudioUnitComponentManager only returning Apple Audio Units when used from within an Audio Unit
I'm trying to build an audio unit that can load another one. The first step, listing and getting the components only works in the example code if and when the audio unit is loaded by its accompanying main app. But when loaded inside Logic Pro for example, the listed components will be limited to Apple-manufactured ones. On another forum, although not for an AppEx, someone indicated that the solution was to enable Inter-App Audio, which is now deprecated. Tried all three methods of AVAudioUnitComponentManager to get the component list. Please advise. Many thanks, Zoltan
1
0
990
Sep ’23
Core audio for apple silicon
I just saw my activity monitor and noticed that there was something named core audio with intel architecture in my apple silicon mac which came pre loaded. Analysis of sampling com.apple.audio.Core-Audio-Driver-Service (pid 11196) every 1 millisecond Process: com.apple.audio.Core-Audio-Driver-Service [11196] Path: /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.Core-Audio-Driver-Service.xpc/Contents/MacOS/com.apple.audio.Core-Audio-Driver-Service Load Address: 0x10023d000 Identifier: com.apple.audio.Core-Audio-Driver-Service Version: 1.0 (1) Code Type: X86-64 (translated) Platform: macOS Parent Process: launchd [1] Date/Time: 2021-03-31 01:30:39.233 +0530 Launch Time: 2021-03-31 01:20:44.850 +0530 OS Version: macOS 11.2.3 (20D91) Report Version: 7 Analysis Tool: /usr/bin/sample I wish I could get an answer for this why it is still in intel architecture and is not yet ported to apple silicon yet.
2
0
2.1k
Mar ’21
iOS 14.5 RC breaks push/pop transition animations on iPhone
App with 3 split view using Navigation view. This on an iPhone automatically becomes stacked navigation style. so drilling down into detail views ... will have the normal transition animations of pushing and popping views. But these transitions are not working on iOS 14.5 RC /Xcode 12.5RC . Now tapping on a master...the detail appears without the push transition animation :( Same code works just fine on stable versions of iOS 14.4 and Xcode with the push/pop transition animations. Not sure what changed but any workarounds to restore these transitions on iPhone?
0
0
670
Apr ’21
When playing Dolby Atmos mobile game, 'spatial Audio On' is not displayed on Audio tap.
Hello. I'm Game Sound Designer. My project supports Dolby Atmos by Wwise plugin 'Dolby Atmos Renderer'. When I connected the test device (iPhone 12 Pro Max) to the iMac and checked it with the 'Console', I was able to check the log message in the way Dolby mentioned. (Message: DA4MG Atmos_7_1_4 Spatializing [0] times with input channel [12]) I think this is Dolby Atmos working fine. However, the iPhone does not indicate that Dolby Atmos is operating.(Unlike Apple Music, 'Dolby Atmos' or 'Spatial Audio On' cannot be found.) My Question is 1.Does the method of using 'Dolby Atmos Renderer' meet Apple's spatial sound standards? 2.Does only Apple-certified applications display 'Spatial Audio On' or 'Dolby Atmos'? 3.How do I display 'Spatial Audio On' or 'Dolby Atmos'? I also asked Apple, but I post it on the forum because other developers may know the solution. Even the Tower of Fantasy supporting Atmos doesn't see the Spatial Audio On.
0
0
1k
Oct ’22
Audio Unit Tool Box
Hi,I am new to iOS programming.I want to learn more about audio related features in SWIFT.How can I get a better understanding the concept of Nodes, Audio Unit toolBox and AU Graphs using SWIFT?Are there any resources with examples available?I want to produce audio spectrums etc.Your input will be greatly appreciated.Thank you,Fizza
Replies
2
Boosts
0
Views
589
Activity
Jun ’15
Stream Audio
I try to get Streaming Audio to work in WatchKIT. I just simple use the AVPlayer with a remote URL.The Code working on iOS but WatchOS give me error.I Added Background Audio to info.plst.do{ try AVAudioSession.sharedInstance().setCategory(.playback) try AVAudioSession.sharedInstance().setActive(true, options: .notifyOthersOnDeactivation) } catch { NSLog(error.localizedDescription) }let playBackURL = URL(string: https://facyremoturl/stream.mp3)PlayerItem = AVPlayerItem(url: playBackURL!)PlayerItem.addObserver(self, forKeyPath: timedMetadata, options: NSKeyValueObservingOptions(), context: nil)Player = AVPlayer(playerItem: PlayerItem)Player.play()The Logs now show this error:2019-06-05 14:31:09.149728+0200 watchtest WatchKit Extension[92922:10939355] [] [14:31:09.148] <<< CFByteFlume >>> FigByteFlumeCreateWithHTTP: [0x786984c0] Created CFHTTP byte flume 0x786984b0. 2019-06-05 14:31:09.210511+0200 watchtest WatchKit Extension[92922:10938788] Task <C4B1C312-11B6-4547-8072-EC
Replies
0
Boosts
0
Views
628
Activity
Jun ’19
iMovie cutting the end of my audio
Hi, can someone help me, with this very very annoying issue I have with iMovie. I'm making some videos where I take an MP4 video I've filmed and then I'm taking an MP3 file and using as sound. The sound and the clip are both exactly 13 seconds long, but for some reason, iMovie keep cutting off the audio about 1 second before the clip. When i delete the audio from the project and add it back again it cuts again on a different place. So I have to keep remove it and add it back until it stops cutting it. It's as if it sets the cut at some random point between the end and up to something like 2 seconds before the end of the clip. How do I fix this? Kind Regards Ben
Replies
1
Boosts
0
Views
957
Activity
Jan ’23
pop-up option control
I'm looking for the control that allows the user to select from a list that pops up when the user clicks the control. I need to know the name of the control so that I can find it in the Object Library.
Replies
1
Boosts
0
Views
187
Activity
Jul ’16
How to disable this pop-up alert?
I'm just noodling around with Xcode and this alert appears every time I run my app in Xcode. Seems to be new with 15.0. I didn't see anything in Settings.
Replies
0
Boosts
0
Views
380
Activity
Oct ’23
Swift Playground alert pop
Hello, I’m encountering an issue where an alert dialog keeps appearing repeatedly in my swift playground project. I pressed Allow button but it keeps appearing again. Does anyone can help me about it?
Replies
1
Boosts
0
Views
467
Activity
Dec ’25
"open a pop-up window" message appeares at hideen tab.
Our site is Open a new tab in safari as following example.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- -----------------------The timing when “This site is attempting to open a pop-up window”message appears isiPad with OS10.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- ----------------------- ↑ ↑ message - allow message - allow           iPad with OS11.---------------------- ----------------------- -----------------------| Parent screen | → | Child screen_A | → |Child screen_B | ---------------------- ----------------------- ----------------------- ↑ message - allow       ↑    message - allow User cannot allow while on Chlid screen_A tab. Tab transition to Parent screen is required.Please tell me the way for To avoid This site is attempting to
Replies
0
Boosts
0
Views
979
Activity
Apr ’18
play system sound for UILocalNotification
Hey,I would like to know if it's possible to play one of the system sounds for a UILocalNoification?For example I would like to do something like this: localNotification.soundName = /Library/RingtonesApex.m4rBut that doesn't work. Is there a solution for this? Because I don't want to import custom sounds if there are already useable sounds for notifications on the device.
Replies
3
Boosts
0
Views
2.1k
Activity
Jun ’16
AVAudioUnitComponentManager only returning Apple Audio Units when used from within an Audio Unit
I'm trying to build an audio unit that can load another one. The first step, listing and getting the components only works in the example code if and when the audio unit is loaded by its accompanying main app. But when loaded inside Logic Pro for example, the listed components will be limited to Apple-manufactured ones. On another forum, although not for an AppEx, someone indicated that the solution was to enable Inter-App Audio, which is now deprecated. Tried all three methods of AVAudioUnitComponentManager to get the component list. Please advise. Many thanks, Zoltan
Replies
1
Boosts
0
Views
990
Activity
Sep ’23
Surround sound for apps?
I assumethat dolby digital passthrough will work for HLS, but is there any other way to do surround sound without using AV player? Does the Apple TV support multichannel PCM through HDMI?
Replies
12
Boosts
0
Views
6.5k
Activity
Sep ’15
Core audio for apple silicon
I just saw my activity monitor and noticed that there was something named core audio with intel architecture in my apple silicon mac which came pre loaded. Analysis of sampling com.apple.audio.Core-Audio-Driver-Service (pid 11196) every 1 millisecond Process: com.apple.audio.Core-Audio-Driver-Service [11196] Path: /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.Core-Audio-Driver-Service.xpc/Contents/MacOS/com.apple.audio.Core-Audio-Driver-Service Load Address: 0x10023d000 Identifier: com.apple.audio.Core-Audio-Driver-Service Version: 1.0 (1) Code Type: X86-64 (translated) Platform: macOS Parent Process: launchd [1] Date/Time: 2021-03-31 01:30:39.233 +0530 Launch Time: 2021-03-31 01:20:44.850 +0530 OS Version: macOS 11.2.3 (20D91) Report Version: 7 Analysis Tool: /usr/bin/sample I wish I could get an answer for this why it is still in intel architecture and is not yet ported to apple silicon yet.
Replies
2
Boosts
0
Views
2.1k
Activity
Mar ’21
iOS 14.5 RC breaks push/pop transition animations on iPhone
App with 3 split view using Navigation view. This on an iPhone automatically becomes stacked navigation style. so drilling down into detail views ... will have the normal transition animations of pushing and popping views. But these transitions are not working on iOS 14.5 RC /Xcode 12.5RC . Now tapping on a master...the detail appears without the push transition animation :( Same code works just fine on stable versions of iOS 14.4 and Xcode with the push/pop transition animations. Not sure what changed but any workarounds to restore these transitions on iPhone?
Replies
0
Boosts
0
Views
670
Activity
Apr ’21
When playing Dolby Atmos mobile game, 'spatial Audio On' is not displayed on Audio tap.
Hello. I'm Game Sound Designer. My project supports Dolby Atmos by Wwise plugin 'Dolby Atmos Renderer'. When I connected the test device (iPhone 12 Pro Max) to the iMac and checked it with the 'Console', I was able to check the log message in the way Dolby mentioned. (Message: DA4MG Atmos_7_1_4 Spatializing [0] times with input channel [12]) I think this is Dolby Atmos working fine. However, the iPhone does not indicate that Dolby Atmos is operating.(Unlike Apple Music, 'Dolby Atmos' or 'Spatial Audio On' cannot be found.) My Question is 1.Does the method of using 'Dolby Atmos Renderer' meet Apple's spatial sound standards? 2.Does only Apple-certified applications display 'Spatial Audio On' or 'Dolby Atmos'? 3.How do I display 'Spatial Audio On' or 'Dolby Atmos'? I also asked Apple, but I post it on the forum because other developers may know the solution. Even the Tower of Fantasy supporting Atmos doesn't see the Spatial Audio On.
Replies
0
Boosts
0
Views
1k
Activity
Oct ’22
Custom iOS Notification Sounds?
Hi, What are the requirements / restrictions for a custom iOS Notification sound? Is this widely available to new apps on the App Store? I know BBC News & Tinder have custom sounds. Thanks
Replies
2
Boosts
0
Views
3.2k
Activity
Aug ’20
Text to audio file convert
Hello,I want to convert text to audio mp3 file. Is there any framework or third party API we can use it to conver text into Audio file?
Replies
1
Boosts
0
Views
1.9k
Activity
May ’18