Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

convert mp3 to wav python

from os import path
from pydub import AudioSegment

# files
src = input("In: ")
dst = input("Out: ")

# convert mp3 to wav
sound = AudioSegment.from_mp3(src)
sound.export(dst, format="wav")
Comment

PREVIOUS NEXT
Code Example
Python :: matplotlib label axis 
Python :: heat map correlation seaborn 
Python :: how to print image with cv2 
Python :: python 2 decimal places 
Python :: flask boiler plate 
Python :: anaconda-navigator command not found 
Python :: random pick any file from directory python 
Python :: set cuda visible devices python 
Python :: axis font size matplotlib 
Python :: dictionary with numbers python 
Python :: count none in list python 
Python :: keras import optimizer adam 
Python :: discord.py mute 
Python :: pandas select rows with values in a list 
Python :: convert epoch to date time in python 
Python :: python levenshtein distance 
Python :: python print to file 
Python :: first position dict python 
Python :: beautifulsoup find by class 
Python :: char to binary python 
Python :: read os.system output python 
Python :: fill missing values in column pandas with mean 
Python :: qtimer python 
Python :: exponentiation is the raising of one number to the power of another. this operation is performed using two asterisks **. 
Python :: update my anaconda 
Python :: limit axis matplotlib 
Python :: pandas plot xlabel 
Python :: how to remove all spaces from a string in python 
Python :: Connecting Kaggle to Google Colab 
Python :: python name of current file 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =