Page 6 of 6 FirstFirst ... 456
Results 51 to 53 of 53

Thread: HOWTO: convert wma to mp3

  1. #51
    Join Date
    Sep 2007
    Beans
    109
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Update: HOWTO: convert wma to mp3

    Thanks! The 'Sound Converter' app is just what I was looking for. It's perfect !

  2. #52
    Join Date
    Oct 2007
    Beans
    6

    Re: HOWTO: convert wma to mp3

    I’ve been struggling to find a way to do this without mplayer.
    It’s been a pain the the a** to get it to a reasonably productive state, but this is how it goes:

    1-run the command below to generate a script which will convert your files

    2-check the script for apostrophes or single quites or double quotes in the names of your files

    3-run the script

    Code:
    find -L /path/to/your/mp3/library -iname *.wma -exec echo 'vlc -v  "{}" --sout '\'#transcode{acodec=mp3}:standard\{access=file,dst=\"{}.mp3\",mux=ffmpeg\}\''' \; >> batch_wma2mp3.sh; chmod u+x batch_wma2mp3.sh;
    NB.: you must have ffmpeg installed. If you have DRM protected files, there will be no way to decrypt them with VLC neither with Mplayer. I didn't add the vlc://quit at the end of each command call coz sometimes it will mess up the playlist and just quit without converting the song, that's why you have to close VLC manually.

  3. #53
    Join Date
    Mar 2009
    Location
    East London, South Africa
    Beans
    26

    Re: HOWTO: convert wma to mp3

    Try giving ftransc a shot, web site: http://code.google.com/p/ftransc/

    ftransc uses ffmpeg to decode any audio/video file and pipe the wav file to either lame, faac, mppenc, oggenc to encode to MP3, WMA, MPC, OGG, AAC formats.
    ubuntu -- linux for human beings

Page 6 of 6 FirstFirst ... 456

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
  •