💾 Archived View for chronowerks.de › log.gmi captured on 2021-12-17 at 13:26:06. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
2021-09-11
Kill blanks in all the files in the current directory:
$ for i in *; do mv "$i" $(echo $i | sed "s/ /_/g"); done
and then lowercase them:
$ for i in *; do mv "$i" "$(echo $i | tr [:upper:] [:lower:])"; done
2020-10-11
Sometimes when you watch a movie on streaming portals and want to download them you often see the in the browser inspector that the data URL of the video element points to a blob. That does not help you as you cannot download the blob directly. What you need to do is:
$ ffmpeg -i ${m3u} -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 ${out}