From 771594a2317df3c0e33da82c711e57bec80be93e Mon Sep 17 00:00:00 2001 From: bytedream Date: Mon, 8 Apr 2024 14:03:30 +0200 Subject: [PATCH] Remove hardcoded pixel format (#352) --- crunchy-cli-core/src/utils/download.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crunchy-cli-core/src/utils/download.rs b/crunchy-cli-core/src/utils/download.rs index fe0e84a..122d436 100644 --- a/crunchy-cli-core/src/utils/download.rs +++ b/crunchy-cli-core/src/utils/download.rs @@ -796,10 +796,6 @@ impl Downloader { command_args.extend([format!("-disposition:s:s:{}", i), "forced".to_string()]) } - // manually specifying the color model for the output file. this must be done manually - // because some Crunchyroll episodes are encoded in a way that ffmpeg cannot re-encode - command_args.extend(["-pix_fmt".to_string(), "yuv420p".to_string()]); - command_args.extend(output_presets); if let Some(output_format) = self.output_format { command_args.extend(["-f".to_string(), output_format]);