Quellcode durchsuchen

Alsa sound downmixed to mono

Vincent-FK vor 3 Jahren
Ursprung
Commit
fc7b0f49e6
1 geänderte Dateien mit 15 neuen und 0 gelöschten Zeilen
  1. 15 0
      FunKey/board/funkey/rootfs-overlay/etc/asound.conf

+ 15 - 0
FunKey/board/funkey/rootfs-overlay/etc/asound.conf

@@ -0,0 +1,15 @@
+pcm.monocard{
+  slave.pcm "hw:0"
+  slave.channels 2
+  type route
+  ttable {
+    # Copy both input channels to output channel 1 (Right).
+    0.1 1
+    1.1 1
+    # Send nothing to output channel 0 (Left).
+    0.0 0
+    1.0 0
+  }
+}
+
+pcm.!default monocard