mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-03 23:30:03 +01:00
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:
parent
fcf07b98af
commit
97ace65537
|
|
@ -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__(
|
||||
|
|
|
|||
Loading…
Reference in a new issue