Hi there 👋

D221 blog

miscellaneous useful scripts

Convert a folder of mp3 files to opus for audiobooks convopus "input_folder" -b 32k JPEG to JPEG XL windows: for %i in (*.jpg) do cjxl "%i" "%~ni.jxl" linux: for f in *.jpg; do cjxl "${f}" "${f%%.*}.jxl"; done H.264 to AV1 windows: for %i in (*.mp4) do ffmpeg -i "%i" -vcodec libsvtav1 -acodec libopus "%~ni.mkv" linux: for f in *.mp4; do ffmpeg -i "${f}" -vcodec libsvtav1 -acodec libopus "${f%%.*}.mkv"; done SOCKS5 Python Proxy Checker https://gist....

May 29, 2022 Â· D221

Okeanic

Okeanic - A clean minimal foobar theme Features Minimalistic (<50MB RAM Usage) Waveform seekbar Auto fetching lyrics Scalable interface (thanks to Panel Stack Splitter) No ugly borders last.fm scrobbing Installation Fresh foobar2000 profile highly recommended Theme tested on v1.6.13 & v2.0 beta 12 32bit DOESN’T (YET) WORK ON v2.0 64bit Download this repo Install included font From zip file copy user-components, theme, foo_spider_monkey_panel and configuration to your profile location: Standard installation: %appdata%/foobar2000 Portable installation: <your foobar2000 folder>/profile If you are using foobar2000 v2....

May 29, 2022 Â· D221

convopus

convopus is a Python CLI program for converting audio files to opus audio format. Features Windows / Linux / macOS / Android (via Termux) support Customizable bitrate, vbr and more (via config.json) Support of various input audio formats / containers Fast multi threading converting Recursive conversion Installation Must have installed ffmpeg and added to PATH pip install convopus Build git clone https://github.com/D221/convopus cd convopus pip install . Usage convopus -h # for info # The pogram detects directory or file convopus /path/to/directory convopus /path/to/file You can customize settings in config....

May 29, 2022 Â· D221

convert-to-opus

Also check out CLI of this convert-to-opus-cli convert_to_opus is a Python GUI program for converting audio file directories to opus audio format. Features You can choose whether or not you want to preserve the original files The ability to choose the bitrate The majority of commonly used audio file forms are supported Screenshots Installation pip install convert_to_opus Requirements ffmpeg Python >=3.7 wxPython Usage convert_to_opus Choose a directory then press CONVERT....

May 28, 2022 Â· D221