mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 04:54:19 -04:00
Remove deprecated stuff
This commit is contained in:
@ -75,8 +75,8 @@ int main(int argc, char *argv[])
|
||||
|
||||
TagLib::AudioProperties *properties = f.audioProperties();
|
||||
|
||||
int seconds = properties->length() % 60;
|
||||
int minutes = (properties->length() - seconds) / 60;
|
||||
int seconds = properties->lengthInSeconds() % 60;
|
||||
int minutes = (properties->lengthInSeconds() - seconds) / 60;
|
||||
|
||||
cout << "-- AUDIO --" << endl;
|
||||
cout << "bitrate - " << properties->bitrate() << endl;
|
||||
|
Reference in New Issue
Block a user