Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 149 章 Audio

目录

149.1. lame

149.1. lame

		
lame input.wav output.mp3		
		
		
		
# Re-encode existing MP3 to 64 kbps MP3
lame -b 64 original.mp3 new.mp3	
		
		
		
# By default, lame uses constant bit rate (CBR) encoding. 
# You can also use average bit rate (ABR) encoding, 
# e.g. for an average bit rate of 123 kbps:
lame --abr 123 input.wav output.mp3
		
		
		
# or variable (VBR) encoding, e.g. between 32 kbps and 192 kbps:
lame -v -b 32 -B 192 input.wav output.mp3