Open In App

Video to Audio convert using Python

Last Updated : 24 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisites: Python Programming Language There are several libraries and techniques available in Python for the conversion of Video to Audio. One such library is Movie Editor. MoviePy can read and write all the most common audio and video formats, including GIF, and runs on Windows/Mac/Linux, with Python 2.7+ and 3 (or only Python 3.4+ from v.1.0)

Installation

To install the Movie Editor Library, open terminal and write :

pip install moviepy

Note: This module automatically installs FFmpeg. However, you might prompt to install in some cases.

Installing FFmpeg

Windows:

  • Download the build from here.
  • Unzip the build in any folder.
  • Open the CMD with administrative rights.
  • Run the below command for setting the environment variable.
setx /M PATH "path\to\ffmpeg\bin;%PATH%"

Linux: Write the below commands in the terminal.

sudo add-apt-repository ppa:mc3man/trusty-media  
sudo apt-get update  
sudo apt-get install ffmpeg  
sudo apt-get install frei0r-plugins

Implementation 

Python3




# Python code to convert video to audio
import moviepy.editor as mp
 
# Insert Local Video File Path
clip = mp.VideoFileClip(r"Video File")
 
# Insert Local Audio File Path
clip.audio.write_audiofile(r"Audio File")


Output: python-video-to-audio


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

Similar Reads