diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-22 13:34:48 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-22 13:34:48 +0000 |
| commit | fefbce2e2f26d5f74318baad54646fa1bb74b680 (patch) | |
| tree | f24c81dfafbc714033d086a416728246a35150d2 /src/plugins | |
| parent | ff28a947df32728be80c7739e377bcb3ea43861f (diff) | |
| download | qmmp-fefbce2e2f26d5f74318baad54646fa1bb74b680.tar.gz qmmp-fefbce2e2f26d5f74318baad54646fa1bb74b680.tar.bz2 qmmp-fefbce2e2f26d5f74318baad54646fa1bb74b680.zip | |
added track properties to title formatting fields
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8211 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/CommandLineOptions/StatusOption/statusoption.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp index a536daa6b..9bc6d72ec 100644 --- a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp +++ b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp @@ -100,6 +100,13 @@ QString StatusOption::executeCommand(const QString &opt_str, const QStringList & out += tr("%F - full path") + "\n"; out += tr("%y - year") + "\n"; out += tr("%l - duration") + "\n"; + out += tr("%{bitrate} - bitrate") + "\n"; + out += tr("%{samplerate} - sample rate") + "\n"; + out += tr("%{channels} - number of channels") + "\n"; + out += tr("%{samplesize} - bits per sample") + "\n"; + out += tr("%{format} - format name") + "\n"; + out += tr("%{decoder} - decoder name") + "\n"; + out += tr("%{filesize} - file size") + "\n"; out += tr("%if(A&B&C,D,E) - condition") + "\n"; out += tr("%dir(n) - directory name located on n levels above"); } |
