Re: dynamic WAV file??

2016-07-11 Thread ludovic coues
My go to solution for that king of problem is to append a query argument. If the browser have a cached version of sound.wav?v=1 but you serve sound.wav?v=2, the browser should grab the last version, even if the file is still named sound.wav. For your second point, you could use BytesIO, from the

dynamic WAV file??

2016-07-10 Thread Joe Gredder
Im writing to a WAV file using Python script and trying to play it using HTML tag from Static dir... The Process: Parameters from website are written to .txt in views --> Python file exc. with subprocess.call and .txt parameters read --> WAV (sound.wav) written to with Python and saved in