From: Kostya Shishkov Date: Wed, 4 Feb 2026 17:07:39 +0000 (+0100) Subject: print input stream name and number X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=8eb67f79d7cec16cccf0df9c4e0f880265b30b13;p=nihav-encoder.git print input stream name and number --- diff --git a/src/transcoder.rs b/src/transcoder.rs index a3e3e7e..00f81d9 100644 --- a/src/transcoder.rs +++ b/src/transcoder.rs @@ -1129,6 +1129,7 @@ println!("encoder {} is not supported by output (expected {})", istr.id, istr.ge demuxers.push((dmx, false)) }, (Some(name), _) => { + println!("Input {i}: {name}"); let res = File::open(name); if res.is_err() { println!("error opening input");