[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-05-16 Thread Troy Sims
I'm running Jaunty, and selecting the two Lame settings do not fix my problem. So far, not a single ripping software works with Jaunty. I'm about ready to go back to Windows. This is unbelievable. -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-04-26 Thread Ralf Jung
Manually changing the K3b settings works fine for me: -- Edit the lame settings in k3b and enable both Swap Byte Order and Write Wave Header Please enable these per default. In addition, k3b should somehow ask the user that he has to install lame, or even better ask him to install

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-04-26 Thread R (Chandra) Chandrasekhar
Thank you so much Ralf Jung. I did what you suggested and it now works! Because it is not obvious how to do it, I have recorded below my sequence of steps: Settings - Configure K3b - Plugins - Audio Encoder - External Audio Encoder - Configure - Mp3 Lame - Edit Tick the checkboxes for Swap Byte

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-04-26 Thread Leo Milano
The problem is: this workaround is impossible to figure out by a new user. We need to do better! Also, I still can't listen to mp3's from a CD in Dolphin using audiocd:/ - it seems like we need a more fundamental solution for this bug. Cheers! -- Intrepid: K3B fails to rip to MP3

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-04-26 Thread Ralf Jung
I would say whoever can do that should change the settings of that lame mp3 entry - it should be possible to enable these two checkboxes in some global config file which is used when no local config is found, right? For the audiocd:/ problem, I'm not sure if they are related... you might have a

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-04-25 Thread R (Chandra) Chandrasekhar
I have upgraded Intrepid to Jaunty on Kubuntu and I still have the problem. The elegant workaround at https://bugs.launchpad.net/ubuntu/+source/k3b/+bug/267399/comments/15 does not work for me either. For the record, although I am running KDE 4.2.2, K3b is 1.0.5 on KDE 3.5.10. dpkg -l lame

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-03-25 Thread julos
Same problem on a fresh installed Kubuntu 8.10 (2.6.27-11-generic): I couldn't rip an audio CD to MP3 using K3B. I installed lame and it still didn't work. As mentioned above, the workaround solved the problem: -- Edit the lame settings in k3b and enable both Swap Byte Order and Write Wave

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-02-22 Thread Bug Watch Updater
** Changed in: k3b Status: Unknown = Confirmed -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to k3b in ubuntu. -- kubuntu-bugs mailing list

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-02-22 Thread Jonathan Thomas
** Changed in: k3b (Ubuntu) Status: Confirmed = Triaged -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to k3b in ubuntu. -- kubuntu-bugs mailing list

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-02-21 Thread Richard Johnson
** Also affects: k3b via http://bugs.kde.org/show_bug.cgi?id=171065 Importance: Unknown Status: Unknown -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to k3b

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-01-29 Thread Xiborg
I had the exactly same problem with KDE 4.1.x on Intrepid x86. I tried several workarounds and fixes mentioned here, but none has worked for me. Yesterday I got the KDE 4.2 packages for Intrepid and K3b with lame works again! cheers Xiborg -- Intrepid: K3B fails to rip to MP3

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-01-23 Thread Ilja Pavkovic
less intrusive is: create dir ~/bin create a script ~/bin/lame with #!/bin/sh usr/bin/lame --big-endian -x $@ chmod +x ~/bin/lame if you have created the dir ~/bin you must relogin to get ~/bin as part of your PATH (see ~/.profile) -- Intrepid: K3B fails to rip to MP3

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2009-01-07 Thread Chris Griffiths
I'm using Kubuntu Intrepid 2.6.27-9-generic x86_64 and LAME 64bits version 3.98 When using audiocd:/ in Dolphin or Konqueror I was getting the white noise problem. I looked at what parameters were being passed to lame and the -x switch was included, telling lame to use big-endian byte order on my

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-12-04 Thread emuman
No, I'm not an KDE dev. The solution from Chris to enable Swap Byte Order shows that the error is a little/big endian problem. But why __BYTE_ORDER is undefined in Intrepid? Maybe a runtime check is the proper solution. IMHO the check should be done in lame and not in the application calling lame.

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-12-04 Thread Leo Milano
I agree, lame should check for this internally, instead of asking the caller to figure it out. But since this has been like this forever, it is hard to change at this point, I guess. I did a bit of search around my system (I have 8.04 and 8.10 in two separate partitions). This is an AMD Athlon

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-12-03 Thread Leo Milano
Emuman, are you a KDE dev? THanks for the link to the upstream bug report. This page suggests apparently more robust methods for checking endianness at runtime: http://unixpapa.com/incnote/byteorder.html Something like a runtime check: int am_big_endian() { long one= 1; return

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-27 Thread emuman
See KDE bug https://bugs.kde.org/show_bug.cgi?id=171065. There is a big/little endian check in encoderlame.cpp. Perhaps this check doesn't work. To fix the static noise, command line option -x should added. -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-24 Thread Leo Milano
Yes, the workaround mentioned by Chris works for me on k3b. However, Dolphin has the same issue (try using audiocd:/ and dragging an mp3 from the MP3 Subdirectory, it will create a whitenoise sounding mp3). Notably, you can't configure this in the System Settings in Kubuntu, and fixing it in K3b

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-18 Thread Chris Purves
https://bugs.launchpad.net/ubuntu/+source/k3b/+bug/297320 appears to be the same bug with a workaround: Edit the lame settings in k3b and enable both Swap Byte Order and Write Wave Header -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-15 Thread Andrej
The same problem on my machine. But I have a workaround: 1.) Use k3b to extract wav-files 2.) Run the following script to convert wav-files into mp3-files find -name *wav | awk '{system( lame -h \ $0 \ \ substr($0,0,match($0,.wav)) .mp3\)}' -- Intrepid: K3B fails to rip to MP3

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-13 Thread steviedons
I am seeing the exact same issue with K3B and the white noise when using audiocd:// using a fully updated 32bit version of Kubuntu. -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-10 Thread Tom Ridge
I have the same problem: * k3b fails to rip on calling lame * using audiocd:// in konqueror and copying results in file containing garbage This is on a 32 bit install of Kubuntu. This is very basic functionality that users expect should work without issue. For this reason, I would like to see

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-08 Thread jetpeach
is there a workaround? same problem here... -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to k3b in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED]

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-11-07 Thread cosi
Same here. K3B fails immediately, event if I exchange lame with cat. Ripping in Konqueror via audiocd: produces white noise, which is probably not related to the k3b bug. I'm using x64. Are you, too? -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-10-31 Thread Stefan Ebner
I can confirm this to so setting to Confirmed ** Changed in: k3b (Ubuntu) Status: New = Confirmed -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to k3b in ubuntu.

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-10-31 Thread Moreno Bartalucci
I have the same problem on a fresh install of Kubuntu Intrepid made on 29/10/2008. Furthermore (I don't know if it's related or not) trying to rip an audio cd to mp3 using konqueror results in files containing only garbage. To ogg both work. -- Intrepid: K3B fails to rip to MP3

[Bug 267399] Re: Intrepid: K3B fails to rip to MP3

2008-09-08 Thread Marlon Cisternas Milla
** Changed in: k3b (Ubuntu) Sourcepackagename: None = k3b -- Intrepid: K3B fails to rip to MP3 https://bugs.launchpad.net/bugs/267399 You received this bug notification because you are a member of Kubuntu Team, which is subscribed to k3b in ubuntu. -- kubuntu-bugs mailing list [EMAIL