docker reworking

This commit is contained in:
2025-09-11 19:45:35 -05:00
parent 0e97fb8c91
commit 82ff7d4f43
10 changed files with 214 additions and 123 deletions

View File

@@ -381,7 +381,7 @@ gen_encode_script() {
# actually do ffmpeg commmand
echo
if [[ ${DISABLE_DV} == 'false' ]]; then
if [[ ${DISABLE_DV} == false ]]; then
echo 'ffmpeg "${ffmpegParams[@]}" -dolbyvision 1 "${OUTPUT}" || \'
fi
echo 'ffmpeg "${ffmpegParams[@]}" -dolbyvision 0 "${OUTPUT}" || exit 1'
@@ -398,7 +398,7 @@ gen_encode_script() {
echo
} >"${genScript}"
if [[ ${PRINT_OUT} == 'true' ]]; then
if [[ ${PRINT_OUT} == true ]]; then
echo_info "${genScript} contents:"
echo "$(<"${genScript}")"
else