I was trying to convert some .ape files to .flac files using avconv on command line; obviously, avconv is not the main point here; its syntax is pretty straightforward, avconv -i inputApeFile.ape outputFlacFile.flac.
The point is that the files are nested in more subfolders; i.e., I have the Artist folder, then various CD subfolders, each of one contain different .ape files. How can I convert all the files and then save them in the same folder of the original file but with the .flac extension?
If it is possible, I'd like to use only shell command on a single line without using scripts. I think it should be something like that
avconv -i 'ls -R | grep ape' '???'
but I'm stuck with the second part (maybe using sed??!?)