5

I have a bunch of OGG files that I would like to convert to WMA (v9) format.

Is there a native Ubuntu tool I can use for this? (Since WMA is a proprietary format, I'm guessing that there won't be a tool that does this in the repos.)

Nathan Osman
  • 32,495

3 Answers3

8

I have found a way to convert OGG files to WMA (v8) files using VLC:

  1. Launch VLC and go to File->Convert / Save

    enter image description here

  2. Add the files you want to convert by clicking 'Add...' and then click 'Convert / Save'

    enter image description here

  3. Select the destination file, remembering to append the .wma extension

    enter image description here

  4. Click the button to create a new profile (this only needs to be done once)

    enter image description here

  5. Give the new profile a name, and select 'ASF / WMV' for encapsulation

    enter image description here

  6. Click the 'Audio' tab and change the settings to match this image (or make any changes if you want a different bitrate or something):

    enter image description here

  7. Click 'Save' and select your new format

    enter image description here

  8. Now simply click 'Start' and your files will be transcoded

Nathan Osman
  • 32,495
7

ffmpeg -i file.ogg -ac 2 -ab 128k file.wma

jet
  • 7,452
4

I really don't know enough about encapsulation and audio formats, and I have no idea why you'd want to take something good and make it worse, BUT...

VLC appears to have the functionality you required.

VLC convert dialogue

Not a full answer, but hopefully something to start you off.

Scaine
  • 11,229