Results 1 to 5 of 5
Is there a program that can rip CD's to Ogg Vorbis, and convert from other compressed formats to Ogg Vorbis (particularily mp3), preferably with a nice GUI? I haven't found ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-27-2005 #1Just Joined!
- Join Date
- Jun 2005
- Posts
- 27
Ripping, encoding and converting software?
Is there a program that can rip CD's to Ogg Vorbis, and convert from other compressed formats to Ogg Vorbis (particularily mp3), preferably with a nice GUI? I haven't found any, am I just bad at searching?
- 07-27-2005 #2
Grip will rip into ogg and you could just use to the command line tool: ogg2mp3 for compression.
- 07-28-2005 #3Just Joined!
- Join Date
- Jun 2005
- Posts
- 27
Isn't ogg2mp3 a one-at-a-time-tool? I don't want to seem overly whiny, but I have a couple of hundred mp3's I need in ogg (for better storage on my mp3 player). Wouldn't that mean a huge amount of work?
- 07-30-2005 #4Linux Engineer
- Join Date
- Feb 2005
- Posts
- 1,044
Not if you write A Cunning Script(tm).
- 08-01-2005 #5
I use a program called ripperX that rips into OGG.
AudioCreator for KDE also rips to Ogg, but I had a few problems with it before.
As far as a bunch of files, put them all in one folder:
voila!Code:#!/usr/bin/perl use strict; print "Enter the Directory that the Files are in: "; chomp(my $the_dir = <STDIN>); my @files = `ls $the_dir -1`; for(@files) { system "mp32ogg $_"; }
By the way, that turns mp3's into oggs. If you want to change oggs to mp3's, change the code in the foreach loop to "ogg2mp3".


Reply With Quote
