September 15, 20187 yr Is there a script or package that would be useful in converting images from on format to another on Unraid? I'm interested in GIF to PNG conversion. Edited September 15, 20187 yr by ICDeadPpl
February 16, 20206 yr Author 7 hours ago, Chris_bacon said: Did you end up finding a solution? Trying to do the same but tiff to JPG I solved it by downloading ffmpeg and using it to convert GIF to PNG. I added this to my 'go' file: # Start install ffmpeg cd /tmp wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz tar xf ffmpeg-git-amd64-static.tar.xz rm ffmpeg-git-amd64-static.tar.xz cd ffmpeg* cp ffmpeg /usr/local/bin/ cp ffprobe /usr/local/bin/ chmod 777 /usr/local/bin/ffmpeg chmod 777 /usr/local/bin/ffprobe cd .. rm -rf ffmpeg* # End install ffmpeg Then I use this in a script to convert from GIF to PNG: /usr/local/bin/ffmpeg -y -i image001.gif image001.png
Archived
This topic is now archived and is closed to further replies.