We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to convert audio recording in webm format to 'flac' Below is my code:
import time camera = CameraStream(constraints={'audio': True,'video': False}) recorder = AudioRecorder(stream=camera, format='webm') recorder.recording = True time.sleep(5) recorder.recording = False recorder.audio.autoplay = False ipd.display(recorder.audio) with BytesIO(recorder.audio.value) as f: audioFile = AudioSegment.from_file(f, format='webm') with BytesIO() as f: audioFile.export(f, format='flac') audioBytes = f.getvalue()
I am getting the following error:
Can anyone suggest where I am going wrong?
The text was updated successfully, but these errors were encountered:
Not related to this project, still curious if you managed to solve this.
Sorry, something went wrong.
No branches or pull requests
I am trying to convert audio recording in webm format to 'flac'
Below is my code:
import time
camera = CameraStream(constraints={'audio': True,'video': False})
recorder = AudioRecorder(stream=camera, format='webm')
recorder.recording = True
time.sleep(5)
recorder.recording = False
recorder.audio.autoplay = False
ipd.display(recorder.audio)
with BytesIO(recorder.audio.value) as f:
audioFile = AudioSegment.from_file(f, format='webm')
with BytesIO() as f:
audioFile.export(f, format='flac')
audioBytes = f.getvalue()
I am getting the following error:
Can anyone suggest where I am going wrong?
The text was updated successfully, but these errors were encountered: