Skip to content
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

Convert audio recording in 'webm' to 'flac' format #100

Open
Vishav3 opened this issue Jul 14, 2021 · 1 comment
Open

Convert audio recording in 'webm' to 'flac' format #100

Vishav3 opened this issue Jul 14, 2021 · 1 comment

Comments

@Vishav3
Copy link

Vishav3 commented Jul 14, 2021

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:
image

Can anyone suggest where I am going wrong?

@Vishav3 Vishav3 changed the title Convert audio recording in webm format to 'flac' Convert audio recording in 'webm' to 'flac' format Jul 14, 2021
@maartenbreddels
Copy link
Owner

Not related to this project, still curious if you managed to solve this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants