Open In App

MoviePy – Getting Audio part from the Video File Clip

Last Updated : 18 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get audio part of the video file clip in MoviePy. MoviePy is a Python module for video editing, which can be used for basic operations on videos and GIF’s. Video is formed by the frames, combination of frames creates a video each frame is an individual image. An audio file format is a file format for storing digital audio data on a computer system. The bit layout of the audio data is called the audio coding format and can be uncompressed, or compressed to reduce the file size, often using lossy compression. We can load the audio file with the help of AudioFileClip method.

In order to do this we will use audio attribute with the video file clip object

Syntax : clip.audio

Argument : It takes no argument

Return : It returns AudioFileClip object

Below is the implementation




# Import everything needed to edit video clips
from moviepy.editor import *
  
# loading video gfg
clip = VideoFileClip("geeks.mp4")
  
# getting only first 3 seconds
clip = clip.subclip(0, 3)
  
# getting audio from the clip
audioclip = clip.audio
  
# printing audio clip
print(audioclip)


Output :

moviepy.audio.io.AudioFileClip.AudioFileClip object at 0x0000028BA1F6E488

Another example




# Import everything needed to edit video clips
from moviepy.editor import *
  
   
# loading video dsa gfg intro video
clip = VideoFileClip("dsa_geek.webm")
  
  
# getting only first 3 seconds
clip = clip.subclip(0, 3)
  
# getting audio from the clip
audioclip = clip.audio
  
# printing audio clip
print(audioclip)


Output :

None


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads