소스 검색

Correct ffmpeg output format argument

The pcm_f32le codec is only supported with the f32le output format.
Frans Bergman 1 개월 전
부모
커밋
bac5b3e138
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/audio/subprocess.rs

+ 1 - 1
src/audio/subprocess.rs

@@ -45,7 +45,7 @@ pub async fn ffmpeg_pcm(url: &str) -> Result<Box<dyn MediaSource + Send>, String
         .arg("-i")
         .arg(url)
         .arg("-f")
-        .arg("s16le")
+        .arg("f32le")
         .arg("-ar")
         .arg("48000")
         .arg("-ac")