I successfully outputted the desired effect for my FFMPEG command. I had been removing the audio from my videos with this line of code:
for i in *.mov; do ffmpeg -i $i -c:v copy -an $i-noaudio.mp4; done
The output results as "myInputvideo.mov-noaudio.mp4"
How might I get this to output without the ".mov" in the title? And how might I move all these outputs into a new directory entitled "no-audio"
Thank you!