Fix subtitle title not being human-readable

This commit is contained in:
bytedream 2024-05-24 22:09:23 +02:00
parent 67c267be20
commit fb8e535644

View file

@ -654,7 +654,7 @@ impl Downloader {
metadata.extend([ metadata.extend([
format!("-metadata:s:s:{}", i), format!("-metadata:s:s:{}", i),
format!("title={}", { format!("title={}", {
let mut title = meta.locale.to_string(); let mut title = meta.locale.to_human_readable();
if meta.cc { if meta.cc {
title += " (CC)" title += " (CC)"
} }