ComenzarEmpieza gratis

Turning it down... then up

Speech recognition works best on clean, audible speech. If your audio files are too quiet or too loud, it can hinder transcription.

In this exercise, you'll see how to make an AudioSegment quieter or louder.

Since the play() function won't play your changes in the DataCamp classroom.

The baseline audio file, volume_adjusted.wav can be heard here.

Este ejercicio forma parte del curso

Spoken Language Processing in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

from pydub import AudioSegment

# Import audio file
volume_adjusted = AudioSegment.from_file(____)

# Lower the volume by 60 dB
quiet_volume_adjusted = ____ - _____
Editar y ejecutar código