JvanKatwijk / dab-cmdline

DAB decoding library with example of its use
GNU General Public License v2.0
57 stars 29 forks source link

Audible crackles (sound glitches) fix in Python example #35

Closed jedrus2000 closed 6 years ago

jedrus2000 commented 6 years ago

fixed sound glitches as Python range(0,n) takes values from 0 to n-1, so using i.e. range(0, amount - 1) made audible crackles.

Other minor changes : some Python related style formatting changes, waiting for keypress.

JvanKatwijk commented 6 years ago

Thanks, I ddid not know that (actually this was my first and only Python program, cannot say that I like the language)

jedrus2000 commented 6 years ago

I'am happy being able to contribute to such interesting project.