Results 1 to 8 of 8

Thread: DirectShow Tutorial

  1. #1

    DirectShow Tutorial

    Hello People,

    sorry didn't find better place to ask for this question:
    Is there a tutorial on the web on how to play a movie file
    in DirectShow? Best would be with Delphi.

    Thanks

  2. #2

    DirectShow Tutorial

    Follow the link at the bottom of this post. My game development kit comes with a direct show component (source included) that is very straightforward.


    Edit: Hab' nicht gesehen, dass du auch aus Deutschland kommst :roll:
    Ask me about the xcess game development kit

  3. #3

    DirectShow Tutorial

    ok ich probiere ihn mal aus danke!

  4. #4

    DirectShow Tutorial

    Merci vielen Dank die lAĴ§uft echt super!

  5. #5

    DirectShow Tutorial

    DSPack on http://www.progdigy.com - OpenSource set of Delphi DirectShow components.
    There are only 10 types of people in this world; those who understand binary and those who don't.

  6. #6

    DirectShow Tutorial

    ok another question:
    I establish the fullscreen mode by UndelphiX component- os that i do not have to switch back to normal and then back to fullscreen.
    Question is:

    How can I hide the cursor in the Fullscreenmode ? (Xcessgdk)
    form1.cursor := crNone doesnt work!

    Thanks

  7. #7

    DirectShow Tutorial

    Try

    Code:
    ShowCursor(False)
    but make sure you put a

    Code:
    ShowCursor(True)
    when the program closes. But they must be used in equal measures.

    e.g if you use ShowCursor(False) 5 times (Not sure why you would do this but still), you must use ShowCursor(True) 5 times also.

    EDIT Just checked whether the ShowCursor(True) thing must be used in equal amounts as False, but it seems they don't despite the documentation saying that this must happen. In fact, from what I can work out, you don't need to use ShowCursor(True) at all. It cursor reappears when the app is closed. Weird, anyone shed some light on this?
    Isometric game development blog http://isoenginedev.blogspot.com/

  8. #8

    DirectShow Tutorial

    It cursor reappears when the app is closed. Weird, anyone shed some light on this?
    Why you are so surprised? It's a proberty of the GOOD OS - it has to isolate problems/bugs of single apptication from others apps.
    There are only 10 types of people in this world; those who understand binary and those who don't.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •