In playlist files generated on the fly by GNUmp3d, all playlength values
are off by a factor of 60.
I did a little research and found the reason in tagcache.pm, where the
values for seconds, minutes and hours are multiplied by 60 once too often.
The attached patch fixes that - I hereby apply for CVS-checkin :-)
Cédric
386,388c386,388
< $length = ( $secs * 60 ) +
< ( $mins * 60 * 60 ) +
< ( $hours * 60 * 60 * 60 );
---
> $length = ( $secs) +
> ( $mins * 60 ) +
> ( $hours * 3600 );
_______________________________________________
Gnump3d-users mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnump3d-users