mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
257 B
12 lines
257 B
#!/usr/bin/env python2
|
|
#
|
|
# $ ./duk test-dev-chaos.js | python chaos.py > chaos.raw
|
|
# $ sox -r 8k -e unsigned -b 8 -c 1 chaos.raw chaos.wav
|
|
|
|
import os
|
|
import sys
|
|
|
|
data = sys.stdin.read()
|
|
data = data.strip()
|
|
data = data.decode('hex')
|
|
sys.stdout.write(data)
|
|
|