The Windows Media Player control (sitting on a form) can be programmed to play a list of AVI files consecutively, but there is always a delay of a half second or so between the end of one file and the start of the next.
Can WPF's MediaElement (or anything else) play a list of AVI's like this so that there is no noticeable delay between files?
Positionof the hidden ("pending" or "queued") MediaPlayer or MediaElement as it plays to determine exact lead time on Play(). Monitor the current MediaPlayer or MediaElement to compute when itsPositionwill be exactly that "lead time" before itsNaturalDuration. Use a timer to call Play() on the hidden control at that time, and another timer to swap the VideoDrawing or visibility at the precisely calculated instant without waiting for the MediaEnded event. – Ray Burns Mar 18 '10 at 14:02