<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=154.20.241.217</id>
	<title>Hydrogenaudio Knowledgebase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=154.20.241.217"/>
	<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Special:Contributions/154.20.241.217"/>
	<updated>2026-04-29T00:17:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Encouraged_Tag_Standards&amp;diff=4739</id>
		<title>Foobar2000 Talk:Encouraged Tag Standards</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Encouraged_Tag_Standards&amp;diff=4739"/>
		<updated>2005-02-17T16:52:42Z</updated>

		<summary type="html">&lt;p&gt;154.20.241.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I recommend against using underscores in field names. Spaces are easier to type, easier to read, and equally valid.&lt;br /&gt;
--Canar.&lt;/div&gt;</summary>
		<author><name>154.20.241.217</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Encouraged_Tag_Standards&amp;diff=2037</id>
		<title>Foobar2000:Encouraged Tag Standards</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Encouraged_Tag_Standards&amp;diff=2037"/>
		<updated>2005-02-17T16:51:41Z</updated>

		<summary type="html">&lt;p&gt;154.20.241.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== LAST_PLAYED ===&lt;br /&gt;
&#039;&#039;Basics&#039;&#039;:&lt;br /&gt;
* the tag-fieldname used for storing info when a song was played the last time is &amp;quot;LAST_PLAYED&amp;quot;&lt;br /&gt;
* tag contains date and time in the following format at the beginning: &amp;quot;YYYY-MM-DD HH:MM:SS&amp;quot; (with 24hours-format)&lt;br /&gt;
* additional info may be appended after the above info&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Reasons for deciding on this format&#039;&#039;:&lt;br /&gt;
* the [http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/sv8/time.html APE-dateformat] (derived from ISO) is internationally neutral&lt;br /&gt;
* sortable&lt;br /&gt;
* easily readable and recognizable&lt;br /&gt;
* format can be verified with TAGZ&lt;br /&gt;
* can be included in formatting-strings without reformatting it (pro for amateur tagz-coders)&lt;br /&gt;
* choosing a new fieldname avoids confusion with the existing ambigious play_date tag&lt;br /&gt;
* tag-fieldname is easy to understand/recognize/remember and short enough to type in manually&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Code snippets&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 // verify tag-format (we check the pos. of the first dash and &amp;quot;:&amp;quot;)&lt;br /&gt;
 // using $len for verification is strongly unrecommended!&lt;br /&gt;
 $if(&lt;br /&gt;
 $and($strcmp($strstr(%last_played%,-),5),$strcmp($strstr(%last_played%,:),14))&lt;br /&gt;
 ,$puts(last_played_is_valid,1)&lt;br /&gt;
 )&lt;br /&gt;
&lt;br /&gt;
 // disassemble the timestamp for later reformatting or calcuations&lt;br /&gt;
 $puts(last_played_year,$substr(%last_played%,1,4))&lt;br /&gt;
 $puts(last_played_month,$substr(%last_played%,6,7))&lt;br /&gt;
 $puts(last_played_day,$substr(%last_played%,9,10))&lt;br /&gt;
 $puts(last_played_hour,$substr(%last_played%,12,13))&lt;br /&gt;
 $puts(last_played_min,$substr(%last_played%,15,16))&lt;br /&gt;
 $puts(last_played_sec,$substr(%last_played%,18,19))&lt;br /&gt;
&lt;br /&gt;
 // display only the date of last_played (without reformatting)&lt;br /&gt;
 $left(%last_played%,10)&lt;br /&gt;
&lt;br /&gt;
 // display only the time of last_played (without reformatting)&lt;br /&gt;
 // the use of $right is strongly unrecommended!&lt;br /&gt;
 $substr(%last_played%,12,19)&lt;br /&gt;
