From c9aba1e784ab1c8826740263844e7b312a234184 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Fri, 31 Mar 2023 10:11:16 -0600 Subject: [PATCH] RUST RUNS WOO --- whisper-cpp-2023/rust.d/src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/whisper-cpp-2023/rust.d/src/main.rs b/whisper-cpp-2023/rust.d/src/main.rs index 18683e1..0c61ae3 100644 --- a/whisper-cpp-2023/rust.d/src/main.rs +++ b/whisper-cpp-2023/rust.d/src/main.rs @@ -30,8 +30,6 @@ fn main() { let num_segments = ctx.full_n_segments(); for i in 0..num_segments { let segment = ctx.full_get_segment_text(i).expect("failed to get segment"); - let start_timestamp = ctx.full_get_segment_t0(i); - let end_timestamp = ctx.full_get_segment_t1(i); - println!("[{} - {}]: {}", start_timestamp, end_timestamp, segment); + println!("{}", segment); } }