Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8233181
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:02:55+00:00 2026-06-07T18:02:55+00:00

I’m searching for quite a while now for an extension for Inno Setup to

  • 0

I’m searching for quite a while now for an extension for Inno Setup to use a video file, for example an AVI or maybe a .png sequence as a splash-screen for my installation (the usage of an alpha channel would be a HUGE plus but is not a must have).
There are several .dll’s to use static pictures with a fade-in and fade-out but I couldn’t find anything to use as video file for that purpose.

As far as I know, I can use any kind of .dll with Inno Setup. For example I can use the popular bass.dll for audio playback even though it has no “real” Inno support but Inno can call the functions of that .dll.

So is there any program out there that would allow me to do this?
Any tip in that direction would be very helpful.

Edit: This may be possible with Qt, I know you can make exactly those frame based splash-screens for your applications but I’m not sure if it’s possible to use Qt with Inno Setup?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T18:02:58+00:00Added an answer on June 7, 2026 at 6:02 pm

    I have founded the Inno Media Player project which is able to embed the video and audio playback into the InnoSetup wizard. It is based on DirectShow technology and requires at least DirectX 9 to use.

    Except built-in formats it supports all DirectShow codecs, but you should consider that your target users doesn’t need to have codecs for some exotic media formats and install them codec just because of the show at the installation startup would be an overkill and unfair to user.

    About the transparency you wanted to have, if you find the codec that supports that, we can try to make the popup window transparent and let the DirectShow renderer draw on a layered window, but without the codec and a sample video I can’t do nothing.

    • the libraries with a sample script you may find in the source trunk or download it from here
    • I wrote a simple function reference where you can find the function parameter descriptions

    So to show a popup window with the video playback before the wizard form is displayed you can use the following:

    Please note, that Inno Media Player is a Unicode library, and so you can use it only with Unicode versions of InnoSetup, not with ANSI ones! There is no support for ANSI versions of InnoSetup…!

    [Setup]
    AppName=Media Player Project
    AppVersion=1.0
    DefaultDirName={pf}\Media Player Project
    
    [Files]
    Source: "MediaPlayer.dll"; Flags: dontcopy
    
    [Code]
    const
      EC_COMPLETE = $01;
    
    type
      TDirectShowEventProc = procedure(EventCode, Param1, Param2: Integer);
    
    function DSPlayMediaFile: Boolean;
      external 'DSPlayMediaFile@files:mediaplayer.dll stdcall';
    function DSStopMediaPlay: Boolean;
      external 'DSStopMediaPlay@files:mediaplayer.dll stdcall';
    function DSInitializeVideoFile(FileName: WideString; WindowHandle: HWND;
      var Width, Height: Integer; CallbackProc: TDirectShowEventProc): Boolean;
      external 'DSInitializeVideoFile@files:mediaplayer.dll stdcall';
    
    var
      VideoForm: TSetupForm;  
    
    procedure OnMediaPlayerEvent(EventCode, Param1, Param2: Integer); 
    begin
      if EventCode = EC_COMPLETE then
        VideoForm.Close;  
    end;
    
    procedure OnVideoFormShow(Sender: TObject);
    begin
      DSPlayMediaFile;
    end;
    
    procedure OnVideoFormClose(Sender: TObject; var Action: TCloseAction);
    begin
      DSStopMediaPlay;
    end;
    
    procedure InitializeWizard;
    var
      Width: Integer;
      Height: Integer;
    begin
      VideoForm := CreateCustomForm;
      VideoForm.Caption := 'Popup Video Window';
      VideoForm.BorderStyle := bsNone;
      VideoForm.FormStyle := fsStayOnTop;
      VideoForm.Position := poScreenCenter;
      VideoForm.OnShow := @OnVideoFormShow;
      VideoForm.OnClose := @OnVideoFormClose; 
    
      if DSInitializeVideoFile('d:\Video.avi', VideoForm.Handle, Width, 
        Height, @OnMediaPlayerEvent)
      then
      begin
        VideoForm.ClientWidth := Width;
        VideoForm.ClientHeight := Height;     
        VideoForm.ShowModal;
      end;    
    end;
    
    procedure DeinitializeSetup;
    begin
      DSStopMediaPlay;
    end;
    

    Hope that it helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I want use html5's new tag to play a wav file (currently only supported
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
In my XML file chapters tag has more chapter tag.i need to display chapters
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.