Tango.info track tagger format string: Difference between revisions

From tango.info wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:
Available variables can be seen below, all strings in the form %<variable_name>% are variables, e.g. %tin% gives the [[TIN]].
Available variables can be seen below, all strings in the form %<variable_name>% are variables, e.g. %tin% gives the [[TIN]].


date is the raw format, year the year if known.
%date% is the raw format as defined in [[tango.info track date]], %year% the year if known.


1.3.2
1.3.2

Revision as of 2010-11-25T22:25:24

The tango.info tagger since 1.3.2 (work in progress) accepts a format string for the output.

It can be set via the url or input field.

http://www.tango.info/tools/tagger1.3.2.php?format_string=%25tin%25

  • %disc_tqty% number of tracks in disc (count in tracks table, CURRENTLY THIS IS NOT THE MAX OF TRACK NUMBER)
  • %album_tqty% number of tracks in album (count in tracks table)
  • %album_dqty% number of discs in album (max value for album_side in tracks table)

Aliases exist see below. For work on tags or wishes see TIS tags.

Available variables can be seen below, all strings in the form %<variable_name>% are variables, e.g. %tin% gives the TIN.

%date% is the raw format as defined in tango.info track date, %year% the year if known.

1.3.2

//======= output formatting ============

$sf="";
$sf["%x_count%"]=$x_count;

//album specific
$sf["%tin%"]=$t["album_tin"];
$sf["%album_name%"]=$t["album_name"];
	//alias
	$sf["%album%"]=$t["album_name"];
$sf["%album_artist%"]=$t["album_artist"];
	//alias
	$sf["%album artist%"]=$t["album_artist"];
$sf["%album_pubcode%"]=$t["album_pubcode"];
$sf["%album_collection%"]=$t["album_collection"];
	//alias
	$sf["%album collection%"]=$t["album_collection"];
$sf["%album_dqty%"]=$t["album_disc_qty"];
	//alias
	$sf["%album_disc_qty%"]=$sf["%album_dqty%"];
$sf["%album_tqty%"]=$t["album_track_qty"];

//disc specific
$sf["%discnumber%"]=$t["album_side"];		
$sf["%disc_tqty%"]=$t["track_qty"];
	//alias
	$sf["%disc_track_qty%"]=$sf["%disc_tqty%"];

//track specific
$sf["%tint%"]="{$t["album_tin"]}-{$t["album_side"]}-{$t["track_num"]}";
$sf["%track%"]=$t["track_num"];
	//alias
	$sf["%tracknumber%"]=$t["track_num"];
$sf["%title%"]=$t["track_name"];

$sf["%artist%"]=$t["track_artists"];
$sf["%artist_vocmarker_off%"]=str_replace(", voc. ", ", ",$t["track_artists"]);	

$sf["%genre%"]=$t["track_genr"];	
$sf["%date%"]=$t["track_date"];
$sf["%year%"]=$t["track_year"];
$sf["%duration%"]=$t["track_dura"];
$sf["%track_orch%"]=$t["track_orch"];
$sf["%track_voca%"]=$t["track_voca"];