1,301 questions
0
votes
0
answers
55
views
getting microphone information from a smartphone video recording [closed]
I have a video with a stereo audio recorded on iPhone 15 Pro. This smartphone model has three microphones. If the phone is in the portrait position, then the microphones are in this order (I think): ...
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, ...
0
votes
0
answers
45
views
IOCTL_KS_PROPERTY wait never satisfied when reading microphone stream
I'm trying to read raw PCM data from a microphone stream in Windows. For this, I'm using KsCreatePin to create a connection to a microphone pin and start reading from it. Before reading, I'm setting ...
0
votes
0
answers
194
views
How to start a FOREGROUND_SERVICE with microphone access in background on Android 14?
I'm developing a child safety app as a pet project.
On the parent's device, there's a map that shows the child's current location.
On the child's device, I run a background service that also includes ...
0
votes
0
answers
51
views
Installing react-native-microphone-stream on expo
I am new in react-native and expo. I am using the latest version of expo and looking for a library that can stream microphone input, then I will feed it to Microsoft speech SDK for speech to text. I ...
2
votes
1
answer
243
views
Trying to build azure speech program that can transcribe and diarize audio real-time, how do I do this on javascript/html? Can't find working examples
I specifically am trying to build an application that can run an html-javascript file that can recognize the speech input from a microphone, transcribe it, and assign it to a speaker, continuously ...
2
votes
1
answer
853
views
Capturing microphone input on macOS using ScreenCaptureKit
I'm having troubles capturing microphone input using ScreenCaptureKit on macOS. (note, macOS 15.0+)
Video capture is going quite fine, but capturing anything arriving from built-in mic, simply get's ...
0
votes
0
answers
47
views
How to revoke microphone/media permissions?
I have created a three.js immersive experience that allows users to walk around an open world.
One specific part of the experience uses the microphone input. As users approach that part, the browser ...
0
votes
1
answer
136
views
We are facing an issue where the app crashes when minimized during livestream
java.lang.RuntimeException: Unable to start service com.app.buildyourownfanbase.helper.CallNotificationService1@76527d with Intent { cmp=com.app.buildyourownfanbase/.helper.CallNotificationService1 }: ...
0
votes
1
answer
93
views
Segmentation Fault Error with pyttsx3 and speech_recognition in Python
I'm encountering a segmentation fault error when running my Python script with pyttsx3 and speech_recognition. Here's a simplified version of my code:
import time
import pyttsx3
import ...
0
votes
1
answer
153
views
Unable to record audio in GCP debian VM
I have been stuck to record audio in a debian vitual machine. uname -a gives: configuration is - 5.10.0-31-cloud-amd64 #1 SMP Debian 5.10.221-1 (2024-07-14) x86_64 GNU/Linux. I have installed pulse ...
1
vote
0
answers
148
views
Flutter WebView: How to Keep Microphone and Camera Active When App is in Background?
I'm developing a Flutter app that utilizes a WebView to access webpages needing microphone and camera functionality. Everything works fine when the app is in the foreground, but the microphone and ...
2
votes
0
answers
524
views
Accessing the microphone from a chrome extension, sidepanel
I'm developing a chrome extension that I would want the users to be able to use their microphone with, using a page that is loaded into the sidepanel (https://developer.chrome.com/docs/extensions/...
0
votes
0
answers
880
views
Permissions Policy Violation: Microphone Not Allowed in Outlook Add-In
I am developing an Outlook add-in that includes a speech recognition feature. Recently, I encountered the following error in the browser console:
outlook-web-16.01.js:20 [Violation] Permissions ...
0
votes
2
answers
146
views
Java application not recording from microphone when packaged using install4j
I have a Java application that uses the Java sound API to record sound from the systems microphone. When run on macOS from the terminal, sound recording works as expected, but no sound is recorded ...
1
vote
0
answers
139
views
need to check frequency of voice from microphone in flutter
I am new to flutter I need to get frequency of voice from microphone, Below is code I used but didn't get any needful answer.
I used a package called fftea for fourier transformation in flutter.
I ...
1
vote
2
answers
918
views
List all actual microphones python
How can I list every actual microphones currently available in python?
Currently i am doing this:
import pyaudio
p = pyaudio.PyAudio()
print("Available audio input devices:")
for i in ...
0
votes
1
answer
103
views
Systemctl is unable to detect input device (bluetooth microphone), but script works manually
I'm building the google assistant on an old raspberry pi (running on Raspberry Pi OS) with a bluetooth speaker including a microphone:
The script itself consists only of activating the env and calling ...
0
votes
0
answers
450
views
Why is Microsoft Visual Studio accessing my microphone?
I am curious, roughly 2 weeks ago Visual Studio started to use my microphone.
Has anybody seen the same behavior and knows why that happens?
Since my softwarephone is an desktop app too I can't ...
0
votes
0
answers
762
views
How do I stream audio from browser mic using JavaScript
My project is a voice-controlled email website. The user has to speak through the browser mic to give in commands. The input audio is expected to not be stored as a file, but instead directly streamed ...
1
vote
0
answers
1k
views
How to Create a Soundboard That Plays Audio Through the Microphone in a Voice Call?
I’ve been diligently searching for a solution on how to play audio (specifically audio files) through the microphone, but so far, I haven’t had any success. My goal is to create a soundboard – ...
0
votes
1
answer
1k
views
Headset microphone is not working on linux
I have an Asus VivoBook S5402ZA laptop with a fresh installation of Ubuntu 22.04. The internal microphone works, but the headset microphone does not. If I connect the headset via a USB hub with a jack,...
0
votes
1
answer
487
views
Audio from mic in Safari (Mac) unexpectedly diminishes in volume after several seconds
I am capturing audio from the computer mic in Safari. The audio I am capturing is of me humming a fixed pitch. For the first few seconds, the audio is recorded at the expected volume. After maybe 5-10 ...
1
vote
0
answers
109
views
How to toggle on / off microphone using Python and also get its current state?
I found the following code that toggles off / on the microphone using Python and it works well (only on windows).
import win32api
import win32gui
WM_APPCOMMAND = 0x319
...
0
votes
1
answer
101
views
Audio routing between apps
I have a Python voice-enabled chatbot that plays and records audio. However, the chatbot is also recognizing its own audio output as input. Is there a way to prevent this? Is there a specific app that ...