A script that adds time of block next to it's start / end times in the timetable.
- Install a Userscript browser extension
- Tampermonkey (I use this one)
- Violentmonkey
- etc.
A script that adds time of block next to it's start / end times in the timetable.
This snippet will (in current dir):
.heic
/ .HEIC
extension to ones with .png
..heic
files.find . -type f -iname '*.heic' -print0 | while IFS= read -r -d '' file; do heif-convert "$file" -f "png" && rm "$file"; done
ffmpeg -i in.mp4 -vf "crop=1920:1040:0:0" out.mp4
# cropped width and height ^ (we're removing 40px from the height)
# coordinates of the top-left corner ^ (we're setting the top-left corner to the top-left of the screen so we cut out the bottom 40px)
➜ ffmpeg -i in.mp4 -vf "crop=1240:720:0:0" out.mp4
# cropped width and height ^ (we're removing 40px from the height)
# coordinates of the top-left corner ^ (we're setting the top-left corner to the top-left of the screen so we cut out the bottom 40px)