active_playlist |
|
Returns the index of the active playlist
|
file_exists |
'<path>' |
Returns 1, if <path> exists, 0 otherwise unless <path>
is NULL.
|
format_length |
<length in seconds> |
Formats the specified length as weeks, days, hours, minutes and seconds
|
format_length_hours |
<length in seconds> |
Formats the specified length as hours, minutes and seconds |
strpos |
'<string>', '<search>' |
Search <search> in
<string> and return the 1-based position. Returns 0, if
<search> is not found.
|
padl
|
'<string>', <length> [, '<filler>'] |
Pads <string> to the length
<length> with <filler> on the left side. <filler>
is optional and defaults to ' '. If <filler> contains more
than one character, <filler> will be added as many times as it
fits without exceeding <length>.
|
padr |
'<string>', <length> [, '<filler>'] |
Pads <string> to the length
<length> with <filler> on the right side. <filler>
is optional and defaults to ' '. If <filler> contains more
than one character, <filler> will be added as many times as it
fits without exceeding <length>. |
playing_playlist |
|
Returns the index of the playing playlist
|
regexp |
'<regular expression>', '<string>' |
Returns 1, if <string> matches <regular expression> and 0 otherwise. This function also implements the SQLite REGEXP operator. The supported regular expression syntax is described here. |
regexp_replace |
'<regular expression>', '<format>', '<string>' [,<flag=0>] |
Returns the parts of <string>, that don't match <regular expression> unchanged and replace the matched parts by <format>. If flag=1 the unmatched parts will be dropped. The supported formats are described here. |
regexp_replace_first |
'<regular expression>', '<format>', '<string>' [,<flag=0>] |
Works like regexp_replace, but only replaces the first found match. |
regexp_search |
'<regular expression>', '<string>' |
Returns 1, if a match of <regular expression> inside of <string> is found and 0 otherwise. |
strsortgroup |
'<string>', '<delimiter>' |
Sorts the groups inside <string> which are separated by <delimiter>. |
tf_focus_item
|
<playlist index>, '<title format expression>' |
Evaluates <title format expression> for the item which has
the focus in the playlist with the index <playlist index>
|
tf_focus_item_pn |
'<playlist name>, '<title format expression>' |
Evaluates <title format expression> for the item which has
the focus in the playlist with the name <playlist name> |
tf_playing_item
|
'<title format expression>' |
Evaluates <title format expression> for the item which is
the currently playing item
|