diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-16 21:33:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-16 21:33:33 +0200 |
commit | 3f04466df27cb032a91e304eca1b3e91aad47cb4 (patch) | |
tree | bbb1a378598e9138f3d5ade3d56f9509398dfde1 /stream | |
parent | 96da47a8bb0a58bc2732c35eef86702f5cd2b5b2 (diff) | |
download | jellything-3f04466df27cb032a91e304eca1b3e91aad47cb4.tar jellything-3f04466df27cb032a91e304eca1b3e91aad47cb4.tar.bz2 jellything-3f04466df27cb032a91e304eca1b3e91aad47cb4.tar.zst |
parse supermultivariant query
Diffstat (limited to 'stream')
-rw-r--r-- | stream/src/stream_info.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index 288ea5c..790d342 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.rs @@ -1,3 +1,9 @@ +/* + 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> +*/ +use crate::SMediaInfo; use anyhow::Result; use ebml_struct::matroska::TrackEntry; use jellybase::{ @@ -18,8 +24,6 @@ use tokio::{ task::spawn_blocking, }; -use crate::SMediaInfo; - async fn async_matroska_metadata(path: PathBuf) -> Result<Arc<MatroskaMetadata>> { Ok(spawn_blocking(move || matroska_metadata(&path)).await??) } |