summaryrefslogtreecommitdiff
path: root/cmd/process-emoji/main.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-07-15 14:24:53 +0000
committerLibravatar GitHub <noreply@github.com>2024-07-15 15:24:53 +0100
commitde45c0be60e453e69263f5b32ab2ce2661dc74ca (patch)
treedd3c2196ea3a4dad5cd750d7310b801f05b95520 /cmd/process-emoji/main.go
parent[feature/frontend] Add player for audio files; use thumbnail for `poster` (#3... (diff)
downloadgotosocial-de45c0be60e453e69263f5b32ab2ce2661dc74ca.tar.xz
[feature] more filetype support! (#3107)
* add more supported file types to our media processor that ffmpeg supports, update supported mime type lists * add code comments to the supported mime types slice * don't check for zero value string, just parse * remove some unneeded consts which make the code a bit harder to read * fix test expected instance media mime types, use compact ffprobe json, simple media processing by type * final tweaks to media processing code * don't use safe divide where we don't need to
Diffstat (limited to 'cmd/process-emoji/main.go')
-rw-r--r--cmd/process-emoji/main.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/process-emoji/main.go b/cmd/process-emoji/main.go
index 62253bbdf..b06eb84f8 100644
--- a/cmd/process-emoji/main.go
+++ b/cmd/process-emoji/main.go
@@ -29,6 +29,7 @@ import (
"github.com/superseriousbusiness/gotosocial/internal/db/bundb"
"github.com/superseriousbusiness/gotosocial/internal/log"
"github.com/superseriousbusiness/gotosocial/internal/media"
+ "github.com/superseriousbusiness/gotosocial/internal/media/ffmpeg"
"github.com/superseriousbusiness/gotosocial/internal/state"
"github.com/superseriousbusiness/gotosocial/internal/storage"
"github.com/superseriousbusiness/gotosocial/internal/util"
@@ -43,6 +44,14 @@ func main() {
log.Panic(ctx, "Usage: go run ./cmd/process-emoji <input-file> <output-static>")
}
+ if err := ffmpeg.InitFfprobe(ctx, 1); err != nil {
+ log.Panic(ctx, err)
+ }
+
+ if err := ffmpeg.InitFfmpeg(ctx, 1); err != nil {
+ log.Panic(ctx, err)
+ }
+
var st storage.Driver
st.Storage = memory.Open(10, true)