As the name suggests, MimeDetector is a simple program for recognizing the MIME type of files
- Detect MIME type of files
- Provide details about MIME types
A preview is available here
Important:
- Search does not work
Run the build script or follow the instructions below.
- Clone MarkdownEdit:
git clone https://github.com/tim-gromeyer/MimeDetector --depth=1 && cd MimeDetector
- Create the build folder:
mkdir build && cd build
. - Now create a Makefile with CMake:
cmake ..
. - Build it:
cmake --build . -j4
In summary:
git clone https://github.com/tim-gromeyer/MimeDetector --depth=1 && cd MimeDetector
mkdir build && cd build
cmake ..
cmake --build . -j4