Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Gaming / Games / Multimedia / Entertainment > WMA/MP3/OGG compatible media converter?

Forgot Password?
 Gaming / Games / Multimedia / Entertainment   General discussion about Games, video, sound, multimedia, DVD's in Linux

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 09-30-2009   #1 (permalink)
Just Joined!
 
Join Date: Jul 2008
Location: California, USA
Posts: 95
WMA/MP3/OGG compatible media converter?

I was wondering if there is a media converter out there for Linux that can accurately convert a WMA file to an OGG file accurately, and handle at least MP3 files, as well. I tried using Sound Converter, available from the Ubuntu repositories, but it produced some glitchy OGG files from the WMA source files.

I know VLC can do this, and I happen to have it installed. If nothing else, could somebody tell me how to properly use the converter? It's been a while since I last did it, and I don't remember how I got it to work.

I have a few gigabytes of files I want to convert, so bulk conversion is a deal breaker.
arinlares is offline  


Reply With Quote
Old 09-30-2009   #2 (permalink)
Linux Enthusiast
 
Join Date: Mar 2008
Posts: 602
Quote:
Originally Posted by arinlares View Post
I was wondering if there is a media converter out there for Linux that can accurately convert a WMA file to an OGG file accurately, and handle at least MP3 files, as well. I tried using Sound Converter, available from the Ubuntu repositories, but it produced some glitchy OGG files from the WMA source files.
Have you tried to convert to WAV? Is it glitchy too?
__________________
Debian GNU/Linux -- You know you want it.
GNU-Fan is offline   Reply With Quote
Old 09-30-2009   #3 (permalink)
Just Joined!
 
Join Date: Jul 2008
Location: California, USA
Posts: 95
Actually, no, it worked out fine. I went a little farther by converting a test file (a WMA I had tried but came out bad) to WAV, then OGG, and loaded it into VLC, and it worked fine, whereas WMA directly to OGG didn't work out as well. Plus, it's overall twenty minutes faster on my netbook.
arinlares is offline   Reply With Quote
Old 10-03-2009   #4 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
You may want to consider using a terminal program to do the conversions. This way it can also be scripted to run on a whole directory of files.

It looks like ffmpeg can handle the conversion, something like this:
Code:
ffmpeg -i <filename>.wma -acodec libvorbis <filename>.ogg
This will output at the default bit rate of 64k. To increase that to, say, 128k use this:
Code:
ffmpeg -i <filename>.wma -acodec libvorbis -ab 128k <filename>.ogg
For a script that will convert an entire folder of wma files using ffmpeg, Google it. There are many that I found.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 10-11-2009   #5 (permalink)
Just Joined!
 
Join Date: Jul 2008
Location: California, USA
Posts: 95
I can find a whole lot of stuff on batch converting video files, but nothing on audio, more specifically, wma->ogg conversion. The closest I've found was for a FLV to some other video format with the following commands:

Code:
ffmpeg -i $1 -s 176×144 -vcodec h263 -r 25 -b 200 -ab 64 -acodec mp3  -ac 1 -ar 8000 $1.3gp
I have a basic understanding of setting the bitrate, input file, and output file, but this makes no sense to me at all. I'm assuming "$1" refers to all files in the current directory, but I can't seem to figure out how to get this to work for wma->ogg conversion. Here's the best I can think of, which doesn't work:

Code:
ffmpeg -i $1 -acodec libvorbis -ab 128k $1.ogg
Which spits up " -acodec: no such file or directory."
arinlares is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 10:01 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2