-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why won't it save my audio when I use this with SoundFile? #153
Comments
Anyone? |
You should provide a minimally working example, with the class definition,
as well as an entry point section, e.g. `if __name__ == "__main__":` where
you show How everything is being called.
The code you provided is barely useless for anyone who isn't you.
Is ir multiprocessing? async? multithreading? all sync? are you sure the
list you are appending is the same you are passing as arg to soundfile?
Please, help us help you
Em seg, 1 de ago de 2022 20:03, ughstudios ***@***.***>
escreveu:
… Anyone?
—
Reply to this email directly, view it on GitHub
<#153 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJPYUKGKDOCIVA263VQYGI3VXBJU7ANCNFSM55I6QKTA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Here's an example directly from my code. Look at the function at the bottom, that's the entrypoint |
If you want help, put in some effort. Build a minimal example code, not a three-screen dump. Your problem is, though, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have the following code. The concept here is that as long as
get_is_recording()
is returning true, then we call "capture_frames" which simply parses the data, and adds it to alist
. But when I try to write it, it's always being written to a file with 0 kb.What's wrong here?
The text was updated successfully, but these errors were encountered: