You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
478 B
Plaintext
23 lines
478 B
Plaintext
8 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
import cgi, os
|
||
|
import cgitb; cgitb.enable()
|
||
|
import subprocess
|
||
|
|
||
|
f = cgi.FieldStorage()
|
||
|
p = f.getvalue("p", "Bump.mp3")
|
||
|
p = os.path.join("voice", p)
|
||
|
out = subprocess.check_output(["mplayer", p], stderr=subprocess.STDOUT)
|
||
|
|
||
|
# print "Location: /pushingscore-Karina.html"
|
||
|
# print
|
||
|
|
||
|
print "Content-type:text/html; charset=utf-8"
|
||
|
print
|
||
|
print """<html>
|
||
|
<head>
|
||
|
<meta http-equiv="refresh" content="0;url=/pushingscore-Karina.html" />
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>"""
|