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
.
This exercise is part of the course
Multi-Modal Models with Hugging Face
Exercise instructions
- Create a subclip file from
bounce_ad.mp4
that 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
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# 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.____