@@ -40,9 +40,9 @@ use crate::split::{extra_splits, segment, write_scenes_to_file};
40
40
use crate :: vapoursynth:: { create_vs_file, is_ffms2_installed, is_lsmash_installed} ;
41
41
use crate :: vmaf:: { self , validate_libvmaf} ;
42
42
use crate :: {
43
- create_dir, determine_workers, finish_multi_progress_bar , get_done, init_done, into_vec,
44
- read_chunk_queue , save_chunk_queue , ChunkMethod , ChunkOrdering , DashMap , DoneJson , Encoder ,
45
- Input , ScenecutMethod , SplitMethod , TargetQuality , Verbosity ,
43
+ create_dir, determine_workers, get_done, init_done, into_vec, read_chunk_queue , save_chunk_queue ,
44
+ ChunkMethod , ChunkOrdering , DashMap , DoneJson , Encoder , Input , ScenecutMethod , SplitMethod ,
45
+ TargetQuality , Verbosity ,
46
46
} ;
47
47
48
48
#[ derive( Debug , Clone , Copy , Serialize , Deserialize ) ]
@@ -1295,7 +1295,6 @@ properly into a mkv file. Specify mkvmerge as the concatenation method by settin
1295
1295
let broker = Broker {
1296
1296
chunk_queue,
1297
1297
project : self ,
1298
- max_tries : self . max_tries ,
1299
1298
} ;
1300
1299
1301
1300
let ( tx, rx) = mpsc:: channel ( ) ;
@@ -1311,11 +1310,7 @@ properly into a mkv file. Specify mkvmerge as the concatenation method by settin
1311
1310
1312
1311
handle. join ( ) . unwrap ( ) ;
1313
1312
1314
- if self . verbosity == Verbosity :: Normal {
1315
- finish_progress_bar ( ) ;
1316
- } else if self . verbosity == Verbosity :: Verbose {
1317
- finish_multi_progress_bar ( ) ;
1318
- }
1313
+ finish_progress_bar ( ) ;
1319
1314
1320
1315
// TODO add explicit parameter to concatenation functions to control whether audio is also muxed in
1321
1316
let _audio_output_exists =
0 commit comments