ImageEn, unit ieds

TIEDirectShow.DVDInputPath

TIEDirectShow.DVDInputPath


Declaration

property DVDInputPath: WideString;


Description

Specifies the drive letter of DVD reader. You can set 'Default' to select default DVD reader.
You can also specify a path to VIDEO_TS directory, which contains video data. For example "C:\mydvd\VIDEO_TS".

Note: In order to play a DVD under the Delphi IDE you should disable "Integrated Debugging"


Example

with ImageEnView1.IO.DShowParams do
begin
  DVDInputPath := 'Default';
  RenderVideo := true;
  RenderAudio := true;
  Connect;
  // Set bitmap size
  GetVideoRenderNativeSize(w, h);
  ImageEnView1.Proc.ImageResize(w, h);
  Run;
end;


Demo

Demo  Demos\Display\VMR_DVD\VMR_DVD.dpr