35,926 questions
-3
votes
0
answers
17
views
I need this audio plsyer . what player is this [closed]
site :https://onlineradiofm.in/stations/vividh-bharati
I need this audio player for my fm radio site . What is this player script and name . Where do i get it? Thank you for your help
if only Euuph ...
0
votes
2
answers
56
views
How to enumerate MMDevice devices that are USB
There are well documentated ways to enumerate MMDevice audio devices such as:
How do you programatically get a list of a computer's recording devices?
Does anyone know a way to tell if a devce is USB ...
0
votes
3
answers
68
views
Need to make certain sine waves quieter than others when all playing at same time using pysinewave [closed]
I'm trying to play multiple sine waves at once in Python using pysinewave, but I need to make them sound quieter as they go up in pitch. The problem I'm running into is making them at different ...
Advice
0
votes
1
replies
92
views
HTML 5 Audio Player
https://codepen.io/sekedus/pen/ExxjZEz
I have been using the HTML 5 Audio Player with Playlists in a couple of sites for a few years. It works quite well. Up until recently it would advance ...
3
votes
0
answers
97
views
ScreenCaptureKit recording output is corrupted when captureMicrophone is true
I'm working on a screen recording app using ScreenCaptureKit and I've hit a strange issue. My app records the screen to an .mp4 file, and everything works perfectly until the .captureMicrophone is ...
0
votes
3
answers
68
views
pyaudio appending audio to wav file from previous recording
I have pyaudio starting a recording when a GPIO button is pressed then stops the recording when the GPIO button is pressed again, any reason why it's appending the audio to the file. I want a new file ...
2
votes
0
answers
68
views
FMOD Error in Build: "Cannot create FMOD::Sound instance" - AudioClips Fail to Load (Works perfect in Editor)
I’m currently developing a Full Motion Video (FMV) game which, by its nature, contains a very large number of video and audio clips. I’ve encountered a critical issue that only appears in the built ...
1
vote
1
answer
71
views
I'm trying to record audio from my computers speakers and microphone and save it into a single file
I'm trying to record audio from my computers speakers and microphone, the idea is to create a program that can transcribe any meeting, regardless of what I'm using (web cam, speakers, air pods, ...
1
vote
0
answers
51
views
How to enumerate microphone formats
So I found the undocumented API to change sound device formats How to change microphone format programmatically
However, it's still unclear how to enumerate the available endpoint formats that can be ...
1
vote
0
answers
151
views
Implementing a Simple Icecast Client using Python
I am learning Python these days for data-science, ML and network programming amongst other things. I am trying to implement a simple Icecast client to stream live audio to Icecast server such as ...
1
vote
0
answers
98
views
Reflect Windows Sound Settings in MMDevice
This is portacapture x8 format selection in windows sound settings.
Portacapture Input Settings ComboBox
When 2 channel is selected from combobox, in NAudio C# application I can see mmdevice....
1
vote
1
answer
37
views
AudioGraph render device disconnect
I have an AudioGraph
Audio*InputNode.AddOutgoingConnection(AudioDeviceOutputNode)
User pauses audio
leaves computer and Monitor eventually turns off, disconnecting the Sound Output Device
User comes ...
1
vote
1
answer
65
views
How to transcribe audio files (m4a/wav) on Android? Can SpeechRecognizer API be used for this?
I have an audio file (in .m4a / .wav format) stored on the Android device, and I need to transcribe the speech content from it into text.
From my understanding, the built-in SpeechRecognizer API in ...
1
vote
0
answers
40
views
iOS app not playing audio from background despite correct permission setup
I have below simple iOS app with just one screen:
import SwiftUI
import AVFoundation
struct ContentView: View {
let synthesizer = AVSpeechSynthesizer()
let timer = Timer.publish(every: 10, on:...
1
vote
0
answers
58
views
How to prevent CallKit from defaulting to speaker on subsequent calls
I’m developing a VoIP app that uses Linphone and CallKit. Everything works as expected until the user enables the speaker on the native CallKit screen. After that, all subsequent calls start with the ...
1
vote
0
answers
56
views
Mimic iPhone microphone from Mac using Blackhole
I am trying to conduct some automated testing on my iPhone on an app that uses speech for various commands.
My approach will be:
Use a Text to Speech tool to generate the speech I need as various ...
1
vote
1
answer
72
views
Javascript getUserMedia - Detect if any mics are actually active
I'm working on an audio recording feature. I usually work with my macbook closed and noticed a bug where if the mac is closed, the built-in microphone still shows up as an audio input but when i ...
1
vote
1
answer
108
views
React Native: Lock Screen Audio Widget Disappears on Pause (react-native-track-player)
I'm building a React Native app that plays audio using react-native-track-player. Everything works well when the audio is actively playing — I can see the media widget on the lock screen, control ...
0
votes
0
answers
134
views
How do I filter out audio spillage from audio extraction?
I created a transcription and audio extraction Python script using Claude AI and Whisper. I get audio spillage that comes into the audio extracted (the wave form at the start and end of the screenshot)...
2
votes
1
answer
77
views
How can I set my iOS AVAudioSession to return input buffers of <0.1 s?
I'm trying to get short audio samples into my iOS app (in Kotlin Multiplatform). Here's my relatively simple setup (sampleRateInHz is defined elsewhere):
val bufferSize: AVAudioFrameCount = 512u
val ...
1
vote
1
answer
153
views
Next.js 15: Unable to serve static audio file from public directory
Problem Description
I'm trying to play an MP3 audio file in my Next.js 15 application, but the audio files in the public/audio/ directory are not being served. When I check the browser's developer ...
2
votes
1
answer
419
views
expo-audio not consistently playing in silent mode on iOS
I'm developing a Reactive Native app with audio as one of the main features. Recently, I noticed that playing in silent mode on iOS is no longer working and I can't quite figure out why. I have also ...
1
vote
0
answers
57
views
Why is are the arguments to a function I'm putting onto the stack in Uiua not being in the right order later in the function?
My current code is supposed to have a function, SINESYNTH, that takes 2 arguments (length and frequency) and make an audio clip of that length at that note. my code currently looks like:
TOFREQ ← ×220˜...
1
vote
1
answer
27
views
Periodic beeping in live audio stream using Flask-SocketIO and sounddevice — concurrency issue?
Periodic beeping in live audio stream using Flask-SocketIO and sounddevice — concurrency or deployment issue?
Question
I'm building a live audio streaming feature with Flask-SocketIO and sounddevice. ...
0
votes
0
answers
70
views
WaveSurfer.js and audio.play() both trigger playback — how to avoid duplicate sound and multiple waves playing?
I’m currently learning JavaScript and trying to build a simple SoundCloud clone. I’m using WaveSurfer.js for audio waveform visualization, but I’ve run into a couple of issues:
Problem 1: Double ...