Search results for

Popping Sound

19,602 results found

Post

Replies

Boosts

Views

Activity

Bachelor Audio Streaming
Hello fellow developers, I am currently working on my bachelor thesis. Therefore my task is to develop a rudimentary solution to stream 2 channel audio from MacOS to an IOS device over Wifi, highest quality possible. Latency is not a major concern, but keeping it low would be great. So i thought of developing something like Wifi2Hifi. That would probably be as rudimentary as possible. I'm not very deep inside the subject. Still researching and collecting thoughts and ideas. If someone could point me to sources and literature on audio related networking/streaming, i would be glad. Also thoughts on networking protocols i could use, or api's etc., would be greatly appreciated. Thanks a lot.
1
0
257
Jul ’20
Audio processing in the background
I've been trying to generate a waveform from an audio file without having to play it all.Looks like the only solution is using an OfflineAudioContext but this seems to work on ALL the browsers but Safari. Am I missing something?https://codepen.io/nuthinking/pen/LzQqmP?editors=0010Thanks a lot!
0
0
546
May ’18
ReplayKit with background audio
Hi, when I start a screen recording session (with microphone enabled) the phone automatically switch every audio playback from the default speaker to the call speaker (the one in the top, used during phone calls) and it returns normal when I stop the recording.The same result happens from my app using ReplayKit and from iOS 11 system screen recording, it behave the same, every sound (from game, spotify, whatever...) comes only from the top speaker, resulting in a very low volume.I tryed with iPhone 6s, 7 and X with iOS 11.2.2 and iOS 11.2.5, nothing change.I don't understand if this is a bug or a feature, and most of all if I can override this setting in my app, allowing the user to record his voice from microphone with music in the background.Many thanks,Michele
1
0
1.9k
Jan ’18
Audio quality on custom rate
hi, i have a simple avaudioplayer, wich runs with a custom rate from -16% to +16%. If the rate is not exactly 1.0 the Sound quality is really bad.i tried 48khz aiff and wav format And set a 48khz sample rate To my Audio Session as well.quality is still bad... can anyone help me?
2
0
4k
Jun ’15
WebRTC recording audio has buzz
I'm using Release 34 (Safari 11.0, WebKit 12604.1.27.0.1)I use the following code to get microphone input and forward the audio to speakers -- note that I use headset so no feedback.var _streamSource; var _audioContext= new webkitAudioContext(); function startMic() { var constraints = { audio:true, video:false }; navigator.mediaDevices.getUserMedia(constraints). then(micStarted).catch(micDenied); } function micStarted(stream) { _streamSource= _audioContext.createMediaStreamSource(stream); _streamSource.connect(_audioContext.destination); } function micDenied(error) { console.log(error) }The audio playback of mic input is horribly distorted with a buzzing sound which makes it hard to listen to. I tried the same code in other browsers and the microphone audio plays back fine without buzz.
1
0
1.4k
Jul ’17
Stereo recording and audio quality
Hello, I started to set audio stereo recording (both audio and video are recorded) and the audio quality seems to be lower than quality obtained with native camera application (configured for stereo). Using console to check the log, I found a difference between camera app and mine regarding MXSessionMode (of mediaserverd) in fact, camera application gives MXSessionMode = SpatialRecording and mine MXSessionMode = VideoRecording How can I configure capture session to finally have MXSessionMode = SpatialRecording? Any suggestion? Best regards
2
0
1.4k
Oct ’23
Import of external recorded sound
Dear AppleI am currently using your iPad Pro 12,9” for a lot of my work editing using Lightroom Mobila, Photoshop mobile and the LumaFusion video app.As a photographer it was great to get the support of RAW files, especially when importing the DSLR picture files from SDcard into the ipad.But when doing video editing on the iPad, I am missing the ability to import external recorded sound from an SDcard into the iPad. The Apple Lightning adapter is only supporting video and picture files, but not sound files. Whe is that?The only way I can get my external recorded sound into the LumaFusion video app, is to use a wifi hotspot unit that support SDcard. By using that unit i am able to connect my ipad to the hotspot and transfer the audio files into the ipad, where I then can use it for my video editing.Juse downloaded the beta version of iOS 11 on my iPad Pro and was hoping that the function of letting me import sound files into the ipad by using the original Apple ligh
1
0
668
Jul ’17
SwiftUI Context Menu Popping Up Whole List
When I used Context Menu for each photo in three columns. So, the code is like below: List { LazyVGrid(columns: columns) { View() .contextMenu { Button() } } } This just pop up whole list not individual element when I long press the element to see context menu. The whole list is highlighted when context menu appears. How can I make this to highlight individual element not the whole list? If I remove any of List or LazyVGrid the problem fix. But the columns are not in the way I want. Also, I don't want to change List to VStack or ScrollView which don't have refreshControl. Thanks in advance.
3
0
1.8k
Aug ’21
Audio Crackling in Playback
when using my 2015 Version MacBook pro plugged into my audio interface for playback I'm getting a crackling noise. When I playback directly from my mac with headphones or through the CPU speakers it plays fine. I've tried replacing the interface, cords & wires and still no luck. if I cant fix this I'll probably sell my mac.
0
0
1.4k
May ’22
Record and PlayBack audio
Hello,I want to do recording and playing back audio on my iOS device.Can someone give me a short hint, which classes are useful for this use case?I googled around this topic a lot and read a lot of different things.But I'm not really sure, what classes are the right one for me.Examples: AVAudioSinkNode, AVAudioSourceNode, AVAudioSession, AVAudioRecorder,AVAudioPlayer, AVAudioQueue etc. Maybe someone could show me a code snippet or sample project (if possible).My current state: I would try it with AVAudioRecorder and AVAudioPlayer.My Recorder class logic:if let dir = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first { let file = dir.appendingPathComponent(audiofile.wav) // setup audio session with crazy framework let format: [String: Any] = [AVSampleRateKey: 44100.0, AVNumberOfChannelsKey : 2, AVFormatIDKey: kAudioFormatLinearPCM, AVEncoderBitRateKey: 320000, AVEncoderAudioQualityKey : AVAudioQuality.high.rawValue] recorder = try AVAudioRecorder.init(url: file, sett
0
0
2.7k
Sep ’19
Modal View Controller is dismissed when Peek and popped on link in UITextView
I have a link in a UITextView in a ViewController which is part of a UINavigationControler, which I present as Modal. When I do a Peek and pop (force touch /3d touch) twice on the link it opens the link in Safari which is default behavior. But When I go back to my app, the View controller is dismissed. Does anyone have encountered this issue and know how to stop the view controller being dismissed.Thanks in Advance.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
274
Jul ’16