summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-22 02:26:08 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-22 02:26:08 +0000
commit43e7cb8f40e443952f2b610cd35eb37f64627a45 (patch)
tree541cf62d4a86053b5842e71179e6052e891f1da1
parentb986a5c6b7cdb7d27bd81e11f2cbb6c40a125df2 (diff)
downloadrockbox-43e7cb8f40e443952f2b610cd35eb37f64627a45.tar.gz
rockbox-43e7cb8f40e443952f2b610cd35eb37f64627a45.zip
Documentation for Custom WPS Display on the Player
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1904 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/CUSTOM_WPS_FORMAT53
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/CUSTOM_WPS_FORMAT b/docs/CUSTOM_WPS_FORMAT
new file mode 100644
index 0000000000..16549f389c
--- /dev/null
+++ b/docs/CUSTOM_WPS_FORMAT
@@ -0,0 +1,53 @@
+Custom WPS Display
+wps.config File Format Specifications
+
+Description
+-----------
+The Custom WPS Display is used on the Rockbox Player ONLY as a means
+to customize the WPS to the user's likings.
+The first line of the 2 line display is the customized line (scrolling).
+The second line is always the time display. (Elapsed & Total Time).
+The second line is not able to be customized.
+All characters not preceded by % are displayed as typed.
+
+File Location
+-------------
+The configuration file must be located in the root folder of the
+device and must be named wps.config (lowercase)
+
+Tags
+----
+%t : ID3 Title
+%a : ID3 Artist
+%n : ID3 Track Number
+%u : ID3 Album
+%c : Conditional Title/Filename
+ Displays "Artist - Title" *or*
+ Displays Filename if no ID3 Artist/Title
+%b : File Bitrate
+%f : File Frequency
+%p : File Path
+%m : File Name
+%s : File Size (In Kilobytes)
+%i : Playlist Position
+%l : Playlist Total Entries
+%e : Elapsed Track Time
+%o : Total Track Time
+
+Example wps.config File
+-----------------------
+%i/%l: %c * %sKB
+
+Example Output
+--------------
+ID3 Title: None
+ID3 Artist: None
+Playlist Position: 5
+Playlist Total Entries: 10
+Filename: My Song.mp3
+File Size: 3500
+Elapsed Track Time: 2:23
+Total Track Time: 3:01
+The output of this on the player would be:
+5/10: My Song.mp3 * 3500KB
+2:23/3:01