aboutsummaryrefslogtreecommitdiff
path: root/remuxer/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-04-16 17:24:08 +0200
committermetamuffin <metamuffin@disroot.org>2025-04-16 17:24:08 +0200
commitcdf95d7b80bd2b78895671da8f462145bb5db522 (patch)
treef7f8377ee6352b313a45cb13362bbd7143fddccd /remuxer/src/lib.rs
parentad8016d8014af1e8dfb267fcdb51da63ab8ca4a9 (diff)
downloadjellything-cdf95d7b80bd2b78895671da8f462145bb5db522.tar
jellything-cdf95d7b80bd2b78895671da8f462145bb5db522.tar.bz2
jellything-cdf95d7b80bd2b78895671da8f462145bb5db522.tar.zst
webm and mpeg4 fragments semi fixedrewrite-stream
Diffstat (limited to 'remuxer/src/lib.rs')
-rw-r--r--remuxer/src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs
index c20197f..931d5e6 100644
--- a/remuxer/src/lib.rs
+++ b/remuxer/src/lib.rs
@@ -7,16 +7,17 @@
pub mod extract;
pub mod fragment;
pub mod metadata;
-pub mod mpeg4;
+pub mod matroska_to_mpeg4;
pub mod remux;
pub mod seek_index;
pub mod segment_extractor;
pub mod trim_writer;
+pub mod matroska_to_webm;
use ebml_struct::matroska::TrackEntry;
pub use fragment::write_fragment_into;
use jellymatroska::{Master, MatroskaTag};
-pub use mpeg4::matroska_to_mpeg4;
+pub use matroska_to_mpeg4::matroska_to_mpeg4;
pub use remux::remux_stream_into;
pub fn ebml_header(webm: bool) -> MatroskaTag {