jiaaro / pydub

Manipulate audio with a simple and easy high level interface
http://pydub.com
MIT License
8.96k stars 1.05k forks source link

remove default format mp3 #793

Open milahu opened 6 months ago

milahu commented 6 months ago

fix #755

todo: dont use output = NamedTemporaryFile(mode="w+b", delete=False instead, write directly to out_f or write to out_f + ".temp" and on success, rename to out_f to reduce memory usage (tempfile can be on tmpfs) to reduce disk writes (tempfile can be on ssd drive)