A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
Install convmv if you don't have it
sudo apt-get install convmv
Convert all files in a directory from NFD to NFC:
convmv -r -f utf8 -t utf8 --nfc --notest .
| https://github.com/app-sre/qontract-reconcile.git 30af65af14a2dce962df923446afff24dd8f123e | |
| https://github.com/app-sre/container-images.git c260deaf135fc0efaab365ea234a5b86b3ead404 | |
| https://github.com/app-sre/container-images.git c260deaf135fc0efaab365ea234a5b86b3ead404 | |
| https://github.com/app-sre/container-images.git c260deaf135fc0efaab365ea234a5b86b3ead404 | |
| https://github.com/app-sre/container-images.git c260deaf135fc0efaab365ea234a5b86b3ead404 | |
| https://github.com/appsre/container-images.git c260deaf135fc0efaab365ea234a5b86b3ead404 | |
| https://github.com/app-sre/container-images.git z260deaf135fc0efaab365ea234a5b86b3ead404 | |
Turns out the script is not needed. As the progress is not increasing step by step, it might notify you click enter say at 20%. In my case, it stucks at 13% and then shows Enter page directly after god know some time. For those who don't want to check progress page regularly.
Check the progress from chrome log and notify the progess in mac notification center.
Not sure why mine is stuck at 13% for quite some time. Let me if this is normal.
| // ==UserScript== | |
| // @name adopt GM.getValue GM.setValue and compatible with GM_getValue GM_setValue | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author ychz | |
| // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
| // @include * | |
| // @grant GM.getValue | |
| // @grant GM.setValue |
| #!/bin/bash | |
| # mac vaccine availability notification with jq as only dependency | |
| # you could also send notification to teams by providing your teams webhook url | |
| # Thanks @https://twitter.com/nickblah for https://www.vaccinespotter.org/ | |
| # usage replace json url for your home state | |
| # 1st param is your zipcode | |
| # 2nd param is the distance you are willing to travel | |
| # data wrangling should be much more elegant, but below is the first thing come to my mind | |
| loc=${1:-27517} |