ggerganov / whisper.cpp

Port of OpenAI's Whisper model in C/C++
MIT License
35.71k stars 3.64k forks source link

Ubuntu 22.04 - tested commit 8fac645 - microphone is not passing audio to talk-llama , older builds ( from a month passing microphone audio ) #2107

Open mirek190 opened 6 months ago

mirek190 commented 6 months ago

Hi

Linux - ubuntu 22.04 Tested commit 8fac645 - microphone is not passing audio to talk-llama , older builds ( from a month passing microphone audio and transcribe text from audio ) I also tested via test txt file texx-to-audio.txt under examples and working. Responding and responding but cannot hear nothing via microphone ( is initialized and no errors )

przemoc commented 6 months ago

Thank you for the report.

Would you be willing to use git bisect to find a commit which introduced the issue?

git bisect start
git bisect bad 8fac6455ffeb0a0950a84e790ddb74f7290d33c4
git bisect good GOOD_REVISION # revision that know and tested to be good

# repeat below

# build and test newly chosen commit
make clean && make talk-llama -j $(nproc)
./talk-llama # with whatever options you're using
git bisect bad # or git bisect good - mark current commit as good or bad

# repeat until binary search space exhausted
mirek190 commented 6 months ago

I'll try Report later