From 4b36813d053e7bbfb0acac54354a215ea2ca34c8 Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Wed, 26 Jul 2023 09:37:22 +0200 Subject: [PATCH] more infos about copy mode --- docs/stream_copy.md | 2 +- lib/src/filter/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/stream_copy.md b/docs/stream_copy.md index 25c1ccbc..f71c4804 100644 --- a/docs/stream_copy.md +++ b/docs/stream_copy.md @@ -2,7 +2,7 @@ ffplayout supports a stream copy mode since v0.20.0. A separate copy mode for video and audio is possible. This mode uses less CPU and RAM, but has some drawbacks: -- All files must have exactly the same resolution, color depth, audio channels and kHz. +- All files must have exactly the same resolution, framerate, color depth, audio channels and kHz. - All files must use the same codecs and settings. - The video and audio lines of a file must be the same length. - The codecs and A/V settings must be supported by mpegts and the output destination. diff --git a/lib/src/filter/mod.rs b/lib/src/filter/mod.rs index 3e282e77..f4e040ff 100644 --- a/lib/src/filter/mod.rs +++ b/lib/src/filter/mod.rs @@ -573,7 +573,7 @@ pub fn filter_chains( custom(&list_af, &mut filters, i, Audio); } } else if config.processing.audio_track_index > -1 { - error!("Setting audio_track_index other than -1 is not allowed in audio copy mode!") + error!("Setting 'audio_track_index' other than '-1' is not allowed in audio copy mode!") } if config.out.mode == HLS {