From 5886337a7e328493cba2166f7e4ee7d237cbfa32 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Tue, 25 Dec 2007 08:08:11 +0000 Subject: added metadata hotness to the album art dump --- bin/dump_album_art.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/dump_album_art.inc b/bin/dump_album_art.inc index 9d88b7ea..d9d4e44b 100644 --- a/bin/dump_album_art.inc +++ b/bin/dump_album_art.inc @@ -24,10 +24,16 @@ $path = dirname(__FILE__); $prefix = realpath($path . '/../'); require_once $prefix . '/lib/init.php'; +// If we specify extra meta data +// Possible values are windows and linux +// If Null then no meta data is dumped +$meta = 'linux'; + $catalogs = Catalog::get_catalogs(); foreach ($catalogs as $catalog_id) { - Catalog::dump_album_art($catalog_id); + Catalog::dump_album_art($catalog_id,array('metadata'=>$meta)); } + ?> -- cgit