Difference between revisions of "Utilities"
From Ghpsdr3 SDR project
Line 30: | Line 30: | ||
qtradio_rec | qtradio_rec | ||
</pre> | </pre> | ||
− | you should now see this output from | + | you should now see this output from sox: |
<pre> | <pre> | ||
dl6kbg@ubuntu:~$ qtradio_rec | dl6kbg@ubuntu:~$ qtradio_rec | ||
Line 42: | Line 42: | ||
In:0.00% 00:00:21.50 [00:00:00.00] Out:164k [ | ] Clip:0 | In:0.00% 00:00:21.50 [00:00:00.00] Out:164k [ | ] Clip:0 | ||
</pre> | </pre> | ||
+ | open pavucontrol and check if sox uses the right audio source. Select the following: | ||
+ | [[File:Pavucontrol.png|200px]] | ||
if you are done. Press CRTL-C to quit the script and stop the recording. The script processess now the spectrum image from the just recorded wave-file: | if you are done. Press CRTL-C to quit the script and stop the recording. The script processess now the spectrum image from the just recorded wave-file: | ||
<pre> | <pre> | ||
Line 53: | Line 55: | ||
-rw-rw-r-- 1 dl6kbg dl6kbg 32812 2012-04-05 20:41 201204052041_3756000.wav | -rw-rw-r-- 1 dl6kbg dl6kbg 32812 2012-04-05 20:41 201204052041_3756000.wav | ||
</pre> | </pre> | ||
− | [[File | + | [[File:Sox_spec.png|200px]] |
− | :Sox_spec.png|200px]] | + | |
===Frequency Scanning=== | ===Frequency Scanning=== | ||
===Gnome Predict=== | ===Gnome Predict=== | ||
===WSPR=== | ===WSPR=== |
Revision as of 14:46, 5 April 2012
So, now you have QtRadio running. Let's have some fun and do some useful things.
Contents
Squelch activated Recordings
Full featured recording script
sudo apt-get install sox
sudo apt-get install hamlib-utils
##!/bin/bash QRG="_$(exec rigctl -m2 -r 127.0.0.1:19090 f 2>&1)" NAME=`date +%Y%m%d%H%M` rec -r 8000 -c 1 $NAME$QRG.wav echo "processing spectrogram..." sox $NAME$QRG.wav -n spectrogram -x 1280 -y 720 -z 100 -t "$NAME$QRG.wav" -c '' -o $NAME$QRG.png echo "...done !"
nano /usr/local/bin/qtradio_rec
mkdir QtRadio_Recordings
cd QtRadio_Recordings
Fire up QtRadio before starting the recording-script.
qtradio_rec
you should now see this output from sox:
dl6kbg@ubuntu:~$ qtradio_rec Input File : 'default' (alsa) Channels : 1 Sample Rate : 8000 Precision : 16-bit Sample Encoding: 16-bit Signed Integer PCM In:0.00% 00:00:21.50 [00:00:00.00] Out:164k [ | ] Clip:0
open pavucontrol and check if sox uses the right audio source. Select the following: if you are done. Press CRTL-C to quit the script and stop the recording. The script processess now the spectrum image from the just recorded wave-file:
Aborted. processing spectrogram... ...done !
when you now have a look into your recording directory, it should look like this:
-rw-rw-r-- 1 dl6kbg dl6kbg 207665 2012-04-05 20:41 201204052041_3756000.png -rw-rw-r-- 1 dl6kbg dl6kbg 32812 2012-04-05 20:41 201204052041_3756000.wav