If you don't mind using the command line, ffmpeg is pretty easy to use. I haven't tested its MPEG1 encoder, though.
Edit: An example of using ffmpeg at the command line for MPEG1 is:
ffmpeg -i sample.mov -f mpg -vcodec mpeg1video -an output.mpg
Of course, you can make things more complicated by scaling, adding audio, etc.