This commit is contained in:
Muaz Ahmad 2023-10-05 14:18:14 +05:00
commit 687d79f44c
7 changed files with 24 additions and 0 deletions

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "hls-transcoder-2"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

0
src/decode/mod.rs Normal file
View file

0
src/demux/mod.rs Normal file
View file

0
src/encode/mod.rs Normal file
View file

16
src/main.rs Normal file
View file

@ -0,0 +1,16 @@
mod util;
mod demux;
mod decode;
mod encode;
mod muxer;
fn init() {
}
fn process() {
}
fn main() {
init();
process();
}

0
src/muxer/mod.rs Normal file
View file

0
src/util/mod.rs Normal file
View file