aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-03-30 23:18:57 +0100
committermetamuffin <metamuffin@disroot.org>2024-03-30 23:18:57 +0100
commit78f4834fd3443e01db4511d706639518b55aab9a (patch)
tree9663244cd6712dcbf7a767f7d497f61ec3aa7948
parent2862feaa1cb25481e1bce3abeccc4a5701e7626b (diff)
downloadjellything-78f4834fd3443e01db4511d706639518b55aab9a.tar
jellything-78f4834fd3443e01db4511d706639518b55aab9a.tar.bz2
jellything-78f4834fd3443e01db4511d706639518b55aab9a.tar.zst
remove tags tag because it was invalid
-rw-r--r--remuxer/src/fragment.rs1
-rw-r--r--remuxer/src/remux.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/remuxer/src/fragment.rs b/remuxer/src/fragment.rs
index 9d8dd8d..dbf27d5 100644
--- a/remuxer/src/fragment.rs
+++ b/remuxer/src/fragment.rs
@@ -152,7 +152,6 @@ pub fn write_fragment_into(
format!("{}: {info}", item.title.clone().unwrap_or_default()),
(last_block_pts - start_block.pts) as f64 / 1000.,
))?;
- output.write_tag(&MatroskaTag::Tags(Master::Collected(vec![])))?;
output.write_tag(&MatroskaTag::Tracks(Master::Collected(vec![
ebml_track_entry(mapped, &info, local_track.codec_private.clone()),
])))?;
diff --git a/remuxer/src/remux.rs b/remuxer/src/remux.rs
index a919354..733dc49 100644
--- a/remuxer/src/remux.rs
+++ b/remuxer/src/remux.rs
@@ -111,7 +111,6 @@ pub fn remux_stream_into(
MatroskaTag::MuxingApp("jellyremux".to_string()),
MatroskaTag::WritingApp("jellything".to_string()),
])))?;
- output.write_tag(&MatroskaTag::Tags(Master::Collected(vec![])))?;
let tracks_header = inputs
.iter_mut()