Skip to content

Instantly share code, notes, and snippets.

@cjLGH
cjLGH / asmr.py
Created July 4, 2022 00:24
yt-dlp python script to download audio files of asmr videos, depends on yt-dlp and python-slugify
import argparse, yt_dlp
from slugify import slugify
parser = argparse.ArgumentParser()
parser.add_argument('url', metavar='URL|ID', nargs='+', help='a YouTube URL or ID (example: https://www.youtube.com/watch?v=dQw4w9WgXcQ or dQw4w9WgXcQ)')
args = parser.parse_args()
for url in args.url:
class slugifyPP(yt_dlp.postprocessor.PostProcessor):
def run(self, info):
@cjLGH
cjLGH / README.md
Last active December 18, 2021 21:37
ffmpeg and ffprobe commands

m4b to mp3

ffprobe commands

$ ffprobe file.m4b
ffprobe version N-94058-g756dd98 Copyright (c) 2007-2019 the FFmpeg developers
  built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.11) 20160609
  configuration: --prefix=/home/cjLGH/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/home/cjLGH/ffmpeg_build/include --extra-ldflags=-L/home/cjLGH/ffmpeg_build/lib --extra-libs='-lpthread -lm' --bindir=/home/cjLGH/bin --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
  libavutil      56. 29.100 / 56. 29.100
  libavcodec     58. 53.100 / 58. 53.100
@cjLGH
cjLGH / README.md
Last active January 28, 2019 07:27
H.264 to H.265

H.264 to H.265

FFMPEG Commands

Presets Medium and Veryfast, and CRF of 22

Command: ffmpeg -i "INPUT.mkv" -c:a copy -c:v libx265 -preset medium -x265-params crf=22 "OUTPUT.mkv"
Command: ffmpeg -i "INPUT.mkv" -c:a copy -c:v libx265 -preset veryfast -x265-params crf=22 "OUTPUT.mkv"

Two-Pass Encoding - 200 MiB

@cjLGH
cjLGH / 50-backup.rules
Created December 23, 2018 06:23
Ubuntu Backup (udev rules)
KERNEL=="sd?1",ACTION=="add",SUBSYSTEM=="block",ATTRS{serial}=="SERIAL",SYMLINK+="backup",RUN+="/bin/systemctl --no-block start backup@%k.service"
@cjLGH
cjLGH / README.md
Last active July 29, 2018 23:43
Radarr Manual Install
@cjLGH
cjLGH / README.md
Last active November 26, 2022 15:46
Radarr Automated Install

Automated Install (Radarr)

Save As: radarr_install.sh
Run Command: sudo ./radarr_install.sh

@cjLGH
cjLGH / README.md
Last active July 29, 2018 22:36
Deluge Daemon/Web (deluged/deluge-web) Service

Deluge Daemon/Web Services

deluged.service - Deluge Daemondeluge-web.service - Deluge Web

@cjLGH
cjLGH / README.md
Last active May 24, 2022 18:15
Windows 10 MDT Scripts

Windows 10 MDT Scripts

Decrapifier

AppsFolder Shortcut

Depreciated

~~AppX Removal