&lt;br /&gt;
=== PLAY_DATE ===&lt;br /&gt;
&lt;br /&gt;
Obsolete artifact of foo_playcount.  Default format was DDMMYY.  See LAST_PLAYED.&lt;br /&gt;
&lt;br /&gt;
=== PLAY_TIME ===&lt;br /&gt;
&lt;br /&gt;
Obsolete artifact of foo_playcount.  Default format was HHMMSS (24hr).  See LAST_PLAYED.&lt;br /&gt;
&lt;br /&gt;
=== ALBUM ARTIST ===&lt;br /&gt;
&lt;br /&gt;
A tag indicating the tagged album&#039;s artist. Use &amp;quot;Various Artists&amp;quot; or &amp;quot;VA&amp;quot; for multi-artist albums for clarity. This is the preferred method of handling compilations, DJ mixes, and the like. VARIOUS=1 and similar hacks are neither clear, concise, nor informative. ALBUM ARTIST handles all of these issues gracefully.&lt;/div&gt;</summary>
		<author><name>154.20.241.217</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Foobar2000&amp;diff=3235</id>
		<title>Foobar2000 Talk:Foobar2000</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Foobar2000&amp;diff=3235"/>
		<updated>2005-02-17T16:47:10Z</updated>

		<summary type="html">&lt;p&gt;154.20.241.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m using Mozilla and it displays correctly unless I try to select it.  I think it&#039;s best to have the correct code in there though, even at the expense of this bizarre behavior.  I avoided writing it like that because of that problem.  Thanks.  :)  --[[User:Topdownjimmy|Topdownjimmy]] 23:07, 14 Feb 2005 (CST)&lt;br /&gt;
----&lt;br /&gt;
I just put the code in the &#039;Basic Color Codes&#039; section into code blocks for ease of reading, but found I had to use IE to do the editing since firefox couldn&#039;t handle the block chars in the edit panel. Firefox seems to display them fine though. Is this going to be a problem? Thought I should ask before I tried to do the same for the rest of the page. - krazy&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Thanks, krazy, for the link to picmixer&#039;s masstagger guide. :) I moved it to the end of the masstagger section because I think it makes more sense there.--[[User:Topdownjimmy|Topdownjimmy]] 22:45, 13 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Reversed order of discussion posts (newer at top).  Thanks, krazy, for pointing out foo_looks was problematic.&lt;br /&gt;
&lt;br /&gt;
--[[User:Topdownjimmy|Topdownjimmy]] 15:07, 13 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Removed references to foo_looks and replaced with foo_ui_gfx. It&#039;s just that I don&#039;t think a [http://www.hydrogenaudio.org/forums/index.php?showtopic=17872 potential troublemaker] should be on the wiki page. Other than that, looking good!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Krazy, I moved your &amp;quot;Commonly Used Panel Extensions&amp;quot; down into the Columns UI section of the Beginner&#039;s Guide, I hope you don&#039;t mind.&lt;br /&gt;
-topdownjimmy&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Why use the underscore in the LAST_PLAYED tag? A space works just as well, is completely compliant, and is much easier to type.&lt;br /&gt;
-Canar&lt;/div&gt;</summary>
		<author><name>154.20.241.217</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Foobar2000&amp;diff=2008</id>
		<title>Foobar2000 Talk:Foobar2000</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000_Talk:Foobar2000&amp;diff=2008"/>
		<updated>2005-02-17T16:47:00Z</updated>

		<summary type="html">&lt;p&gt;154.20.241.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m using Mozilla and it displays correctly unless I try to select it.  I think it&#039;s best to have the correct code in there though, even at the expense of this bizarre behavior.  I avoided writing it like that because of that problem.  Thanks.  :)  --[[User:Topdownjimmy|Topdownjimmy]] 23:07, 14 Feb 2005 (CST)&lt;br /&gt;
----&lt;br /&gt;
I just put the code in the &#039;Basic Color Codes&#039; section into code blocks for ease of reading, but found I had to use IE to do the editing since firefox couldn&#039;t handle the block chars in the edit panel. Firefox seems to display them fine though. Is this going to be a problem? Thought I should ask before I tried to do the same for the rest of the page. - krazy&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Thanks, krazy, for the link to picmixer&#039;s masstagger guide. :) I moved it to the end of the masstagger section because I think it makes more sense there.--[[User:Topdownjimmy|Topdownjimmy]] 22:45, 13 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Reversed order of discussion posts (newer at top).  Thanks, krazy, for pointing out foo_looks was problematic.&lt;br /&gt;
&lt;br /&gt;
--[[User:Topdownjimmy|Topdownjimmy]] 15:07, 13 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Removed references to foo_looks and replaced with foo_ui_gfx. It&#039;s just that I don&#039;t think a [http://www.hydrogenaudio.org/forums/index.php?showtopic=17872 potential troublemaker] should be on the wiki page. Other than that, looking good!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Krazy, I moved your &amp;quot;Commonly Used Panel Extensions&amp;quot; down into the Columns UI section of the Beginner&#039;s Guide, I hope you don&#039;t mind.&lt;br /&gt;
-topdownjimmy&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Why use the underscore in the LAST_PLAYED tag? A space works just as well, is completely compliant, and is much easier to type.&lt;/div&gt;</summary>
		<author><name>154.20.241.217</name></author>
	</entry>
</feed>