You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it seems that it will consider ffmpeg a success, as it has added the file to the $temp_directory, even if it's zero sized and not successfully converted video file.
It will then output this line:
if [ $? -eq 0 ]; then
echo -e "\n"
echo "ffmpeg conversion successful. Temp output: $temp_output_file"
echo "Initiating ffprobe on -AC2 file..."
and move on to the ffprobe-AC2, which results in an error (obviously, as there is no data to probe)
Impact is that the file didn't actually succeed and will end up moving a blank file to the $target_directory. Annoying on its own, but a much bigger oversight If in future iterations, the user wanted to implement an automation for deletion on the original file if a -AC2 ends up in the $target_directory.
The text was updated successfully, but these errors were encountered:
As long as a the script completes this line:
it seems that it will consider ffmpeg a success, as it has added the file to the $temp_directory, even if it's zero sized and not successfully converted video file.
It will then output this line:
and move on to the ffprobe-AC2, which results in an error (obviously, as there is no data to probe)
Impact is that the file didn't actually succeed and will end up moving a blank file to the $target_directory. Annoying on its own, but a much bigger oversight If in future iterations, the user wanted to implement an automation for deletion on the original file if a -AC2 ends up in the $target_directory.
The text was updated successfully, but these errors were encountered: