LoslegenKostenlos loslegen

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.

Frames from the Bounce TV commercial

The ffmpeg_extract_subclip and VideoFileClip modules have been loaded. The MP4 file has been downloaded as bounce_ad.mp4.

Diese Übung ist Teil des Kurses

Multi-Modal Models with Hugging Face

Kurs anzeigen

Anleitung zur Übung

  • Create a subclip file from bounce_ad.mp4 that begins at 0s and ends at 5s, with the output filename bounce_ad_5s.mp4.
  • Load the new subclip.
  • Extract the audio stream.
  • Write the audio stream to the filename bounce_ad_5s.mp3

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# 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.____
Code bearbeiten und ausführen