Search results for

“Popping Sound”

20,420 results found

Post

Replies

Boosts

Views

Activity

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
599
Jan ’17
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
[NavigationStack] No animation on push after programmatically pop view
Hello! As written in the post title, when I try to pop view programmatically, the next push transition doesn't have animations. Specifically, I pop view programmatically by removing the last element or all the elements from the path array. If I pop the view by tapping the system back button, the animations on push transitions work correctly. Here an example of the code I am using with the navigationStack: struct ContentView: View { @Binding var navigationPath: [Int] var body: some View { NavigationStack(path: $navigationPath) { DetailView(level: 0) .navigationDestination(for: Int.self, destination: DetailView.init) } } } Furthermore, I have noticed that if I embed the DetailView of my example in a List, the push animations works always in the correct way using the programmatically pop view. Is there any workaround which could solve the problem? Thank you in advance!
1
0
1.3k
Jul ’23
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
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
842
Aug ’20
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
266
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
1k
Mar ’21
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
599
Activity
Jan ’17
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
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
873
Activity
Sep ’23
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
[NavigationStack] No animation on push after programmatically pop view
Hello! As written in the post title, when I try to pop view programmatically, the next push transition doesn't have animations. Specifically, I pop view programmatically by removing the last element or all the elements from the path array. If I pop the view by tapping the system back button, the animations on push transitions work correctly. Here an example of the code I am using with the navigationStack: struct ContentView: View { @Binding var navigationPath: [Int] var body: some View { NavigationStack(path: $navigationPath) { DetailView(level: 0) .navigationDestination(for: Int.self, destination: DetailView.init) } } } Furthermore, I have noticed that if I embed the DetailView of my example in a List, the push animations works always in the correct way using the programmatically pop view. Is there any workaround which could solve the problem? Thank you in advance!
Replies
1
Boosts
0
Views
1.3k
Activity
Jul ’23
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
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
963
Activity
Feb ’21
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
846
Activity
Feb ’24
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
842
Activity
Aug ’20
LivePhotosKit.Player audio support
Does LivePhotosKit have audio support? I can not hear sound from the LivePhotos hosted online using LivePhotosKit. Is there an audio option needed to be declared? Thanks!
Replies
2
Boosts
0
Views
562
Activity
Sep ’17
Sound recognition
Can I use Apple's sound recognition in my augmented reality app to trigger content ? Or is there another source I can use?
Replies
0
Boosts
0
Views
748
Activity
May ’24
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
266
Activity
Jun ’15
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
637
Activity
May ’18
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
1k
Activity
Mar ’21