[package]
name = "moq-transcode"
description = "Just-in-time live transcoding for hang broadcasts over Media over QUIC"
authors = ["Luke Curley <kixelated@gmail.com>"]
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"
version = "0.0.1"
edition = "2024"
rust-version.workspace = true
keywords = ["quic", "http3", "webtransport", "media", "video"]
categories = ["multimedia", "multimedia::video", "multimedia::encoding"]
[features]
default = ["nvenc", "vaapi", "nvdec"]
nvenc = ["moq-video/nvenc"]
vaapi = ["moq-video/vaapi"]
nvdec = ["moq-video/nvdec"]
[dependencies]
bytes = "1"
hang = { workspace = true }
moq-mux = { workspace = true }
moq-net = { workspace = true }
moq-video = { workspace = true }
thiserror = "2"
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
tracing = "0.1"
[dev-dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
moq-native = { path = "../moq-native" }
tokio = { workspace = true, features = ["full", "test-util"] }
url = "2"