mirror of
https://github.com/romanz/amodem.git
synced 2026-02-06 00:36:20 +08:00
6 lines
134 B
Python
Executable File
6 lines
134 B
Python
Executable File
#!/usr/bin/env python
|
|
from amodem.sampling import resample
|
|
import sys
|
|
|
|
resample(src=sys.stdin, dst=sys.stdout, df=float(sys.argv[1]))
|