feat: add stream filter

This commit is contained in:
ThetaDev 2022-08-26 16:48:26 +02:00
parent ae72a230a2
commit 21675d5b1d
8 changed files with 2640 additions and 42 deletions

View file

@ -1,3 +1,6 @@
pub mod stream_filter;
mod ordering;
use std::ops::Range;
use chrono::{DateTime, Utc};
@ -120,7 +123,8 @@ pub enum VideoFormat {
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
pub struct AudioTrack {
pub id: String,
pub name: String,
pub lang: Option<String>,
pub lang_name: String,
pub is_default: bool,
}