A command line tool to execute simple file conversions, image/video manipulations and folder changes. Use with conv <query>. Note that your outputs are being used to constantly being fine-tune a model to make it work better over time.
pip install convertlyyou will be prompted to configure the tool using your own OpenAI key.
To use Convertly, you can run the command followed by your query. For example:
> conv convert file.webp to file.png
* dwebp file.webp -o file.pngView the history of your queries with:
conv --historyOr reset your history with:
conv --clear> conv a video in /path/to/video.mp4 to a gif
* ffmpeg -i /path/to/video.mp4 /path/to/video.gif> conv copy all of Documents/Screenshots to a folder called Screenshots2 in the same directory
* cp -a Documents/Screenshots Documents/test> conv rotate image.png by 90 degrees
* brew install imagemagick
* convert image.png -rotate 90 rotated_file.pngConvertly wont be perfect; if you run into any issues, please send me a message or create an issue.