pub struct FragmentWriter<W: Write> { /* private fields */ }Expand description
Codec-agnostic fMP4 fragment writer: ftyp+moov once, then one moof+mdat pair
per sample, each anchored at its wall-clock decode time via tfdt.
Implementations§
Source§impl<W: Write> FragmentWriter<W>
impl<W: Write> FragmentWriter<W>
pub fn new(out: W) -> Self
pub fn init_written(&self) -> bool
Sourcepub fn stats(&self) -> Mp4Stats
pub fn stats(&self) -> Mp4Stats
Counters for the fragments written so far (the buffered pending sample is not yet
included; finish folds it in).
Sourcepub fn write_init(&mut self, cfg: &TrackConfig) -> Result<()>
pub fn write_init(&mut self, cfg: &TrackConfig) -> Result<()>
Write ftyp + moov (track 1, mvex/trex marking the movie fragmented). Must be
called once, before the first sample.
Sourcepub fn push_sample(
&mut self,
data: Vec<u8>,
sync: bool,
pts_us: u64,
) -> Result<()>
pub fn push_sample( &mut self, data: Vec<u8>, sync: bool, pts_us: u64, ) -> Result<()>
Queue one sample at pts_us (wall-clock microseconds since recording start),
flushing the previously buffered sample with its now-known duration. Timestamps are
clamped strictly monotonic so a repeated or reordered clock can never emit a
zero/negative duration.
Auto Trait Implementations§
impl<W> Freeze for FragmentWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for FragmentWriter<W>where
W: RefUnwindSafe,
impl<W> Send for FragmentWriter<W>where
W: Send,
impl<W> Sync for FragmentWriter<W>where
W: Sync,
impl<W> Unpin for FragmentWriter<W>where
W: Unpin,
impl<W> UnsafeUnpin for FragmentWriter<W>where
W: UnsafeUnpin,
impl<W> UnwindSafe for FragmentWriter<W>where
W: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more