Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 13th January 2006, 03:34 AM
robghealey Offline
Registered User
 
Join Date: Apr 2004
Location: Tacoma, WA
Age: 43
Posts: 455
Talking convert ogg to mp3

Does anyone know if there is a program for converting ogg to mp3?

Your quick response will be greatly appreciated?
__________________
Sincerely,
Rob

"Deliberately choose to surround yourself with people that inspire you to greatness!"
Reply With Quote
  #2  
Old 13th January 2006, 04:06 AM
nlkrio's Avatar
nlkrio Offline
Registered User
 
Join Date: Jun 2005
Location: Athens-Greece
Posts: 1,331
if you search you have found many threads like this

http://forums.fedoraforum.org/forum/...hlight=ogg+mp3

good luck
__________________
Drink more beer but never drive !!!
:) :p :eek:
Reply With Quote
  #3  
Old 14th January 2006, 01:45 AM
robghealey Offline
Registered User
 
Join Date: Apr 2004
Location: Tacoma, WA
Age: 43
Posts: 455
I found another way to do it as well. I can't get the nautilus script to work for me. I am not sure what I did wrong.

normalize-mp3 --mp3 *.ogg but it doesn't retain the metatag information! Does anyone know how to keep the metatag info?
__________________
Sincerely,
Rob

"Deliberately choose to surround yourself with people that inspire you to greatness!"
Reply With Quote
  #4  
Old 15th January 2006, 01:24 AM
LinuxHippy Offline
Registered User
 
Join Date: May 2004
Location: Philadelphia, PA-USA
Age: 40
Posts: 869
audacity for ogg>mp3

lame for tags
__________________
Marty

My Site: 777.servemp3.com
Reply With Quote
  #5  
Old 15th January 2006, 01:49 AM
Firewing1's Avatar
Firewing1 Offline
Administrator
 
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224
my signature's link has the FW audio-convert-mod project -- it's a script that with a simple right-click you can batch or single convert any from or to:
OGG, MP3, MAC, FLAC, WAV
And can read:
Unprotected WMA, AAC, SHN
You can also edit the metatags of files.
Firewing1
__________________
[+] My open source software and blog
[+] Some of my howtos: (for full list, click here)

Last edited by Firewing1; 28th February 2007 at 04:10 PM.
Reply With Quote
  #6  
Old 21st January 2006, 01:55 AM
pedromatiello Offline
Registered User
 
Join Date: Jan 2006
Location: São Paulo, Brazil
Age: 28
Posts: 100
you can also use this simple python script to convert all oggs in a dir to mp3.
needs transcode, lame and ogginfo.

Quote:
#!/usr/bin/env python
# Pedro Matiello, Jan, 06, 2006

import sys
import os

try:
if (sys.argv[1]):
dir = sys.argv[1]
print "Converting ogg files in " + dir + "..."
except:
print "Error. Syntax: " + sys.argv[0] + " <directory>"
sys.exit(1)

try:
ls = os.listdir(dir)
ls.sort()
except:
print "Error: Can't access directory " + dir + "."
sys.exit(2)

for each in ls:
try:
print "Converting " + each + "..."
ogginfo = os.popen("ogginfo \"" + dir + each + "\"|grep =");
tags = ogginfo.readlines()
title = tags[0].replace("\tTITLE=","").replace("\n","")
artist = tags[1].replace("\tARTIST=","").replace("\n","")
album = tags[2].replace("\tALBUM=","").replace("\n","")
year = tags[3].replace("\tDATE=","").replace("\n","")
track = tags[4].replace("\tTRACKNUMBER=","").replace("\n","")
ogginfo.close()
os.system("transcode -x null,ogg -i " + "\"" + dir + each + "\"" + " -y null,lame -b 192 -o" + "\"" + artist + " - " + album + " - " + track + " - " + title + "\" > /dev/null 2>&1")
os.system("id3tag -a \"" + artist + "\" -A\"" + album + "\" -s\"" + title + "\" -y" + year + " -t" + track + " " + "\"" + artist + " - " + album + " - " + track + " - " + title + ".mp3\" > /dev/null 2>&1")
except:
pass

print "Finished."
Reply With Quote
  #7  
Old 21st September 2006, 01:38 AM
gotmonkey's Avatar
gotmonkey Offline
Registered User
 
Join Date: Apr 2004
Location: South East, MI
Age: 43
Posts: 119
Quote:
Originally Posted by Firewing1
my signature's link has the FW audio-convert-mod project -- it's a script that with a simple right-click you can batch or single convert any from or to:
OGG, MP3, MAC, FLAC, WAV
And can read:
Unprotected WMA, AAC, SHN
You can also edit the metatags of files.
Firewing1
FW, I am getting this error when I try to install. Any idea what I can do to fix it?

