Warning: session_start(): open(/tmp/sess_40on8vkeoa2ntck9467qa5bg74, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Kmp3burn openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Kmp3burn

   0.3.5  

KDE CD/DVD Software

Score 76%
Kmp3burn
zoom


Link:  Link
Downloads:  5069
Submitted:  Apr 16 2004
Updated:  Mar 13 2007

Description:

Select mp3 files and store them in an easy way on any audio CD.

Features:

Burn on the fly.
Adjust the volume of audio files to a standard volume level.
Handle Playlists at m3u format.


Requirements:
kde 3.5
cdrecord
taglib >= 1.3
libmad
akode-2.0
sox (for resampling)

Recommendations:

Normalize



Please visit for further information
www.martin-keil.de

Which features should be included else ?
All suggestions welcome.

If you not able to compile, install, can't work well, or find a bug please mail me.

xxx_martin-keilatgmx.net_xxx




Changelog:

Version 0.3.5:
Add Slovak translation

If you find a bug, please let me know.




(Kmp3burn)
Send to a friend
Subscribe
Other  Content  from KDEApp
Report inappropriate content



goto page:  1  2 

-

 well

 
 by Superstoned on: Apr 22 2004
 
Score 50%

its an very easy to use app... personally I prefer more options, but for that we have K3b isnt it? thanks for the work, i think this would make a nice mp3burner for my girlfriend (who hates computers...)


Reply to this

-
.

 A couple of thoughts

 
 by leinir on: Apr 26 2004
 
Score 50%
leinirleinir
KDE/Amarok, KDE/Gluon
editor
Home

Right, the thoughts are as follows:

1. Ogg support
2. JuK integration

These two would be a great addition, and the last one would be very welcome (there is a wishlist item on b.k.o about JuK's non-capabilities in this exact area ;) ). As the guy above said, nice work :)


..Dan // Leinir
http://www.leinir.dk/

Reply to this

-

 Compilation

 
 by jfdigonnet on: May 4 2004
 
Score 50%

Hi
I've got some problem on KDE 322

g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/kde320/include -I/usr/qt/include -I/usr/X11R6/include -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -c -o tools.o `test -f 'tools.cpp' || echo './'`tools.cpp
tools.cpp: In member function `bool Tools::search_executable(const char*)':
tools.cpp:14: error: `cout' undeclared (first use this function)
tools.cpp:14: error: (Each undeclared identifier is reported only once for each function it appears in.)
make[2]: *** [tools.o] Erreur 1
make[2]: Leaving directory `/SourceKDE/kmp3burn-0.2.2/kmp3burn'
make[1]: *** [all-recursive] Erreur 1
make[1]: Leaving directory `/SourceKDE/kmp3burn-0.2.2'
make: *** [all] Erreur 2

(Erreur means Error)

jfd


Reply to this

-

 Re: Compilation

 
 by KDEApp on: May 5 2004
 
Score 50%

Hi
I' m not sure, why this error occur,
but the message in these function is not important. So you can drop line 14 in kmp3burn/tools.cpp :
// cout .. "Error: which not found" .. endl;

Good luck

Martin


Reply to this

-

 Re: Re: Compilation

 
 by jfdigonnet on: May 5 2004
 
Score 50%

Hi
It's all right
jfd


Reply to this

-

 Re: Re: Compilation

 
 by epoch on: Jun 12 2004
 
Score 50%

It's a namespace requirement of ANSI C++. If you are not going to declare that you're using the std namespace (it's usually best not to), you should to explicitly use:



#include <iostream>

int main(int argc, char** argv) {

std::cout << "something << std::endl;

}


Reply to this

-

 Compilation

 
 by jfdigonnet on: May 15 2004
 
Score 50%

Hi
Allways the same problem with the fonction "cout


Reply to this

-

 Re: Compilation

 
 by KDEApp on: May 16 2004
 
Score 50%

Hi
Thanks for the report.
I made a new upload.
Hope it's OK now.

Martin


Reply to this

-

 Re: Re: Compilation

 
 by jfdigonnet on: May 16 2004
 
Score 50%

Hi
It's all rigth for me
Thanks
jfd


Reply to this

-

 Re: Compilation

 
 by epoch on: Jun 12 2004
 
Score 50%

As I said above, it's a namespace issue. Use std::cout and std::endl.


Reply to this

-

 Re: Re: Compilation

 
 by KDEApp on: Jun 13 2004
 
Score 50%

Hi,
Thanks for support.
I'll fix it in next version
Martin


Reply to this

-

 Good job... however

 
 by GIGrafx on: Feb 8 2005
 
Score 50%

I've been seeking an app to handle burning MP3 CDs... one without the unneccesary functions for the purpose. K3B is a great CD/DVD burning app, but isn't the best for MP3 archiving because of the unrelated functions.

I am running Mandrake10.1 and had no probs in compiling... except I would like to offer a couple of ideas...

1- That you place within the configure file a search for 'libtag.so', as it was not detected as missing until going through 'make'.

2- That you configure the placement of a 'sym-link' in the /usr/bin folder as part of the 'install'.

Other than this, GREAT JOB!


...and then there was freedom. Win32 was no longer bounding my freedom to create... Life was better, here in Penquinland!
Reply to this

-

 One other thing...

 
 by GIGrafx on: Feb 8 2005
 
Score 50%

You may wish to add the option to permit the MP3s to remain in MP3 format (instead of converting to wav for burning) as there are allot of CD players that support MP3 play now days...


...and then there was freedom. Win32 was no longer bounding my freedom to create... Life was better, here in Penquinland!
Reply to this

-

 Re: One other thing.

 
 by KDEApp on: Feb 8 2005
 
Score 50%

Hi Gary,
Thanks for the comment.

1):
In configure.in.in I search for taglib:

################################
#######TAGLIB###################
################################

AC_CHECK_LIB(tag,main,,AC_ERROR(No Taglib found!
Please check whether you installed Taglib correctly.
http://developer.kde.org/~wheeler/taglib.html))

2):
Sorry, I don't understand.
Do you propose a link like this:
ln -s /usr/local/kde/bin/kmp3burn /usr/bin/


One other thing...

That's interesting!
Can you give me more informations about this,
maybe some links, or an example how cdrecord handle this?


And finally..
I need for the future versions of Kmp3burn beta-tester to check the extend properties.
If you like Kmp3burn, may you do this for the next Version. -> Kmp3burn-0.2.10

Martin


Reply to this

goto page:  1  2 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team