openwebrx/csdr/module/drm.py

12 lines
322 B
Python
Raw Normal View History

from pycsdr.modules import ExecModule
2021-09-07 17:31:32 +02:00
from pycsdr.types import Format
class DrmModule(ExecModule):
def __init__(self):
super().__init__(
Format.COMPLEX_SHORT,
Format.SHORT,
["dream", "-c", "6", "--sigsrate", "48000", "--audsrate", "48000", "-I", "-", "-O", "-"]
)