Video audio splitting
In this exercise, you will be splitting a video advertising Bounce fabric softener from the 1980s. This is necessary so that we can isolate the image and audio inputs necessary for the individual image and audio classifier models.

The ffmpeg_extract_subclip and VideoFileClip modules have been loaded. The MP4 file has been downloaded as bounce_ad.mp4.
Este ejercicio forma parte del curso
Multi-Modal Models with Hugging Face
Instrucciones del ejercicio
- Create a subclip file from
bounce_ad.mp4that begins at 0s and ends at 5s, with the output filenamebounce_ad_5s.mp4. - Load the new subclip.
- Extract the audio stream.
- Write the audio stream to the filename
bounce_ad_5s.mp3
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create a subclip file from bounce_ad.mp4
ffmpeg_extract_subclip(____)
# Load the new subclip
video = ____
# Extract the audio stream
audio = ____
# Write the audio stream
audio.____