>>2440455Here's a batch script to create a soundless copy of all webm files in a directory:
for %%A IN (*.webm) DO ffmpeg -i "%%A" -c:v copy -an "%%A-no-sound.webm"
(I'm assuming you use Windows, here. If you use Linux, I'm sure you can figure out what to do)