FLAC 1.1.3 picture metadata
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
When official released (now version 1.1.3 beta 1) it would be great to retrieve picture metadata.
(similar to APIC frame in ID3V2)
http://flac.cvs.sourceforge.net/*checko ... ef_PICTURE
http://www.hydrogenaudio.org/forums/ind ... opic=49182
Thanks,
Willem
(similar to APIC frame in ID3V2)
http://flac.cvs.sourceforge.net/*checko ... ef_PICTURE
http://www.hydrogenaudio.org/forums/ind ... opic=49182
Thanks,
Willem
-
- getID3() v2 developer
- Posts:445
- Joined:Sun May 04, 2003 2:22 pm
- Location:Holmegaard, Denmark
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
Good to hear it will be implemented.
I read different requirements on the site and readme.txt file.
Will the 2.0.0 final support PHP 4.1 or not?
readme.txt
PHP 4.1.0 (or higher)
http://www.getid3.org/
v2.0.0-b3 requires PHP 5.0.0 or newer
I read different requirements on the site and readme.txt file.
Will the 2.0.0 final support PHP 4.1 or not?
readme.txt
PHP 4.1.0 (or higher)
http://www.getid3.org/
v2.0.0-b3 requires PHP 5.0.0 or newer
-
- getID3() v2 developer
- Posts:445
- Joined:Sun May 04, 2003 2:22 pm
- Location:Holmegaard, Denmark
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
FLAC 1.13 final has been released:
http://flac.sourceforge.net/
http://www.hydrogenaudio.org/forums/ind ... opic=50667
There are still known bugs:
http://flac.sourceforge.net/documentation.html#bugs
http://flac.sourceforge.net/
http://www.hydrogenaudio.org/forums/ind ... opic=50667
There are still known bugs:
http://flac.sourceforge.net/documentation.html#bugs
-
- getID3() v2 developer
- Posts:445
- Joined:Sun May 04, 2003 2:22 pm
- Location:Holmegaard, Denmark
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
-
- getID3() v2 developer
- Posts:445
- Joined:Sun May 04, 2003 2:22 pm
- Location:Holmegaard, Denmark
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
For APIC images I only have to enable:
Witch options must be enabled for flac pictures?
When using the above options I only get this array returned:
Thanks for the help,
Willem
Code: Select all
$getID3->option_tag_id3v2 = true; // Read and process ID3v2 tags.
$getID3->option_tags_images = true; // Scan tags for binary image data - ID3v2 and vorbiscomments only.
When using the above options I only get this array returned:
Code: Select all
(
[GETID3_VERSION] => 2.0.0b4
[filesize] => 14327824
[avdataoffset] => 0
[avdataend] => 14327824
[mime_type] => audio/x-flac
)
Willem
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
I found the answer myself, with trial and error.
The minimal options that are needed for both retrieving APIC and PICTURE images is:
The minimal options that are needed for both retrieving APIC and PICTURE images is:
Code: Select all
$getID3->option_tag_id3v2 = true; // Read and process ID3v2 tags.
$getID3->option_analyze = true; // Analyze file - disable if you only need to detect file format.
$getID3->option_tags_images = true; // Scan tags for binary image data - ID3v2 and vorbiscomments only.