Fix error message when using ffmpeg git version

This commit is contained in:
q3aql 2025-01-04 11:07:29 +01:00
parent dbf77c2ea6
commit 1baec22b5c
8 changed files with 24 additions and 24 deletions

View File

@ -2,12 +2,12 @@
################################################## ##################################################
# ks-av1 (ks-tools) - Convert video to AV1 codec # # ks-av1 (ks-tools) - Convert video to AV1 codec #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
################################################## ##################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################ ############################################################
# ks-av1s (ks-tools) - Convert video to AV1 codec (Series) # # ks-av1s (ks-tools) - Convert video to AV1 codec (Series) #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################ ############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################### ###############################################################
# ks-avi (ks-tools) - Convert video to AVI format # # ks-avi (ks-tools) - Convert video to AVI format #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################### ###############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################### ###############################################################
# ks-crop (ks-tools) - Crop or change aspect ratio of a video # # ks-crop (ks-tools) - Crop or change aspect ratio of a video #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################### ###############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
##################################################################### #####################################################################
# ks-mix (ks-tools) - Extract video/audio and mix video/audio files # # ks-mix (ks-tools) - Extract video/audio and mix video/audio files #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
##################################################################### #####################################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################### ###############################################################
# ks-mp4 (ks-tools) - Convert video to MP4 format # # ks-mp4 (ks-tools) - Convert video to MP4 format #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################### ###############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################### ###############################################################
# ks-mp4k (ks-tools) - Convert video to MP4 format (4K) # # ks-mp4k (ks-tools) - Convert video to MP4 format (4K) #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################### ###############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"

View File

@ -2,12 +2,12 @@
############################################################### ###############################################################
# ks-mp4s (ks-tools) - Convert video to MP4 format (Series) # # ks-mp4s (ks-tools) - Convert video to MP4 format (Series) #
# Date: 02-11-2023 # # Date: 04-01-2025 #
# Author: q3aql # # Author: q3aql #
# Contact: q3aql@duck.com # # Contact: q3aql@duck.com #
############################################################### ###############################################################
VERSION="8.5" VERSION="8.5"
M_DATE="021123" M_DATE="040125"
# Detect version ffmpeg for old releases # Detect version ffmpeg for old releases
ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1) ffmpeg_version=$(ffmpeg -version 2>&1 | grep version | head -1 | cut -d " " -f 3 | cut -d "." -f 1)
@ -18,7 +18,7 @@ unset IFS
if [ -z "${ffmpeg_version}" ] ; then if [ -z "${ffmpeg_version}" ] ; then
video_sync="vsync" video_sync="vsync"
else else
if [ ${ffmpeg_version} -lt 5 ] ; then if [ ${ffmpeg_version} -lt 5 ] 2> /dev/null ; then
video_sync="vsync" video_sync="vsync"
else else
video_sync="fps_mode" video_sync="fps_mode"