Ridding_mp4 » 【Tested】

If you are trying to "rid" a computer of all MP4 files via a script or command line:

Sometimes you need to rid a file of just its or a specific subtitle track : Remove Audio : ffmpeg -i input.mp4 -an output.mp4 Remove Subtitles : ffmpeg -i input.mp4 -sn output.mp4 ridding_mp4

: Get-ChildItem -Path "C:\YourPath" -Include *.mp4 -Recurse | Remove-Item If you are trying to "rid" a computer

Scroll to Top