This example will select the last video and audio streams. There is no error checking to make the example easier to understand
void SelectLastProgram(IltmmPlay *pPlay)
{
long StreamCount = 0;
/* Select the last video stream - rarely necessary, since there is usually only one video stream */
pPlay->get_StreamCount(ltmmPlay_Stream_Video, &StreamCount);
if(StreamCount > 1)
pPlay->put_SelectedStream(ltmmPlay_Stream_Video, StreamCount - 1);
/* Select the last audio stream */
pPlay->get_StreamCount(ltmmPlay_Stream_Audio, &StreamCount);
if(StreamCount > 1)
pPlay->put_SelectedStream(ltmmPlay_Stream_Audio, StreamCount - 1);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document