Results 1 to 5 of 5

Thread: Convert wma to mp3 in linux

  1. #1
    Join Date
    Jul 2009
    Posts
    69

    Convert wma to mp3 in linux

    I have many files in wma format, i want to convert wma to mp3 in linux operating system. I have ubuntu 9.04. So please guide me according me...

  2. #2
    Join Date
    Jan 2009
    Posts
    180

    Re: Convert wma to mp3 in linux

    Download all the necessary codecs for wma and mp3 encoding/decoding. Also there may be some conversion tool in linux too as in windows, but i'm not sure about linux as i'm still a noob. If anybody knows of any such tool do post, will help us both...

  3. #3
    Join Date
    Jan 2008
    Posts
    3,388

    Re: Convert wma to mp3 in linux

    Ok, here is a bash script to do this, but before you run this, remove all the space and convert the names to lower case and name it somthing simple as abc123.wma or so. Then save this script and run it, then after the files are converted, manually rename the extension from wav to mp3. As this script will convert the file to wma to wav and wav to mp3 but the renaming from wav to mp3 will be manual. :
    Code:
    for d in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm -waveheader $d && lame -m s audiodump.wav -o $d; done

  4. #4
    Join Date
    Jan 2009
    Posts
    289

    Re: Convert wma to mp3 in linux

    Will this script really work? I hope it does, i'm gonna give it a try as soon as i can... Thanks for the valuable info... But i notice that mplayer and lame codec must be installed... But still its a very nice piece of information

  5. #5
    project Guest

    Re: Convert wma to mp3 in linux

    Hi all,

    There is a nautilus script for this in the Ubuntu repo’s.

    sudo apt-get install nautilus-script-audio-convert

    Right click file then convert, nice n’ easy.

Similar Threads

  1. How to convert videos in the Linux??
    By Loin in forum Operating Systems
    Replies: 4
    Last Post: 29-11-2011, 04:34 PM
  2. Convert files on Linux using Sansa media converter
    By Jaithra in forum Windows Software
    Replies: 6
    Last Post: 25-07-2011, 09:01 PM
  3. Convert flv to mp3 on Linux platform
    By GarySober in forum Windows Software
    Replies: 5
    Last Post: 09-11-2010, 01:07 PM
  4. help me convert doc to pdf in linux
    By The!Winston in forum Operating Systems
    Replies: 6
    Last Post: 14-10-2010, 09:38 AM
  5. Convert DivX to DVD in Linux
    By Deepest BLUE in forum Operating Systems
    Replies: 3
    Last Post: 10-11-2009, 10:22 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,741,069.27975 seconds with 16 queries