diff options
Diffstat (limited to 'stream')
| -rw-r--r-- | stream/src/cues.rs | 2 | ||||
| -rw-r--r-- | stream/src/fragment.rs | 2 | ||||
| -rw-r--r-- | stream/src/fragment_index.rs | 2 | ||||
| -rw-r--r-- | stream/src/hls.rs | 2 | ||||
| -rw-r--r-- | stream/src/lib.rs | 2 | ||||
| -rw-r--r-- | stream/src/metadata.rs | 2 | ||||
| -rw-r--r-- | stream/src/stream_info.rs | 2 | ||||
| -rw-r--r-- | stream/src/webvtt.rs | 2 | ||||
| -rw-r--r-- | stream/types/src/lib.rs | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/stream/src/cues.rs b/stream/src/cues.rs index 8aac590..fbcb341 100644 --- a/stream/src/cues.rs +++ b/stream/src/cues.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; diff --git a/stream/src/fragment.rs b/stream/src/fragment.rs index ef4f074..3f6ed98 100644 --- a/stream/src/fragment.rs +++ b/stream/src/fragment.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{ cues::{generate_cues, GeneratedCue}, diff --git a/stream/src/fragment_index.rs b/stream/src/fragment_index.rs index 9d82cd7..58e5bd7 100644 --- a/stream/src/fragment_index.rs +++ b/stream/src/fragment_index.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{cues::generate_cues, stream_info, SMediaInfo}; use anyhow::{anyhow, Result}; diff --git a/stream/src/hls.rs b/stream/src/hls.rs index 2c91365..20f452c 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{fragment_index::fragment_index, stream_info, SMediaInfo}; diff --git a/stream/src/lib.rs b/stream/src/lib.rs index 6c6db8f..717225e 100644 --- a/stream/src/lib.rs +++ b/stream/src/lib.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ #![feature(iterator_try_collect)] pub mod cues; diff --git a/stream/src/metadata.rs b/stream/src/metadata.rs index 30d30e5..640b851 100644 --- a/stream/src/metadata.rs +++ b/stream/src/metadata.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index 59e9d83..216c968 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{cues::generate_cues, metadata::read_metadata, SMediaInfo, CONF}; use anyhow::Result; diff --git a/stream/src/webvtt.rs b/stream/src/webvtt.rs index d99111e..c35a231 100644 --- a/stream/src/webvtt.rs +++ b/stream/src/webvtt.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ // async fn vtt_stream(json: bool, node: Arc<Node>, spec: StreamSpec, b: DuplexStream) -> Result<()> { diff --git a/stream/types/src/lib.rs b/stream/types/src/lib.rs index dbbe7b2..edafe00 100644 --- a/stream/types/src/lib.rs +++ b/stream/types/src/lib.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use serde::{Deserialize, Serialize}; use std::{collections::BTreeMap, fmt::Display, str::FromStr}; |