Quote:
[root@localhost audio-convert-mod-3.42]# ./systeminstall.sh
cp: cannot stat `/etc/skel/.gnome2/nautilus-scripts/audio-convert-mod/Convert Files (v3.42)': No such file or directory
chmod: cannot access `/usr/local/bin/audio-convert-mod': No such file or directory
System install complete.
In nautilus now, I see a scripts line when I right click and I can open the scripts folder that has a remove .converted script
__________________
Gotmonkey
FC6 | IBM T42 2378-R4U | Centrino 2.0Ghz | ATI Mobility M7 LW 7500 | 1.5G PC2700 | 80G Hitachi 5400 | Intel 2915abg WiFi | Bluetooth
Reply With Quote
  #8  
Old 21st September 2006, 01:19 PM
Firewing1's Avatar
Firewing1 Offline
Administrator
 
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224
Sorry, there's a glitch in the v3.42 script that does that - when I have enough improvements to release 3.43, it'll be fixed as one of the things... For now, just run:
Code:
cp /etc/skel/.gnome2/nautilus-scripts/audio-convert-mod/* ~/.gnome2/nautilus-scripts/audio-convert-mod
Now use 'convert files' to change MP3's to OGG.
Firewing1
__________________
[+] My open source software and blog
[+] Some of my howtos: (for full list, click here)
Reply With Quote
  #9  
Old 21st September 2006, 04:12 PM
volcano Offline
Registered User
 
Join Date: Sep 2006
Posts: 1
Here's a nice prog! http://www.soundtaxi.info/
Reply With Quote
  #10  
Old 21st September 2006, 05:41 PM
Knudson's Avatar
Knudson Offline
Registered User
 
Join Date: Mar 2005
Location: Italy
Age: 28
Posts: 401
btw why don't you just keep your ogg ? usually the conversion from a lossy format to another lossy format isn't a very clever idea, most of the time you'll lose in quality
__________________
knu - ICQ# 51135890
knu.altervista.org
Help us to give linux a better software support!
Shooby dooby doo shooby dooby doo durul
Reply With Quote
  #11  
Old 22nd September 2006, 03:43 AM
gotmonkey's Avatar
gotmonkey Offline
Registered User
 
Join Date: Apr 2004
Location: South East, MI
Age: 43
Posts: 119
Quote:
Originally Posted by Knudson
btw why don't you just keep your ogg ? usually the conversion from a lossy format to another lossy format isn't a very clever idea, most of the time you'll lose in quality
Unfortunately, my ipod and my wife's Rio mp3 player don't support the ogg format.
__________________
Gotmonkey
FC6 | IBM T42 2378-R4U | Centrino 2.0Ghz | ATI Mobility M7 LW 7500 | 1.5G PC2700 | 80G Hitachi 5400 | Intel 2915abg WiFi | Bluetooth
Reply With Quote
  #12  
Old 22nd September 2006, 05:35 AM
a thing's Avatar
a thing Offline
Registered User
 
Join Date: May 2005
Posts: 288
Fortunately, there are Ogg hardware players.
Reply With Quote
  #13  
Old 22nd September 2006, 10:03 PM
Firewing1's Avatar
Firewing1 Offline
Administrator
 
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224
But it doesn't help when you've already bought one
Firewing1
__________________
[+] My open source software and blog
[+] Some of my howtos: (for full list, click here)
Reply With Quote
  #14  
Old 15th November 2006, 05:55 AM
3006828
Guest
 
Posts: n/a
yeah converting lossy to another lossy.. man.. yuck! :P

sell you hardware that cant use ogg :P
Reply With Quote
  #15  
Old 15th November 2006, 02:11 PM
wshawn Offline
Registered User
 
Join Date: Apr 2004
Location: Daytona Beach, FL
Age: 47
Posts: 423
MP3s are evil -- not going back there

Personally, I'm so pissed at the crap they are pulling with MP3s I would sell or throw the MP3 player away and buy one that plays oggs. Oggs sound better and are smaller than mp3s at the same bitrate anyway. I am converting years of Wavs / MP3s to Ogg and not looking back. Smaller storage foot print and better quality to pull from.
__________________
Registered Linux user: 358599
Reply With Quote
Reply

Tags
convert, mp3, ogg

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert .wmf to .png twn250 Using Fedora 13 3rd November 2007 02:36 AM
Convert DVD to AVI mitchell2345 Using Fedora 4 22nd January 2007 02:54 AM
Convert 4cd iso to 1 dvd iso??? bibstha Installation and Live Media 2 8th March 2006 09:08 AM
convert .rm to avi or mpg??? tajidinabd Using Fedora 1 23rd February 2006 06:49 AM
My first convert themadscientist Wibble 19 15th April 2005 09:14 AM


Current GMT-time: 07:27 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat