Results 1 to 2 of 2

Thread: Track Title database help

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Track Title database help

    Hello everyone, I

  2. #2
    Join Date
    Mar 2004
    Location
    Posts
    312

    Default Re: Track Title database help

    To try to answer your first question: You can modify one of the existing templates so it lists track information. And of course you can customize the export so it fits the format that you need.

    Here's an example that should generate an xml string for each track:

    <collection>
    <!--[Album(all)]-->
    <album>
    <album_artist><!--[Artist]-->Artist<!--[/Artist]--><br /></album_artist>
    <album_title><!--[Title]-->Title<!--[/Title]--><br /></album_title>
    <album_category><!--[Category/]--><br /></album_category>
    <album_genre><!--[Genre/]--><br /></album_genre>
    <album_volumes>
    <!--[Volume]-->
    <volume_info>
    <album_volumename><!--[VolumeName/]--><br /></album_volumename>
    <volume_trackcount><!--[TrackCount/]--><br /></volume_trackcount>
    <volume_total_time><!--[VolumeTime/]--><br /></volume_total_time>
    <trackinfo>
    <!--[Track]-->
    <track_details>
    <track_num><!--[TrackNum/]--></track_num>
    <track_title><!--[TrackTitle/]--></track_title>
    <track_time><!--[TrackTime/]--></track_time>
    <track_recordingdate><!--[RecordingDate/]--></track_recordingdate>
    <track_artist><!--[TrackArtist/]--></track_artist>
    </track_details>
    <br />
    <!--[/Track]-->
    </trackinfo>
    </volume_info>
    <!--[/Volume]-->
    </album_volumes>
    </album>
    <!--[/Album]-->
    </collection>

    Good luck!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •