Just lighter things..
Each time you light your lighter,
your lighter gets lighter.
When your lighter gets too light,
it won’t light.
Each time you light your lighter,
your lighter gets lighter.
When your lighter gets too light,
it won’t light.
I can’t go because of the Corona Virus…
I’ve sworn an oath of solitude til the blight is purged from these lands!
To create audio-less copies of all the .mp4 videos in a folder, execute the following:
find . -type f -name "*.mp4" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -c copy -an "${FILE%.mp4}.ns.mp4";' _ '{}' \;
For a single file, the command would be:
ffmpeg -i input.mp4 -c copy -an output.mp4
First install gif.ski using snap.
snap install gifski;
Then use ffmpeg to break down your video to frames:
ffmpeg -i video.mp4 frame%05d.png;
Finally use gif.ski to create your gif from the frames:
gifski -o clip.gif frame*.png;
Delete the frames if you do not need them, they will be taking a lot of space.