note about the 'text' format

This commit is contained in:
Mathias Panzenböck 2024-03-17 19:14:38 +01:00
parent 00a5c547ef
commit 23e0b8fdc8
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
*~
*.o
build*
/tmp

View File

@ -158,6 +158,10 @@ files.
NOTE: When using only the 'mpg123' format but not 'id3v2' any ID3v2
tag will be stripped. ID3v1 tags will still be kept.
NOTE: The 'text' format might detect too much bogus text in UTF-16 or
UTF-32 encodings. I recommend to use 'utf-8' or 'ascii' instead, if
you can.
If '-' is written before a format name the format will be
removed from the set of formats to extract. E.g. extract
everything except tracker files:

View File

@ -229,6 +229,10 @@ static int usage(int argc, char **argv)
" NOTE: When using only the 'mpg123' format but not 'id3v2' any ID3v2\n"
" tag will be stripped. ID3v1 tags will still be kept.\n"
"\n"
" NOTE: The 'text' format might detect too much bogus text in UTF-16 or\n"
" UTF-32 encodings. I recommend to use 'utf-8' or 'ascii' instead, if\n"
" you can.\n"
"\n"
" If '-' is written before a format name the format will be\n"
" removed from the set of formats to extract. E.g. extract\n"
" everything except tracker files:\n"