List maker |
||||||||||||||||||||||||||||||||
Create playlists and export information about your music collection to user-defined file formats. Tagscanner comes with predefined scripts for most popular formats like CSV, XML, HTML. You can change filename for exported file and encoding of content. Use CSV (Comma Separated Values) format if you want to work with database software like Access or MySql.
Export scriptsExport feature uses simple scripting language so you can create your own script which generate required file format. Export script contain two sections: exported file configuration (reflected in program interface) and loops which generate content of this file. 1. Configuration
$file_name TrackList.csv$file_notes Raw comma-separated text $file_encoding utf-8 $file_writebom 1 2. Content
$document_open$select %_index%,0 %title%;%artist%;%album%;%track%;%year%;%genre%;%_length_sec%;%_filesize%;%_filedate%;%filepath%;%filenameext% $endselect $document_close You can specify any text and unlimited number of placeholders as configuration parameters and content of exported file. List of avalaible configuration parameters
All content between $document_open and $document_close will be placed inside generated file. Command $select %any_fields%,0 selects files with values according to first parameter and starts a loop. Command $endselect is marker of ending of repeating part. There is a special placeholders which can be used inside export scripts:
|
||||||||||||||||||||||||||||||||
© 1999-2011 Sergey Serkov |