Search results for

“Popping Sound”

20,613 results found

Post

Replies

Boosts

Views

Activity

Small audio glitch
I am getting a small audio glitch on Apple TV 2 & 3 when playing back a stream with multiple audio bitrates only as alternate audio (not muxed in with the video) that is occuring just as the playback first switches between the audio streams.Does anyone have a way to generate a known good reference stream with multiple audio tracks that works with Fairplay on Apple TV gen 2 and gen 3?
0
0
343
Mar ’17
SwiftUI sound manager singleton that can play two sounds at once?
Hi all, fairly new to SwiftUI, I'm following a sound manager class recipe, and it works fine if I just want to play one sound at a time, but now in the app I'm working on I need the sounds to overlap each other sometimes, and the singleton I'm using can't seem to do that. I'm not sure if it's the instance of the class, or the instance of the AVAudioPlayer that's the problem. Here is the code I'm using... import Foundation import AVKit class SoundManager { static let instance = SoundManager() var player: AVAudioPlayer? func playMySound() { guard let url = Bundle.main.url(forResource: mySound, withExtension: .wav) else { return } do { player = try AVAudioPlayer(contentsOf: url) player?.play() } catch let error { print(Error playing sound. (error.localizedDescription)) } } // each additional sound is another func like above. I've poked around on SO and other places looking for better code examples, but nothing I have found works. Any help would be appreciated! Thanks!
1
0
1.3k
Aug ’22
How to sync video and audio?
Background I use AVAssetWriterInput.append to append sample buffer to the writer. Sometimes, I switch off the audio input(if user wants to temporarily disable audio input), so the append method will not be executed while the append method in video input will always be executed. Problem If user pause the audio and resume it later. The audio after resuming will immediately begin when user pause it (in the final video). Example '=' refers to CMSampleBuffer. '|' means user paused the audio input. Video: ---------------================================= Audio(expected): ----=======|----------------============= Audio(I got): ---------=======|=============---------------- I have printed the presentationTime from the audio sample buffer, it turns out it's correct. Maybe my understanding to the AVAssetWriterInput.append is wrong? My current solution is to always append the buffer, but when user wants to pause, I simply append an empty SampleBuffer
1
0
1.3k
Oct ’22
Reply to Fixing Cracking and Popping Sound on my Mac
I had the same issue and Apple replaces my Mac. Worked fine and now started again. the only app I use that uses Intel is the Epson printer drivers and apps. None of my other Macs (intel and M1) have this issue! only the 14 M1 Pro. The popping and cracking sound happens during online meeting (just talk) and any music app especially Apple Music. I guess Apple are moving their resources to the iPhone division -).
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’22
Reply to Carplay not working after ios 18 update
Have a 2025 Honda CR-V hybrid touring with the Bose speaker system…iPhone 15 running iOS 18.1. Messages won’t pop up anymore on the infotainment screen when another app is running, like Sirius. The messages and all Siri things only play through the front speaker in the dash behind the infotainment screen, and Siri causes all other audio to stop abruptly while listening/speaking.
Nov ’24
safari can not play audio or visit audio by url
We have a program used html5 audio, it works well in IE, Chrome, Firefox, but failed in Safari of IOS. Could you help?zk/html:<audio id=au_captcha src=sound/A.wav height=0px width=0px></audio>Java:@Listen(onOK=#tbtnPlaySound)public void onOKTbtnPlaySound() {au_captcha.setSrc(/playSoundServlet?r= + Math.random()); au_captcha.setAutostart(true); au_captcha.setLoop(false); au_captcha.setVisible(true); au_captcha.invalidate();}playSoundServletprivate void playCaptchaSound(HttpServletRequest request,HttpServletResponse response, HttpSession session) { String sPath = request.getSession().getServletContext() .getRealPath(/).toString().replace(, /) + sound/; // Set to expire far in the past. response.setDateHeader(Expires, 0); // Set standard HTTP/1.1 no-cache headers. response.setHeader(Cache-Control, no-store, no-cache, must-revalidate); // Set IE extended HTTP/1.1 no-cache headers (use addHeader). response.addHeader(Cache-Control, post-check=0, pre-check=0);
1
0
601
Jan ’17
Audio Delay
Hi, I am facing a really strange issue.I have a wordpress website in which I have used html 5 audio tag .Whenever I play audio it delays it takes 2-3 sec to start on Safari. On other browsers it is working fine.I have done lot's of research and tried many things JS scripts but nothing worked.Can you please check and let me know any solution for this. page link : dev.one-button.de/create-your-song-with-name/ Thanks
2
0
845
Aug ’20
Low sound
On my iPad Mini 3 the sound that is coming out of the speakers is very low. The volume level is set to max and limit volume is off. Can hardly hear the lock sound when locking. Music is quiet and so are videos in Safari. All was fine in iOS 8.3. Only started when installed the beta. I also have the beta in my iPhone 6 and that is fine. Only effecting iPad Mini 3.
3
0
919
Jun ’15
sound effect
HiThere are a couple of integrated system sounds -- is it possible to access to those for playback in an own watchkit 1 app?I know in watchos 2 this will become possible, but what about 1?ThanksMarco
0
0
271
Jun ’15
Bluetooth sound collection Blocking audio playback?on macOS
I use openal to record and use openal to play ; use QT demo to do the communication. When I put on the Bluetooth headset, as long as I turn on the audio record by BT, the audio playback will be blocked, unable to consume data. And the trumpet is black-color at this time; But when the trumpet is gray, the record will not block the playback,i can play and record . It's a random event。 I wonder if there is a program that can detect or change this blocking?
0
0
1.1k
Mar ’21
Small audio glitch
I am getting a small audio glitch on Apple TV 2 & 3 when playing back a stream with multiple audio bitrates only as alternate audio (not muxed in with the video) that is occuring just as the playback first switches between the audio streams.Does anyone have a way to generate a known good reference stream with multiple audio tracks that works with Fairplay on Apple TV gen 2 and gen 3?
Replies
0
Boosts
0
Views
343
Activity
Mar ’17
SwiftUI sound manager singleton that can play two sounds at once?
Hi all, fairly new to SwiftUI, I'm following a sound manager class recipe, and it works fine if I just want to play one sound at a time, but now in the app I'm working on I need the sounds to overlap each other sometimes, and the singleton I'm using can't seem to do that. I'm not sure if it's the instance of the class, or the instance of the AVAudioPlayer that's the problem. Here is the code I'm using... import Foundation import AVKit class SoundManager { static let instance = SoundManager() var player: AVAudioPlayer? func playMySound() { guard let url = Bundle.main.url(forResource: mySound, withExtension: .wav) else { return } do { player = try AVAudioPlayer(contentsOf: url) player?.play() } catch let error { print(Error playing sound. (error.localizedDescription)) } } // each additional sound is another func like above. I've poked around on SO and other places looking for better code examples, but nothing I have found works. Any help would be appreciated! Thanks!
Replies
1
Boosts
0
Views
1.3k
Activity
Aug ’22
How to sync video and audio?
Background I use AVAssetWriterInput.append to append sample buffer to the writer. Sometimes, I switch off the audio input(if user wants to temporarily disable audio input), so the append method will not be executed while the append method in video input will always be executed. Problem If user pause the audio and resume it later. The audio after resuming will immediately begin when user pause it (in the final video). Example '=' refers to CMSampleBuffer. '|' means user paused the audio input. Video: ---------------================================= Audio(expected): ----=======|----------------============= Audio(I got): ---------=======|=============---------------- I have printed the presentationTime from the audio sample buffer, it turns out it's correct. Maybe my understanding to the AVAssetWriterInput.append is wrong? My current solution is to always append the buffer, but when user wants to pause, I simply append an empty SampleBuffer
Replies
1
Boosts
0
Views
1.3k
Activity
Oct ’22
Reply to Fixing Cracking and Popping Sound on my Mac
I had the same issue and Apple replaces my Mac. Worked fine and now started again. the only app I use that uses Intel is the Epson printer drivers and apps. None of my other Macs (intel and M1) have this issue! only the 14 M1 Pro. The popping and cracking sound happens during online meeting (just talk) and any music app especially Apple Music. I guess Apple are moving their resources to the iPhone division -).
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Carplay not working after ios 18 update
Have a 2025 Honda CR-V hybrid touring with the Bose speaker system…iPhone 15 running iOS 18.1. Messages won’t pop up anymore on the infotainment screen when another app is running, like Sirius. The messages and all Siri things only play through the front speaker in the dash behind the infotainment screen, and Siri causes all other audio to stop abruptly while listening/speaking.
Replies
Boosts
Views
Activity
Nov ’24
Accessing Audio of FxPlug?
Is there a way for an FXPlug to access the Source audio? Or do we need to make an AU plugin, apply it to a audio source [both video or audio track], and feed the info via shared memory to an FXPlug? Is there an AU plugin for external processes to listen to the audio?
Replies
0
Boosts
0
Views
927
Activity
Feb ’24
safari can not play audio or visit audio by url
We have a program used html5 audio, it works well in IE, Chrome, Firefox, but failed in Safari of IOS. Could you help?zk/html:<audio id=au_captcha src=sound/A.wav height=0px width=0px></audio>Java:@Listen(onOK=#tbtnPlaySound)public void onOKTbtnPlaySound() {au_captcha.setSrc(/playSoundServlet?r= + Math.random()); au_captcha.setAutostart(true); au_captcha.setLoop(false); au_captcha.setVisible(true); au_captcha.invalidate();}playSoundServletprivate void playCaptchaSound(HttpServletRequest request,HttpServletResponse response, HttpSession session) { String sPath = request.getSession().getServletContext() .getRealPath(/).toString().replace(, /) + sound/; // Set to expire far in the past. response.setDateHeader(Expires, 0); // Set standard HTTP/1.1 no-cache headers. response.setHeader(Cache-Control, no-store, no-cache, must-revalidate); // Set IE extended HTTP/1.1 no-cache headers (use addHeader). response.addHeader(Cache-Control, post-check=0, pre-check=0);
Replies
1
Boosts
0
Views
601
Activity
Jan ’17
Audio Delay
Hi, I am facing a really strange issue.I have a wordpress website in which I have used html 5 audio tag .Whenever I play audio it delays it takes 2-3 sec to start on Safari. On other browsers it is working fine.I have done lot's of research and tried many things JS scripts but nothing worked.Can you please check and let me know any solution for this. page link : dev.one-button.de/create-your-song-with-name/ Thanks
Replies
2
Boosts
0
Views
845
Activity
Aug ’20
Audio gets disabled
Audio getting disabled, Not able to control audio, When opening music player audio works but not on instagram or any other apps. Audio button on notification bar is greyed out as getting disabled.
Replies
1
Boosts
0
Views
902
Activity
Jul ’24
Swift Playgrounds Sound Pad book audio device error
Sound Pad throws an error on the audio device on iPad. Sound Pad Version 1.0.0 3 April 2023 Swift 5.8 Edition A fatal error was found in AudioPlayer.swift Line which causes this var engine: AVAudioEngine
Replies
1
Boosts
0
Views
923
Activity
Sep ’23
Audio buffer access to downloaded encrypted HLS audio stream
If I use AVAssetDownloadTask to download an encrypted audio-only HLS stream, is it possible to get access to the raw audio data, for the purposes of integrating with AVAudioEngine, AVAudioPlayerNode, and associated effects? If so, what's the process like for doing that? Thanks!
Replies
0
Boosts
0
Views
966
Activity
Feb ’21
Low sound
On my iPad Mini 3 the sound that is coming out of the speakers is very low. The volume level is set to max and limit volume is off. Can hardly hear the lock sound when locking. Music is quiet and so are videos in Safari. All was fine in iOS 8.3. Only started when installed the beta. I also have the beta in my iPhone 6 and that is fine. Only effecting iPad Mini 3.
Replies
3
Boosts
0
Views
919
Activity
Jun ’15
sound effect
HiThere are a couple of integrated system sounds -- is it possible to access to those for playback in an own watchkit 1 app?I know in watchos 2 this will become possible, but what about 1?ThanksMarco
Replies
0
Boosts
0
Views
271
Activity
Jun ’15
Bluetooth sound collection Blocking audio playback?on macOS
I use openal to record and use openal to play ; use QT demo to do the communication. When I put on the Bluetooth headset, as long as I turn on the audio record by BT, the audio playback will be blocked, unable to consume data. And the trumpet is black-color at this time; But when the trumpet is gray, the record will not block the playback,i can play and record . It's a random event。 I wonder if there is a program that can detect or change this blocking?
Replies
0
Boosts
0
Views
1.1k
Activity
Mar ’21
Safari Version 11.1 (13605.1.33.1.4) pop-up banner
how do i turn off that annoying pop-up banner ? :This webpage is using significant energy. Closing it may improve the responsiveness of your Mac
Replies
0
Boosts
0
Views
638
Activity
May ’18