mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 05:41:05 +00:00
95ae67752f
This element allows wrapping an existing live "mpeg-ts source" (udpsrc, srtsrc,...) and providing a clock based on the actual PCR of the stream. Combined with `tsdemux ignore-pcr=True` downstream of it, this allows playing back the content at the same rate as the (remote) provider **and** not modify the original timestamps. Co-authored-by: Sebastian Dröge <slomo@coaxion.net> Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1640>
45 lines
912 B
TOML
45 lines
912 B
TOML
[package]
|
|
name = "gst-plugin-mpegtslive"
|
|
description = "GStreamer MPEG-TS Live sources"
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
authors = ["Edward Hervey <edward@centricular.com>"]
|
|
edition.workspace = true
|
|
license = "MPL-2.0"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
gst.workspace = true
|
|
once_cell = "1.19"
|
|
bitstream-io = "2.3"
|
|
anyhow = "1"
|
|
|
|
[dev-dependencies]
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper.workspace = true
|
|
|
|
[lib]
|
|
name = "gstmpegtslive"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
static = []
|
|
capi = []
|
|
doc = ["gst/v1_18"]
|
|
|
|
[package.metadata.capi]
|
|
min_version = "0.9.21"
|
|
|
|
[package.metadata.capi.header]
|
|
enabled = false
|
|
|
|
[package.metadata.capi.library]
|
|
install_subdir = "gstreamer-1.0"
|
|
versioning = false
|
|
import_library = false
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gobject-2.0, glib-2.0, gmodule-2.0"
|
|
|