diff options
author | metamuffin <metamuffin@disroot.org> | 2023-08-03 01:10:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-08-03 01:10:23 +0200 |
commit | 9b04719d09937a112b1ac6bbe64402006f9fb261 (patch) | |
tree | fd67983fd6aa043ace204036c13225618fcb4486 /remuxer/src/lib.rs | |
parent | 9aa0cceedb52ddea5b08af7372f4c87f60e401d4 (diff) | |
download | jellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar jellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar.bz2 jellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar.zst |
small cleanup and some custom video controls
Diffstat (limited to 'remuxer/src/lib.rs')
-rw-r--r-- | remuxer/src/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index 382f850..21b7fd6 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.rs @@ -78,10 +78,6 @@ impl RemuxerContext { info!("\t- {sel} {source_path:?} ({} => {mapped})", private.track); info!("\t {}", info); let file = File::open(&source_path).context("opening source file")?; - eprintln!( - "{:?}", - source_path.with_extension(format!("si.{}", private.track)) - ); let mut index = File::open(source_path.with_extension(format!("si.{}", private.track))) .context("opening seek index file")?; |