Skip to content

Instantly share code, notes, and snippets.

@Lewiscowles1986
Last active April 20, 2024 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lewiscowles1986/3077e2dd0048be449854c93edee446a4 to your computer and use it in GitHub Desktop.
Save Lewiscowles1986/3077e2dd0048be449854c93edee446a4 to your computer and use it in GitHub Desktop.
MVE to MP4

MVE to MP4 Gnome File Manager Action

Adds a context menu to the Gnome File Manager for .mve & .MVE files (interplay video format)

Used to save space, but also to enable a minor project I have been wanting for a while to bring an old Windows game to Linux (technically to web, so any OS supporting HTML5 media)

Installing

mkdir -p ~/.local/share/file-manager/actions
wget https://gist.github.com/Lewiscowles1986/3077e2dd0048be449854c93edee446a4/raw/dfba57638a03b02da991b97365e022807f4da2bd/mve-to-mp4-converter.desktop -O ~/.local/share/file-manager/actions/mve-to-mp4-converter.desktop

Then open the gnome-filemanager as usual, navigate to a folder with .mve & .MVE files, right-click and select the context menu item

License

Creative Commons Licence
This work is licensed under a Creative Commons Attribution 4.0 International License.

[Desktop Entry]
Type=Action
ToolbarLabel[en_GB]=Convert MVE to MP4
ToolbarLabel[en]=Convert MVE to MP4
ToolbarLabel[C]=Convert MVE to MP4
Name[en_GB]=Convert MVE to MP4
Name[en]=Convert MVE to MP4
Name[C]=Convert MVE to MP4
Profiles=profile-zero;
[X-Action-Profile profile-zero]
Basenames=*.MVE;*.mve;
Exec=ffmpeg -i %f -c:v h264 -c:a mp3 %w.mp4
Name[en_GB]=Default profile
Name[en]=Default profile
Name[C]=Default profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment