Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Recent Posts
2
CD Hardware/Software / CD rip has numerous timing problems
Last post by graveller39 -
hi folks,

I have a CD I've been trying to rip, but it was taking forever with EAC.  I also tried CueRipper and finally used Roxio Easy CD & DVD Burning to get what looks like a successful rip (sounds ok), but it took at least a couple of hours.

When I tried EAC, I used burst mode, as secure mode just wasn't going to do it.  I aborted after three tracks, but the log file indicated numerous timing problems - no suspicious positions which is what I'd expect if the disc were damaged.  The disc looks pretty good and plays without any audible issues on my CD player.

Any ideas what might be causing this or if there's any way to get a rip I can confirm as error free?
4
MP3 - General / Re: Resurrecting/Preserving the Helix MP3 encoder
Last post by KevinB52379 -
Also not working here "An error occurred while writing to file (The encoder has terminated prematurely with code -1073741515 (0xC0000135); please re-check parameters"
Btw. did you just set the flag -flto? I could do one with gcc.

Edit:  Did one with gcc flto. Roughly the same speed here as without.

I've managed to reproduce the problem under my vm env, my fault for not including the -static in LDFLAGS, here's the re-complied version.

FINALLY!  A version of Helix MP3 that converts fast besides Case's version!

This version DOES NOT hang up my system in a weird way and cause foobar to be basically nonresponsive!

ALSO - FASTEST encoding speed yet converting from internal SSD to internal SSD at 2500x encoding speed!

This version works, yay!
6
Support - (fb2k) / foobar2000 2.1.4 crashes during ReplayGain scan
Last post by cyborg -
Foobar2000 2.1.4 crashes every time I execute ReplayGain scan on a file in my PC. First time I noticed the same problem when I updated foobar2000 2.1 to 2.1.3. When I downgraded fb2k back to 2.1 the problem disappeared. Same thing happened with 2.1.4. I made a fresh portable install of fb2k 2.1.4 and executed the ReplayGain scan, fb2k crashes every time. I included the crash dumps which were generated by the portable fresh install of 2.1.4 version. I have tested the ReplayGain scan on mp3, FLAC, Musepack, Opus, Ogg Vorbis and WavPack files, it doesn't seem to be dependent on file format.
7
MP3 - General / Re: Resurrecting/Preserving the Helix MP3 encoder
Last post by punkrockdude -
If anyone is interested

Linux amd64/x86_64 Glibc 2.39
Clang 18, O3 LTO PGO

Code: [Select]
CC=clang # was gcc

#CFLAGS_COMMON=-O3 -fprofile-generate=/tmp/ -c -I$(SRC_PREFIX)/pub -DIEEE_FLOAT -D_FILE_OFFSET_BITS=64 # 1st run
CFLAGS_COMMON=-O3 -flto -fprofile-use=/tmp/profile.profdata -c -I$(SRC_PREFIX)/pub -DIEEE_FLOAT -D_FILE_OFFSET_BITS=64 # 2nd run

#LFLAGS=-lm -lstdc++ -O3 -fprofile-generate=/tmp/ # 1st run
LFLAGS=-lm -lstdc++ -O3 -flto -fprofile-use=/tmp/profile.profdata # 2nd run
9
MP3 - General / Re: Resurrecting/Preserving the Helix MP3 encoder
Last post by JoshuaChang -
Also not working here "An error occurred while writing to file (The encoder has terminated prematurely with code -1073741515 (0xC0000135); please re-check parameters"
Btw. did you just set the flag -flto? I could do one with gcc.

Edit:  Did one with gcc flto. Roughly the same speed here as without.

I've managed to reproduce the problem under my vm env, my fault for not including the -static in LDFLAGS, here's the re-complied version.
10
MP3 - General / Re: Resurrecting/Preserving the Helix MP3 encoder
Last post by Wombat -
Also not working here "An error occurred while writing to file (The encoder has terminated prematurely with code -1073741515 (0xC0000135); please re-check parameters"
Btw. did you just set the flag -flto? I could do one with gcc.

Edit:  Did one with gcc flto. Roughly the same speed here as without.