size and begin gnuplot

This commit is contained in:
2024-01-28 17:41:56 -06:00
parent 679e6da01e
commit 3a56e05afc
2 changed files with 5 additions and 4 deletions

View File

@@ -45,9 +45,9 @@ ENCODER=('libsvtav1' 'librav1e' 'libaom-av1')
PRESET=(4 8 12) PRESET=(4 8 12)
# uncomment for quick testing # uncomment for quick testing
# CRF=(30) CRF=(30)
# ENCODER=('libsvtav1') ENCODER=('libsvtav1')
# PRESET=(13) PRESET=(13)
# Log for results # Log for results
LOG="$BENCHMARK_DIR/results.txt" LOG="$BENCHMARK_DIR/results.txt"
@@ -86,6 +86,7 @@ do
TIME_AFTER=$(date +%s) TIME_AFTER=$(date +%s)
TIME_DIFF=$((TIME_AFTER - TIME_BEFORE)) TIME_DIFF=$((TIME_AFTER - TIME_BEFORE))
echo -e "\ttime taken: $TIME_DIFF seconds" >> "$LOG" echo -e "\ttime taken: $TIME_DIFF seconds" >> "$LOG"
echo -e "\tsize: $(du -h "$OUTPUT" | cut -f1)" >> "$LOG"
# vmaf # vmaf
VMAF_RESULTS="${OUTPUT}_vmaf.json" VMAF_RESULTS="${OUTPUT}_vmaf.json"

View File

@@ -9,7 +9,7 @@ sudo "$PKG_MNG" install autoconf automake build-essential cmake git-core \
libass-dev libfreetype6-dev libsdl2-dev libtool libva-dev libvdpau-dev \ libass-dev libfreetype6-dev libsdl2-dev libtool libva-dev libvdpau-dev \
libvorbis-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev pkg-config \ libvorbis-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev pkg-config \
texinfo wget zlib1g-dev nasm yasm libssl-dev time python3 meson ninja-build\ texinfo wget zlib1g-dev nasm yasm libssl-dev time python3 meson ninja-build\
doxygen xxd jq lshw -y || exit 1 doxygen xxd jq lshw gnuplot -y || exit 1
curl https://sh.rustup.rs -sSf | sh -s -- -y curl https://sh.rustup.rs -sSf | sh -s -- -y
source "$HOME/.cargo/env" source "$HOME/.cargo/env"