Skip to content

v3.7 - PR Headless

Latest
Compare
Choose a tag to compare
@cliveontoast cliveontoast released this 26 May 10:07
aa831fc

Fixed #37

Windows users, download https://github.com/cliveontoast/GoMoPho/releases/download/v3.7/GoMoPho.Windows.3.7.zip

You can double click GoMoPhoConsole

A command line argument s can be passed to process the folder c:\temp\New Folder and split the jpeg into two files, a jpg and mp4 and copy them to c:\temp\Processed

.\GoMoPhoConsole.exe d "c:\temp\New Folder" s "c:\temp\Processed"

A command line argument with a g can be passed to create gif files

.\GoMoPhoConsole.exe d "c:\temp\New Folder" g

Both can be used together too, as well as attempting to process any *.jpg file

.\GoMoPhoConsole.exe d "c:\temp\New Folder" g s "c:\temp\Processed" p *.jpg

Running the zip release

Choose the zip file for your computer and unzip it to a new location. Native is compiled for the operating system, while CrossPlatform runs on all platforms via the dotnet runtime https://www.microsoft.com/net/download

  • Windows - GoMoPho.WindowsCore
  • GNU/Linux - GoMoPho.GNULinux
  • macOS - GoMoPho.macOS
  • Ubuntu - GoMoPho.Ubuntu
  • any operating system - choose GoMoPho.CrossPlatform if you have/download .NET Core

My windows build process does not support unix permissions. The native compiled GNU/Linux versions require unzipping and then applying execute permissions. The CrossPlatform version does not.
The following bash commandline will unzip and apply the execute permission to the GoMoPhoCoreConsole file

unzip -d ./GoMoPho GoMoPho.GNULinux.3.7.zip && cd ./GoMoPho && source grant_perms.sh