Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Gilly
Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I want to be able to begin playing the midi file before I finish writing it, and continue writing as it plays. I would really appreciate

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread David
On Sun, May 4, 2008 at 7:11 PM, Gilly [EMAIL PROTECTED] wrote: Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I want to be able to begin playing the midi file before I finish

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Gilly
On May 4, 9:14 pm, David [EMAIL PROTECTED] wrote: On Sun, May 4, 2008 at 7:11 PM, Gilly [EMAIL PROTECTED] wrote: Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I want to

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Diez B. Roggisch
Gilly schrieb: On May 4, 9:14 pm, David [EMAIL PROTECTED] wrote: On Sun, May 4, 2008 at 7:11 PM, Gilly [EMAIL PROTECTED] wrote: Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Max M
Gilly skrev: Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I want to be able to begin playing the midi file before I finish writing it, and continue writing as it plays. Perhaps

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Chuckk Hubbard
Threading was recommended to me as a way to time things: http://docs.python.org/lib/timer-objects.html Dunno if that helps you. -Chuckk On Sun, May 4, 2008 at 8:11 PM, Gilly [EMAIL PROTECTED] wrote: Hi I am trying to create an application that uses some form of input to create a midi file.

Re: Real Time Midi File Playback - Reading and Writing midi at the same time

2008-05-04 Thread Ken Starks
Gilly wrote: Hi I am trying to create an application that uses some form of input to create a midi file. I would like for this to be a 'real time' process. In other words, I want to be able to begin playing the midi file before I finish writing it, and continue writing as it plays. I would