find . -type f -exec my-script '{}' ';'
where my-script has
Code:
ffmpeg -i $1 2> ~/file-codec-analysis.txt
The problem is when file name has 'space separated words' then $1 becomes only the first word.
What should I do so that $1 becomes 'file with many words'?