Skip to content

Muthii's blog

Just another page out of my life

Tag: convert m4b to mp3

Posted on August 10, 2009August 13, 2009

Convert m4b to mp3

For a single file:

ffmpeg -i -acodec libmp3lame -ar 22050

For a bunch of M4B files:

for m4b in $(ls -1 *.m4b); do ffmpeg -i $m4b -acodec libmp3lame -ar 22050 ${m4b}.mp3; done
September 2025
S M T W T F S
 123456
78910111213
14151617181920
21222324252627
282930  
« Nov    
  • Code
  • Computer
  • Family
  • Health
  • Internet
  • Java
  • Life
  • Linux
  • Linux Scripts
  • Old
  • server
  • Software
  • Windows
  • Forward ROOT mail to a user
  • Setup Couchpotato with virtualenv
  • java.lang.NoSuchMethodException: sun.misc.Unsafe.defineClass
  • Chomebook Secure Shell – Remove ssh key from known_hosts
  • No appropriate protocol
Proudly powered by WordPress