To use VLC to convert from MOD to MP4, you can use the following command:
vlc -I dummy -vvv "MyVid.mod" --sout=
... where:
-I dummy - VLC GUI not showing
-vvv - gives you verbose output
- sout - indicates the parameters that should be used when encoding in MP4
You can view a complete list of VLC command line options by running vlc -H from the command line. There is also a complete list on the Internet at https://wiki.videolan.org/VLC_command-line_help
If you do not have a VLC installed locally, or you want to redirect bulk video conversions, you can always use the file conversion API, for example https://developers.zamzar.com . This service provides a REST'ful API for converting files, and mod to mp4 provides a supported conversion.
Full disclosure: I am the lead developer of the Zamzar API.
Chris whyley
source share