From 1a49aadc8c64411de678db1dbf1ee1a72f9c0803 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Wed, 10 Sep 2025 10:28:13 -0400 Subject: [PATCH] Move to the new /go url. --- go.mod | 2 +- main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3e97d9d..eeb346a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module lcthw.dev/vidcrunch +module lcthw.dev/go/vidcrunch go 1.24.2 diff --git a/main.go b/main.go index fd476c2..93f6576 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "os" "math/rand" "strings" - "lcthw.dev/vidcrunch/config" + "lcthw.dev/go/vidcrunch/config" "github.com/modfy/fluent-ffmpeg" ) @@ -81,7 +81,6 @@ func DevNull() string { } func RenderFile(pid int, path string, target string) { - target = ModFile(target, config.Settings.Scale) Run(1, pid, path, DevNull()) Run(2, pid, path, DevNull()) Run(3, pid, path, target) @@ -94,6 +93,7 @@ func RenderToDir() { for _, path := range matches { base := filepath.Base(path) target := filepath.Join(config.Settings.OutDir, base) + target = ModFile(target, config.Settings.Scale) _, err := os.Stat(target)