commit ed0ec7ca25e013db777d58329a76f7ba8b6472dd
Author: David Sorber <david.sorber@gmail.com>
Date:   Wed Apr 24 21:14:46 2024 -0400

    Update build ffmpeg shared library script.

diff --git a/software/misc/build_ffmpeg_shared.sh b/software/misc/build_ffmpeg_shared.sh
index 098e840..c0c1696 100755
--- a/software/misc/build_ffmpeg_shared.sh
+++ b/software/misc/build_ffmpeg_shared.sh
@@ -34,7 +34,7 @@ BIN_DIR="$INSTALL_DIR/bin"
 LIB_DIR="$INSTALL_DIR/lib"
 
 # Set to a string containing the version you wish to install
-FFMPEG_VERSION="5.1" # <--- set this to latest version
+FFMPEG_VERSION="6.1" # <--- set this to latest version
 
 NUM_CORES=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l)
 
@@ -87,9 +87,9 @@ echo
 
 echo "Building NASM"
 cd $SOURCES_DIR && \
-wget https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.bz2 && \
-tar xjvf nasm-2.15.05.tar.bz2 && \
-cd nasm-2.15.05 && \
+wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.bz2 && \
+tar xjvf nasm-2.16.01.tar.bz2 && \
+cd nasm-2.16.01 && \
 ./autogen.sh && \
 PATH="$BIN_DIR:$PATH" ./configure --prefix="$INSTALL_DIR" --bindir="$BIN_DIR" --libdir="$LIB_DIR" && \
 make -j$NUM_CORES && sudo make install
