From 81402360576448c20a1e8e313dece8c3af46b16d Mon Sep 17 00:00:00 2001 From: gooleg-gh Date: Fri, 2 Jan 2026 15:31:06 -0800 Subject: [PATCH] Fix transcode.sh issue introduced in #26 The #26 replaced `/mnt/share` with `/mnt/disks/share` in `job.json`, but not in the `transcode.sh`. This results in job failing as it is unable to find the input files. --- transcoding/transcode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transcoding/transcode.sh b/transcoding/transcode.sh index fcccbe9..942bd1f 100644 --- a/transcoding/transcode.sh +++ b/transcoding/transcode.sh @@ -17,7 +17,7 @@ sudo apt-get -y update sudo apt-get -y install ffmpeg -dir=/mnt/share +dir=/mnt/disks/share infile=$dir/input/video-$BATCH_TASK_INDEX.mp4 outfile=$dir/output/video-$BATCH_TASK_INDEX.webm vopts=-c:v libvpx-vp9 -b:v 1800k -minrate 1500 -maxrate 1610