How to decrease the size of an MP4 file with FFmpeg on Linux

Linux

With ffmpeg you can also decrease the size (aka quality) of an mp4 file on the Linux command line.
You can use the following example, which will generate a +/- 5MB file:

ffmpeg -i original.mp4 -fs 5M newfile.mp4