Compare commits
No commits in common. "cbdf55335a1de8d1e77b73938fa65283ee0b740e" and "52c89dc95af6814a23324fe98cf42912da9339eb" have entirely different histories.
cbdf55335a
...
52c89dc95a
2 changed files with 2 additions and 3 deletions
|
@ -135,8 +135,7 @@ fn main() {
|
|||
let lower = name.to_ascii_lowercase();
|
||||
if (lower.ends_with(".mp4")
|
||||
|| lower.ends_with(".mts")
|
||||
|| lower.ends_with(".mkv")
|
||||
|| lower.ends_with(".mov"))
|
||||
|| lower.ends_with(".mkv"))
|
||||
&& !entry.file_type().unwrap().is_dir()
|
||||
{
|
||||
files.push(String::from(name));
|
||||
|
|
|
@ -335,7 +335,7 @@ impl Ffmpeg {
|
|||
},
|
||||
FfmpegFilter::Loudnorm { stereo: false } => {
|
||||
cmd.arg("-af").arg(concat!(
|
||||
"pan=mono|c0=FL,",
|
||||
"pan=mono|c0=FR,",
|
||||
"loudnorm=dual_mono=true:print_format=summary,",
|
||||
"pan=stereo|c0=c0|c1=c0,",
|
||||
"aformat=sample_rates=48000"
|
||||
|
|
Loading…
Reference in a new issue