Trait afi::EncoderA

source ·
pub trait EncoderAwhere
    Self: Sized,
{ fn new(audio: &Audio) -> Self; fn run(&mut self, audio: &mut Audio) -> Vec<u8>; fn end(self) -> Vec<u8>; }
Expand description

A trait for implementing encoding audio.

Required Methods§

Create a new encoder for this audio.

Encode a frame (2000 samples / 24fps) and return appended data.

Finish the encoding and return appended data.

Implementors§