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); } }