Tango.info track tagger format string

From tango.info wiki
Revision as of 2013-02-09T03:14:06 by Tobiasco (talk | contribs)
Jump to navigation Jump to search

The tango.info track tagger since 1.3.2 accepts a format string for the output.

The format string can be set via the input field or via url, e.g.:

https://tango.info/tools/tagger1.3.3.php?format_string=%25tint%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 a product (count in tracks table)
  • %album_dqty% number of discs in a product (max value for product_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 TINP.

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

1.3.4

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

//===unspecific===
$sf="";
$sf["%in_count%"]=$in_count;
	//alias
	$sf["%x_count%"]=$sf["%in_count%"];
$sf["%out_count%"]=$out_count;
$sf["%comment%"]=$comment;

//===product specific===
$sf["%tin%"]=$t["product_tin"];
$sf["%album_name%"]=$t["product_name"];
	//alias
	$sf["%album%"]=$t["product_name"];

$sf["%album_artist%"]=$t["product_artist"];
	//alias
	$sf["%album artist%"]=$t["product_artist"];

$sf["%album_pubcode%"]=$t["product_pubcode"];
$sf["%album_collection%"]=$t["product_collection"];
	//alias
	$sf["%album collection%"]=$t["product_collection"];

$sf["%album_dqty%"]=$t["product_disc_qty"];
	//alias
	$sf["%album_disc_qty%"]=$t["product_disc_qty"];
$sf["%album_tqty%"]=$t["product_track_qty"];

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

//===track specific===
$sf["%tint%"]="{$t["product_tin"]}-{$t["product_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"];

//===performance specific===
$sf["%tiwc%"]=$t["work_id"];
$sf["%iso_639_3%"]=$t["track_lang"];

1.3.4

Testing %comment% - currently only available for references that are URI. The URI will be in the %comment%.