I need to convert a lot of *.wav in different folder, i try to use find and flac to convert all this without missing name of the track in the folder.
This is the line I try to use :
find ./ -type f -iname "*.wav" -exec sh -c flac -8 *.wav \; I don't know what missing but flac show me the man. I think I need some help :)
ps : I find a "solution" but with ffmpeg, I prefer using flac.