IVideo (Videoobjekt)

1. Definition

Das Videoobjekt ist vom Typ IVideo und leitet von ISlideShowObject ab.

IVideo inheris from ISlideShowObject
  function Filename: IFilename;  
  function GetVolume: Single;
  procedure SetVolume(const Value: Single);
  function GetUseVideoLength: Boolean;
  procedure SetUseVideoLength(const Value: Boolean);
  function GetMediaLength: Single;
  procedure SetMediaLength(const Value: Single);
  function GetFadeOutBackgroundMusic: Boolean;
  procedure SetFadeOutBackgroundMusic(const Value: Boolean);
end;

2. Methoden

  • Dateiname des Videos als IFilename

    function Filename: IFilename;
    
  • Lautstärke des Videos

    function GetVolume: Single;
    procedure SetVolume(const Value: Single);
    
  • Wird komplette Video-Länge genutzt?

    function GetUseVideoLength: Boolean;
    procedure SetUseVideoLength(const Value: Boolean);
    
  • Videolänge

    function GetMediaLength: Single;
    procedure SetMediaLength(const Value: Single);
    
  • Beginn des Videos in Millisekunden

    function GetStartPos: Single;
    procedure SetStartPos(const Value: Single);
    
  • Hintergrundmusik bei Video ausblenden?

    function GetFadeOutBackgroundMusic: Boolean;
    procedure SetFadeOutBackgroundMusic(const Value: Boolean);