feat: muxer

This commit is contained in:
2024-11-09 15:47:03 +00:00
parent ddec83a54b
commit 8032966982
11 changed files with 299 additions and 60 deletions

9
src/transcode.rs Normal file
View File

@ -0,0 +1,9 @@
use crate::{Decoder, Demuxer, Encoder, Muxer, Scaler};
pub struct Transcoder {
demuxer: Demuxer,
decoder: Decoder,
scaler: Scaler,
encoder: Encoder,
muxer: Muxer,
}