m4aTomp3.sh
#!/bin/sh
# name of this script: m4a2mp3.sh
# m4a to mp3
for i in *.m4a; do
faad "$i"
x=`echo "$i"|sed -e 's/.m4a/.wav/'`
y=`echo "$i"|sed -e 's/.m4a/.mp3/'`
lame -h -b 192 "$x" "$y"
rm "$x"
done
convert shell
<iframe width="100%" height="434" src="https://snippet.echosystem.fr?embed=571a7859aba53" type="text/html"></iframe>
Texte seul - Permalink - Snippet public posté le 02/11/2021