blob: fb9ec71e381b69e3381566b6be6349405d17b4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Decoding ATSC using 19.2MSps rate over 5 processes
--------------------------------------------------
1) Verify signal, adjust antenna and find best gain setting using usrp_fft.py,
station frequency from the fcc video database, and decimation of 10.
2) Capture data - adjust gain (-g) frequency (-f) and which side
the tvrx is on to fit your local setup:
usrp_rx_cfile.py -R B -d 10 -g 65 -f 503e6 atsc_data_6-4m_complex
You probably still need fast disks to take the data, like a raid-0 set of
striped sata drives. Make sure there are no or very few Ou overruns.
3) Make pipes:
mkfifo /tmp/atsc_pipe_1
mkfifo /tmp/atsc_pipe_2
mkfifo /tmp/atsc_pipe_3
mkfifo /tmp/atsc_pipe_4
mkfifo /tmp/atsc_pipe_5
4) In seperate windows run processes:
./interp.py <input rf data at 6.4Msps>
./xlate.py
./fpll.py
./btl-fsd.py
./viterbi-out.py <output mpeg transport stream>
|