Skip to content

Commit 469280b

Browse files
committed
Log when starting to combine videos (fix #6)
1 parent 4ea726b commit 469280b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/video.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ pub(crate) fn create_video_clips(
163163
}
164164

165165
pub(crate) fn combine_video(dir: &str, slides: &Vec<Slide>, output: &str, audio_codec: &str) {
166+
tracing::info!("Combining video clips into one video...");
166167
let output = Path::new(dir).join(output);
167168
let output_path = output.to_str().unwrap();
168169
let concat_list = Path::new(dir).join("concat_list.txt");

0 commit comments

Comments
 (0)