I've seen lots of answers for this.
I'm trying to convert all videos in a folder to audio with.
for i in *.mp4; do ffmpeg -i "$i" -vn -acodec copy "${i%.*}.aac"; doneFFmpeg throws the error:
*.mp4: No such file or directoryCan anyone let me know how to do this?
11 Answer
Thanks @steeldriver for the comment suggesting there might not be any files with that name in the current directory and they might be in subdirectories instead.
It was dumber than that... the files were all .MP4 (note the case).
0