mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 09:42:26 -05:00
[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
This commit is contained in:
parent
9efb11d848
commit
de45c0be60
12 changed files with 495 additions and 351 deletions
|
|
@ -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"
|
||||
)
|
||||
|
|
@ -42,6 +43,14 @@ func main() {
|
|||
log.Panic(ctx, "Usage: go run ./cmd/process-media <input-file> <output-processed> <output-thumbnail>")
|
||||
}
|
||||
|
||||
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)
|
||||
|
||||
|
|
@ -105,6 +114,9 @@ func main() {
|
|||
func copyFile(ctx context.Context, st *storage.Driver, key string, path string) {
|
||||
rc, err := st.GetStream(ctx, key)
|
||||
if err != nil {
|
||||
if storage.IsNotFound(err) {
|
||||
return
|
||||
}
|
||||
log.Panic(ctx, err)
|
||||
}
|
||||
defer rc.Close()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue