The use of the -f (frequency) parameter in kiwirecorder.py
Just found the kiwirecorder.py script which I like very much. Good job! Runs under Python 3.7, too. My question: in the help, the -f parameter is described as follows: -f FREQUENCY, --freq=FREQUENCY. Frequency to tune to, in kHz (can be a comma-separated list). So, I wonder what the script is supposed to do if I enter a list of frequencies, e.g. "-f 1557,1566" (the comma-separated list)? It seems to record only the frequency of 1557 kHz from the list...
Thanks for any pointers! 73 Jari
Thanks for any pointers! 73 Jari
Comments
There are example uses of kiwirecorder in the file kiwiclient/Makefile.
kiwirecorder.py -s kiwi1,kiwi1 -f 1234,5678
Somehow I expected this to do the same:
kiwirecorder.py -s kiwi1 -f 1234,5678
<grin>Thanks again, 73 Jari
The routine "options_cross_product()" in kiwirecorder.py distributes corresponding values of the parameters
['server_port', 'password', 'frequency', 'agc_gain', 'filename', 'station', 'user']
amongst all values of the server parameter. But if you want those parameters to distribute to the same server you have to specify the server multiple times in the "-s" or "--server_host" parameter to match.