diff options
author | B. Watson <yalhcru@gmail.com> | 2021-11-26 16:08:01 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-04 10:09:01 +0700 |
commit | 73d1ee882a7f87b5ee32545cc8394ac4279636c1 (patch) | |
tree | c8bbe2709c690012e6487f3997ee7d8d0f8647a2 /audio/mktoc | |
parent | dd28ef896461a20738deefa11e30834fa87cf0e6 (diff) | |
download | slackbuilds-73d1ee882a7f87b5ee32545cc8394ac4279636c1.tar.gz |
audio/mktoc: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/mktoc')
-rw-r--r-- | audio/mktoc/README | 4 | ||||
-rw-r--r-- | audio/mktoc/mktoc.SlackBuild | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/audio/mktoc/README b/audio/mktoc/README index c0075b4bc7..25dd6f818f 100644 --- a/audio/mktoc/README +++ b/audio/mktoc/README @@ -16,3 +16,7 @@ Features: * Fuzzy file name logic can correct common file name spelling variations. * Workaround known TOC file parsing bugs in cdrdao. + +Note: mktoc can't handle .wav files that use floating point samples. +You can convert such wav files to 16-bit integer samples: + $ sox input.wav -b16 output.wav diff --git a/audio/mktoc/mktoc.SlackBuild b/audio/mktoc/mktoc.SlackBuild index abb98e26a4..b330431cba 100644 --- a/audio/mktoc/mktoc.SlackBuild +++ b/audio/mktoc/mktoc.SlackBuild @@ -7,6 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211126 bkw: add README note about floating point samples. # 20180111 bkw: # - take over maintenance # - BUILD=2 @@ -33,9 +34,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 |