Audio visualisation problem
3 Apr
2002
3 Apr
'02
7:45 a.m.
Hi all. I am a newbie at python and zope. And this is what I want to do. I want to create an web-based audio transciber that displays wave-forms and spectograms using the snack toolkit ( http://www.speech.kth.se/snack ). At this moment I have most things working on my desktop using tkinter. A short sample script is included below. Is there any way to port such a script to zope? thanks in advance. sjoerd ======= #! /usr/bin/env python from Tkinter import * from tkSnack import * root = Tkinter.Tk() initializeSnack(root) s = Sound(load='ex1.wav') c = SnackCanvas(height=100, width=400) c.pack() c.create_waveform(0, 0, sound=s, width=400) Button(root, text='Exit', command=root.quit).pack() root.mainloop() ===========
8768
Age (days ago)
8768
Last active (days ago)
0 comments
1 participants
participants (1)
-
sjoerd siebinga