Talk:Testing reception quality

From LinuxTVWiki
Revision as of 22:41, 4 June 2014 by Walter- (talk | contribs) (Created page with "adding these lines to the Matt script also changes the SNR to % # Sig SNR sigStr = fields[2].split(" ")[1] snr = int(sigStr, 16) / float(0xffff) ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

adding these lines to the Matt script also changes the SNR to %

  1. Sig SNR
              sigStr = fields[2].split(" ")[1]
              snr = int(sigStr, 16) / float(0xffff)
              fields[2] = "SNR %.1f%%" % (snr * 100.0)


this is usefull as at least for DBV-S, the SNR is more relevant to the quality. Now I fail to update the page and keep the formatting...; any ideas? Walter