blob: 306121bb956cd63430ac7f61f503a90ef39fc7b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
pub mod demuxers;
pub mod magic;
pub mod muxers;
pub use winter_matroska as matroska;
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum ContainerFormat {
Matroska,
Webm,
Flac,
Mpeg4,
}
|