switch opus preset to ogg opus only, no album art since taglib can't do ogg theora

This commit is contained in:
chaos 2024-06-15 16:50:04 +01:00
parent 8890df2e0c
commit 3161786159
No known key found for this signature in database

View file

@ -10,7 +10,7 @@ pub fn add_presets(preset_categories: &mut Vec<PresetCategory>) {
config: TranscodeConfig {
file_extension: Some("opus".to_string()),
encoder: Some("libopus".to_string()),
container: Some("ogg".to_string()),
container: Some("oga".to_string()),
bitrate: Some(format!("{}k", bitrate).to_string()),
..TranscodeConfig::default()
},