diff options
Diffstat (limited to 'readtags.cpp')
-rw-r--r-- | readtags.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/readtags.cpp b/readtags.cpp index b5a3ef4..169645c 100644 --- a/readtags.cpp +++ b/readtags.cpp @@ -24,6 +24,10 @@ int main(int argc, char *argv[]) cout << "Disc: " << f.disc() << endl; cout << "Bpm: " << f.bpm() << endl; cout << "Year: " << f.year() << endl; + cout << "Length: " << f.length() << endl; + cout << "Bitrate: " << f.bitrate() << endl; + cout << "Sample Rate: " << f.sampleRate() << endl; + cout << "Channels: " << f.channels() << endl; cout << "Compilation: " << f.compilation() << endl; cout << endl; } |