Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

mp4 to wav python

from os import path
from pydub import AudioSegment

# files
src = "test.mp4"
dst = "test.wav"

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

PREVIOUS NEXT
Code Example
Python :: sns lineplot title 
Python :: python format only 1 decimal place 
Python :: python - exclude rowin data frame based on value 
Python :: python method to filter vowels in a string 
Python :: remove scientific notation python matplotlib 
Python :: display text in pygame 
Python :: how to use python to print multiplication table 
Python :: python index of max value in list 
Python :: stop a subprocess python 
Python :: return the count of a given substring from a string python 
Python :: access to numbers in classification_report - sklearn 
Python :: cv2 resize 
Python :: pandas lambda if else 
Python :: set axis ticks matplotlib 
Python :: python f string decimal places 
Python :: calculate highest frequency or mode in pandas dataframe 
Python :: python parser txt to excel 
Python :: python generate uid 
Python :: django related_name abstract class 
Python :: hcf program in python 
Python :: DATA={ "name":"keerthanaa", "age":16, "gender":"female"} print(DATA.popitem()) 
Python :: pandas resample backfill 
Python :: python f string columns 
Python :: matplotlib plot 
Python :: how to get hostname from ip python 
Python :: numpy count the number of 1s in array 
Python :: dropdown menu for qheaderview python 
Python :: write a program to check whether a character is vowel or consonant in python 
Python :: pandas show column types 
Python :: python temp directory 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =