1 Star 0 Fork 4

Walle095/python-sdr

forked from zhuxianguo/python-sdr 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test-rtlsdr.py 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuxianguo 提交于 2023-10-11 11:17 . init
from rtlsdr import RtlSdr
import sounddevice as sd
from sdr import *
sample_rate=240_000
sdr = RtlSdr()
sdr.sample_rate = sample_rate
sdr.center_freq = 88.7e6
sdr.gain = 'auto'
def callback(outdata, frames, time, status):
samples=sdr.read_samples(frames*5)
angle_data=fm_demodulation(samples)
ldata=lfilter_data(angle_data,sample_rate)
audio_data=resample_poly(ldata,1,5)
reshape_data=audio_data.reshape(-1,1)
outdata[:] = reshape_data
with sd.OutputStream(device=None, channels=1, callback=callback,samplerate=48_000):
input()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Walle095/python-sdr.git
git@gitee.com:Walle095/python-sdr.git
Walle095
python-sdr
python-sdr
master

搜索帮助