don't specify the input paramter

* version 0.20 of redsea interprets the parameter differently
* we can rely on the default for now
This commit is contained in:
Jakob Ketterl 2024-01-20 18:38:08 +01:00
parent fcf07b98af
commit 97ace65537

View file

@ -4,7 +4,7 @@ from pycsdr.types import Format
class RedseaModule(ExecModule):
def __init__(self, sampleRate: int, rbds: bool):
args = ["redsea", "--input", "mpx", "--samplerate", str(sampleRate)]
args = ["redsea", "--samplerate", str(sampleRate)]
if rbds:
args += ["--rbds"]
super().__init__(