
Originally Posted by
Budgie2
Hi and many thanks. I had studied the man pages but it the the "%" followed by a letter that have me foxed. Where are the letters defined and what exactly does the % signify.
I have so far tried asunder, grip, K3b, Audex, soundKonverter and if I could find an 11.4 version I would try Kaudiocreator.
The problem starts with the freedb lookup. In some cases I get nothing back but in other cases I get a great deal of data but when I rip, for some tracks the process fails and I either get left with a .wav file or no ending and an error message.
As I have posted elsewhere I believe there may be illegal characters in the tagging data which is frustrating the process.
About to try again. If you have any ideas please let me know.
Regards and Happy New Year,
Budgie2
Some times the % sign is used to represent a space I know. As for illegal characters, here is a script snipit I used to remove such characters from the file names of existing media files before conversion (m4a).
Code:
#
# This section contains the modifications to files before the conversion
#
#replace all spaces with an underline
for i in *.[Mm]4[Aa] ; do
mv "$i" `echo $i | tr ' ' '_'`
done
#replace all uppercase letters with lowercase
for i in *.[Mm]4[Aa] ; do
mv "$i" `echo $i | tr '[A-Z]' '[a-z]'`
done
#replace all ( letters with -
for i in *.[Mm]4[Aa] ; do
mv "$i" `echo $i | tr '(' '-'`
done
#replace all ) letters with -
for i in *.[Mm]4[Aa] ; do
mv "$i" `echo $i | tr ')' '-'`
done
Of course this was for existing media files, but the characters in question were giving me a problem.
Thank You,
Bookmarks