Results
Preset | Size | Time | Speed |
---|---|---|---|
Input | 2 822 666 | ||
10 | 2 945 966 | 6s | 142% |
9 | 2 938 516 | 11s | 88% |
8 | 2 817 094 | 16s | 61% |
7 | 2 779 557 | 24s | 40% |
6 | 2 752 068 | 41s | 23% |
# scripts | |
tar --create --file - archive | zstd -15 -T0 > archive.tar.zst | |
# tty | |
tar --create --file - archive | zstd --progress -15 -T0 > archive.tar.zst |
*** zstd command line interface 64-bits v1.5.2, by Yann Collet *** | |
Usage : | |
zstd [args] [FILE(s)] [-o file] | |
FILE : a filename | |
with no FILE, or when FILE is - , read standard input | |
Arguments : | |
-# : # compression level (1-19, default: 3) | |
-d : decompression | |
-D DICT: use DICT as Dictionary for compression or decompression |
#!/usr/bin/env bash | |
set -o errexit | |
: "${otherReposFolder:="$HOME/src"}" | |
gitClone ryanoasis/nerd-fonts | |
cd "$otherReposFolder/nerd-fonts" | |
sudo ./install.sh --install-to-system-path DroidSansMono FiraCode Inconsolata JetBrainsMono NerdFontsSymbolsOnly SourceCodePro Ubuntu UbuntuMono |
fields=0 17 38 2 46 111 1 | |
sort_key=46 | |
sort_direction=-1 | |
tree_sort_key=38 | |
tree_sort_direction=-1 | |
hide_kernel_threads=1 | |
hide_userland_threads=0 | |
shadow_other_users=0 | |
show_thread_names=0 | |
show_program_path=1 |
# | Preset | Quality | Tune | Size | Time Absolute | Time Relative | VMAF | |
---|---|---|---|---|---|---|---|---|
1 | 10 | 40 | VQ | 5,464,409 b | 5 s | 0.70 | 64.14% | |
2 | 10 | 40 | PSNR | 5,273,856 b | 5 s | 0.70 | 61.79% | |
3 | 10 | 30 | VQ | 11,569,091 b | 5 s | 0.70 | 80.38% | |
4 | 10 | 30 | PSNR | 11,213,887 b | 5 s | 0.70 | 77.90% | |
5 | 10 | 20 | VQ | 19,670,020 b | 5 s | 0.70 | 88.42% | |
6 | 10 | 20 | PSNR | 19,277,973 b | 6 s | 0.84 | 86.84% | |
7 | 9 | 40 | VQ | 5,353,115 b | 7 s | 0.98 | 65.69% | |
8 | 9 | 40 | PSNR | 5,216,642 b | 7 s | 0.98 | 64.58% | |
9 | 9 | 30 | VQ | 11,156,832 b | 9 s | 1.26 | 81.74% |
Preset | Size | Time | Speed |
---|---|---|---|
Input | 2 822 666 | ||
10 | 2 945 966 | 6s | 142% |
9 | 2 938 516 | 11s | 88% |
8 | 2 817 094 | 16s | 61% |
7 | 2 779 557 | 24s | 40% |
6 | 2 752 068 | 41s | 23% |
Type | Command |
---|---|
banner | ffmpeg |
formats | ffmpeg -hide_banner -formats |
codecs | ffmpeg -hide_banner -codecs |
encoders | ffmpeg -hide_banner -encoders |
decoders | ffmpeg -hide_banner -decoders |
filters | ffmpeg -hide_banner -filters |
Usage: configure [options] | |
Options: [defaults in brackets after descriptions] | |
Help options: | |
--help print this message | |
--quiet Suppress showing informative output | |
--list-decoders show all available decoders | |
--list-encoders show all available encoders | |
--list-hwaccels show all available hardware accelerators | |
--list-demuxers show all available demuxers |
[core] | |
eol = lf | |
autocrlf = false | |
editor = nano | |
[user] | |
name = Jaid | |
username = jaid | |
email = jaid.jsx@gmail.com | |
signingKey = 692243D6580C4583929E0D72D2D437CD3022B929 | |
[commit] |
if [ -f ~/.env ]; then | |
source ~/.env | |
fi | |
if [ -f ~/.secrets ]; then | |
source ~/.secrets | |
fi | |
: "${userBinFolder:="$HOME/bin"}" | |
: "${otherReposFolder:="$HOME/src"}" |