feat: Add ffmpeg remuxing for faststart

This commit is contained in:
2026-04-13 16:37:52 +02:00
parent fbf8681df0
commit 73692b0a02
7 changed files with 420 additions and 236 deletions
+3 -1
View File
@@ -6,7 +6,8 @@ edition = "2024"
[dependencies]
axum = { version = "0.8", features = ["multipart"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "multipart"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
tempfile = "3"
askama = "0.12"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
@@ -23,3 +24,4 @@ axum-extra = { version = "0.12", features = ["cookie"] }
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
wiremock = "0.6"