$ 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |
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"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KERNEL=="sd?1",ACTION=="add",SUBSYSTEM=="block",ATTRS{serial}=="SERIAL",SYMLINK+="backup",RUN+="/bin/systemctl --no-block start backup@%k.service" |
Radarr Wiki Installation for Debian/Ubuntu