Einzelnen Beitrag anzeigen

EWeiss
(Gast)

n/a Beiträge
 
#3

Re: Extern IID_ wie in Delphi einbinden

  Alt 11. Mai 2007, 07:42
Zitat von marabu:
Guten Morgen Emil,

ich kann das jetzt nicht prüfen, weil auf meinem Rechner im Büro kein WMP installiert ist, aber bei dir müsste im Ordner %WINDIR%\SYSTEM32 eine WMP.DLL liegen. Für diese DLL solltest du mit TLIBIMP eine Delphi Wrapper Unit erzeugen können und in der findest du dann alles was dein Herz begehrt. Zur Not schau mal hier: Delphi Media Player Visualizations

Freundliche Grüße
Danke für deine Informationen.
Die Url war mir bekannt

Hier mal die Unit mit ein paar kleinen änderungen.

Delphi-Quellcode:
unit WMPEffects;

interface

uses
   Windows, WMPLib_TLB;

const
   SA_BUFFER_SIZE = 1024;

Type EffectsCapability =
   (EFFECT_CANGOFULLSCREEN = $00000001, // can the effect go full screen?
   EFFECT_HASPROPERTYPAGE = $00000002, // does the effect have a property page?
   EFFECT_VARIABLEFREQSTEP = $00000004, // should effect return frequency data with variable size steps?
  EFFECT_WINDOWEDONLY = $00000008,
  EFFECT2_FULLSCREENEXCLUSIVE = $00000010);

Type
   TimedLevel = record
      frequency : array [0..1, 0..SA_BUFFER_SIZE-1] of byte;
    waveform : array [0..1, 0..SA_BUFFER_SIZE-1] of byte;
    state : integer;
    timeStamp : int64;
  end;

  IWMPEffects = interface(IUnknown)
     ['{D3984C13-C3CB-48e2-8BE5-5168340B4F35}']

    // Render using the rectangle on the normalized device context
    //void Render(ref TimedLevel levels, IntPtr hdc, ref RECT r);
    procedure Render(var pLevels : TimedLevel; hdc : HDC; var prc : TRect); safecall;

    // provides the no. channels, sample rate and title of the audio currently playing
    procedure MediaInfo(lChannelCount : longint; lSampleRate : longint; bstrTitle : WideString); safecall;

    // called to retrieive the capabilities of the effect (fullscreen? property page?, etc.)
    procedure GetCapabilities(var pdwCapabilities : DWORD); safecall;

    // retrieve the display title of the effect
    procedure GetTitle(var bstrTitle : WideString); safecall;

    // retrieve the title for a preset
    procedure GetPresetTitle(nPreset : LongInt; var bstrPresetTitle : WideString); safecall;

    // retrieve the number of presets this effect supports
    procedure GetPresetCount(var pnPresetCount : LongInt); safecall;

    // set / get the current preset
    procedure SetCurrentPreset(nPreset : LongInt); safecall;
    procedure GetCurrentPreset(var pnPreset : LongInt); safecall;

    // display the property page of the effect (if there is one)
    procedure DisplayPropertyPage(hwndOwner : HWND); safecall;

    // This method will be called when the effect is to start and stop full screen
    // rendering (if supported)
    procedure GoFullscreen(fFullScreen : BOOL); safecall;

    // This method will get called after a successful call to GoFullScreen to render
    // the effect. Return failure from this method to signal loss of full screen.
    procedure RenderFullScreen(var pLevels : TimedLevel); safecall;
  end;


  IWMPEffects2 = interface(IWMPEffects)
  ['{695386EC-AA3C-4618-A5E1-DD9A8B987632}']
    // Called by Windows Media Player to provide visualization access to the
    // core Windows Media Player APIs.
    procedure SetCore(var pPlayer : IWMPCore); safecall;

    // Called by Windows Media Player to instantiate a visualization window
    procedure Create(hwndParent : HWND); safecall;

    // Called by Windows Media Player to destroy a visualization window
    // instantiated in the Create method.
    procedure Destroy; safecall;

    //Called by Windows Media Player to inform the visualization that a new
    //media item has been loaded.
    procedure NotifyNewMedia(var pMedia : IWMPMedia); safecall;

    // Called by Windows Media Player to pass window messages to a visualization.
    procedure OnWindowMessage(msg : UINT; WParam : WPARAM; LParam : LPARAM;
      var plResultParam : LRESULT); safecall;

    // Called by Windows Media Player to render a windowed visualization.
    procedure RenderWindowed(var pData : TimedLevel; fRequiredRender : BOOL); safecall;
  end;


implementation

end.
Auch habe ich die komplette WMP.TLB implementiert (teile rausgeworfen die nichts mit der Vis zu tun haben).
Aber kann keinen eintrag finden für die Interface ID von IWMPEffects.
Bisher habe ich mir so geholfen das ich quasi einen Temporären WMP(Skin) ausführe und diesen als Parent in die ausführende Anwendung verschiebe.
Der nachteil ist aber dann das die Musik über den WMP ablaufen muss um die Vis anzuzeigen das soll aber über die BassLib geschehen.


EDIT:
Vielleicht ??
WMPEffects = IWMPEffectsCtrl; davon die IID ? wäre aber dann nicht zuständig für IWMPEffects oder doch ?
Ist die einzigste die ich finden kann.
IID_IWMPEffectsCtrl Ich möchte aber eigentlich nicht das Control ansprechen sondern nur den, die Effecte.


gruss Emil
  Mit Zitat antworten Zitat