Mute when thumbnailing

This commit is contained in:
Jeremy Soller 2026-01-16 13:41:07 -07:00
parent 2ee05bf8a6
commit ceb8f57ec7
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA
3 changed files with 11 additions and 4 deletions

View file

@ -13,7 +13,7 @@ pub fn main(
) -> Result<(), Box<dyn Error>> {
let mut image = {
let thumbnails = {
let mut video = match video::new_video(input) {
let mut video = match video::new_video(input, video::VideoSettings { mute: true }) {
Ok(ok) => ok,
Err(_err) => return Err(Into::into(format!("missing required plugin"))),
};