Skip to content

Instantly share code, notes, and snippets.

@yuraloginoff
yuraloginoff / ffmpeg_recipes.md
Last active December 26, 2022 18:26 — forked from protrolium/ffmpeg.md
ffmpeg recipes

ffmpeg recipes

Video compression - decrease size, maintain quality

ffmpeg -i original.mp4 -crf 28 compressed.mp4

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:

@yuraloginoff
yuraloginoff / Colorful Bash Prompt
Last active June 6, 2020 11:27 — forked from trinne/Colorful Bash Prompt
#bash: Colorful Bash Prompt
# Colorful Bash Prompt, inspired by "Extravagant Zsh Prompt"
# Screenshot: http://img.gf3.ca/d54942f474256ec26a49893681c49b5a.png
# A big thanks to \amethyst on Freenode
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then export TERM=xterm-256color
fi
if tput setaf 1 &> /dev/null; then
tput sgr0