btesanovic / mconv
Image Photo and Video converter shrinker
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/btesanovic/mconv
This package is auto-updated.
Last update: 2025-11-05 08:38:37 UTC
README
Photo Image and Video converter shrinker written in PHP for Mac OSX , Linux and possibly Windows
Video conversion is dependant on videolan ffmpeg binary,
Image conversion requieres GD php library
Dependancy
- PHP 7+
- GD extension
- ffmpeg for video conversion
This library can be used in other PHP projects or as standalone with mconv CLI tool , mconv stands for media converter
Main purpose of this tool is to save space but retain image and video quality
Installing
brew install ffmpegOSXcomposer require btesanovic/mconv
Usage
Lets say you want to save space by converting all video files to mp4 ( this is default video output format )
Example 1
- Input folder
~/Movies - Input formats
mpg avi mov - Output format
mp4 - -g Stands for glob , "*" matches all files , for example you could use "2018*" to match all files starting with file name 2018 that have any of extensions mentioned above
mpg avi mov
Command
mconv -i ~/Movies -i "mpg,avi,mov" -o mp4 -g "*"
Example 2
Delete all originally converted files
- Input folder
~/MoviesCommand
mconv -i ~/Movies -d