mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-07 17:20:20 +01:00
fix fst4(w) filenames
This commit is contained in:
parent
05ca541a8e
commit
603c3df1b6
|
|
@ -95,7 +95,9 @@ class Fst4Profile(WsjtProfile):
|
|||
return self.interval
|
||||
|
||||
def getFileTimestampFormat(self):
|
||||
return "%y%m%d_%H%M%S"
|
||||
if self.interval < 60:
|
||||
return "%y%m%d_%H%M%S"
|
||||
return "%y%m%d_%H%M"
|
||||
|
||||
def decoder_commandline(self, file):
|
||||
return ["jt9", "--fst4", "-p", str(self.interval), "-d", str(self.decoding_depth("fst4")), file]
|
||||
|
|
@ -117,7 +119,9 @@ class Fst4wProfile(WsjtProfile):
|
|||
return self.interval
|
||||
|
||||
def getFileTimestampFormat(self):
|
||||
return "%y%m%d_%H%M%S"
|
||||
if self.interval < 60:
|
||||
return "%y%m%d_%H%M%S"
|
||||
return "%y%m%d_%H%M"
|
||||
|
||||
def decoder_commandline(self, file):
|
||||
return ["jt9", "--fst4w", "-p", str(self.interval), "-d", str(self.decoding_depth("fst4w")), file]
|
||||
|
|
|
|||
Loading…
Reference in a new issue