Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 9 of 9
  1. #1
    Join Date
    Jan 2003
    Posts
    69

    Full screen video problem

    I have buttons set up in my program to play several short videos in sequence. I have also added a button to show the videos fullscreen The problem is that as the next video loads in we are dropped out of fullscreen mode for a second ot two until the next video launches. Is there any way to prevent this?

  2. #2
    Join Date
    Jan 2003
    Posts
    69

    Re: Full screen video problem

    Any ideas? The client isn't happy with this. I am using a script that Worm wrote to string the sequences together. It's in the thread "easy newbie question" from last week.

  3. #3
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728

    Re: Full screen video problem

    You could maybe make the AutoPlay application full screen as well, with a black background (or whatever background color makes sense for the project).

    Or just combine all the videos into one longer video, so you don't have any transitions at all. You might even be able to use the Media Player Object's Seek action to start playing the video from specific points...although the size of the video and the capabilities of the user's hardware could become a factor in how responsive that is.
    --[[ Indigo Rose Software Developer ]]

  4. #4
    Join Date
    Jan 2003
    Posts
    69

    Re: Full screen video problem

    Thanks Lorne, I think making the project full screen may have some promise, but is that possible to do anywhere except on the project initialize? I don't always want it full screen, though the client may accept it as the lesser of 2 evils.
    Unfortunately I don't see any way around having transitions since the video is just over an hour long and consists of 30 sections that the client wants to be able to access individually or in groups. What I really need is to not only start a video at a seek time but to end it that way as well. I think someone else recently requested this function as well.

  5. #5
    Join Date
    Jun 2002
    Location
    Southeast USA
    Posts
    1,804

    Re: Full screen video problem


    What I really need is to not only start a video at a seek time but to end it that way as well. I think someone else recently requested this function as well.
    Several times, actually. I would say that beyond the capability of stopping at a given time, it would be seriously great to be able to trigger other events as well. We'll see what the future brings.
    Eric Darling
    eThree Media
    http://www.ethreemedia.com

  6. #6
    Join Date
    Jan 2003
    Posts
    69

    Re: Full screen video problem

    Yes, a common use being the video synced to powerpoint, which we do all the time.

  7. #7
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728

    Re: Full screen video problem


    I think making the project full screen may have some promise, but is that possible to do anywhere except on the project initialize? I don't always want it full screen, though the client may accept it as the lesser of 2 evils.
    Hmmm...you could maybe use two different AutoPlay applications, one that basically just serves as the video player. Your main application would run this video player and tell it what video(s) to play. That way your main application wouldn't have to be full screen...just make the "video player" project full screen.

    To communicate between the two applications, the main application could either pass command line arguments to the "video player" one, or set some values in the Registry for it to read.
    --[[ Indigo Rose Software Developer ]]

  8. #8
    Join Date
    Jan 2003
    Posts
    69

    Re: Full screen video problem

    Hmm,the two application idea sounds like it would open another whole can of worms though as a last resort I may have to explore it.
    I did find under "window" actions a "move" command that also had size coordinates. Could I use this command to resize the application on the fly, say, when the user pressed the button that now switches the video to full screen mode, could I somehow determine their screen resolution from the registry or somewhere and set the project window to that size? But how would I set it back since they would be using media player controls to return from full screen?

  9. #9
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728

    Re: Full screen video problem

    Yeah, you should be able to resize the AutoPlay application's window. (Or maybe just use the Maximize action?) Good idea, btw. [img]/ubbthreads/images/icons/smile.gif[/img]

    If you need to find out the user's screen resolution, you could use the DLL that Brett made.

    I don't think using two projects would be that hard, but resizing the AutoPlay application's window would probably be faster, making it all seem more responsive.

    --[[ Indigo Rose Software Developer ]]

Posting Permissions

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