Cut and Make Video Into Gif in Linux
I. Installation
sudo apt-get install ffmpeg
II. First Way Use
This way the video is cut and converted into a gif.
Cut the video to be in accordance with the duration we want:
ffmpeg -i original.mp4 -ss 00:03:20 -c copy -t 00:00:30 output.mp4
Not...
helmigandi.hashnode.dev2 min read