-
https://bugs.launchpad.net/id3lib/+bug/429783
I get an error in the Ubuntu Karmic release:
*** stack smashing detected ***: id3v2 terminated
see link above for details.
2009-10-07 05:05:24 UTC by nobody
-
In genre.cpp, "Psychedelic" is incorrectly spelled as "Psychadelic". A similar error occurs for the genre "Psychadel. Rock" (and why bother abbreviating "Psychedelic" to "Psychedel."?)
2009-10-03 16:30:17 UTC by nobody
-
id3v2 does not currently compile in cygwin due to problems with the makefile. Specifically the library order in the compile command line matters for PE executables. The attached patch allows id3v2 to compile in cygwin. Only tested under cygwin - needs checking on other platforms.
2009-09-27 01:31:19 UTC by gbdrbob
-
Some MP3 converters (*cough*-LAME), strip off and do not copy tags when converting an MP3 file.
For us lazy folks (besides harassing the LAME folks, which they might have reasons against doing it), it would only solve the issue for lame and not for any other converters...
This way, wouldn't have to -l on the old file, and retype the info into the new file.
Might also have an option to...
2009-07-25 20:42:41 UTC by lindaathena
-
Sourceforge should advertise this project as DEAD and needing a takeover by someone willing to maintain it.
New features -
support v2.4 of mp3 tags
win32 command line version
support pictures.
2009-02-06 01:21:23 UTC by nobody
-
#!/bin/bash
#Compiling id3v2 under Cygwin:
# You can run this with bash
#0. Prerequisites
#Install zlib and libiconv with Cygwin setup.exe
#1. id3lib
#Get the tarball from http://id3lib.sf.net and unpack it
curl http://easynews.dl.sourceforge.net/sourceforge/id3lib/id3lib-3.8.3.tar.gz | tar xvz
cd id3lib-3.8.3/
./configure
make
make install
cd ..
#2. id3v2
#Get the tarball...
2009-01-21 08:36:12 UTC by ringler
-
Those people who are reporting that the crash doesn't happen probably have a c++ std runtime that doesn't catch multiple frees on the same block. I can see see this crash happening on Leopard 10.5.5.
Holand's fix above works fine and stops the incorrect free'ing of the block.
2009-01-08 21:13:16 UTC by nobody
-
This frame is totally unnecessary. To distinguish an album as a compilation you simply group all tracks with the same album name and if they have different artists then it's obviously a compilation. It annoys me to no end that iTunes has some silly non-standard frame for this purpose. If they really felt a frame identifier was necessary they should have used a user-defined comment frame.
2008-11-02 17:58:02 UTC by duke
-
Roberto Costa (flix76) made a patch for this, and I tested it. Works well for my test cases. See https://sourceforge.net/tracker/index.php?func=detail&aid=1158624&group_id=4193&atid=304193.
2008-11-02 06:20:00 UTC by res_alian
-
It would be excellent if id3v2 could attach cover
images to mp3 files. The following command does
not work as expected:
id3v2 --APIC=cover.jpg song.mp3
It seems the "case ID3FID_PICTURE" switch statement
in id3v2.cpp should somehow use
myFrame->Field(ID3FN_DATA).FromFile(framelist[ii].data);
to read the image data from the file.
2008-09-29 00:29:45 UTC by nobody