Hello,

I am attempting to setup a queue of sound(wav) files within a phonon mediaObject.
The queue seems to play back fine when the inserted wav files are longer than say 2 seconds,
but if the wav files are shorter than a second, the first wav file plays and the queue never makes
it to the second file.

The code is rather trivial that I am using just for my test case:

I have a QList of "files", wav file filenames that build the queue...

foreach (QString string, files)
{
std::cout << "Adding file(s): " << string.toStdString() << std::endl;
Phonon::MediaSource source(string);
sources.append(source);
}
mediaObject->clearQueue();
mediaObject->enqueue(sources);
mediaObject->setQueue(sources);

mediaObject->play();

Is there any setting that can be made to allow this to play a queue of shorter wav files in my queue using this class/library...

Thanks,

Curtis Rubel
crubel@compro.net