Random movie player?

Greetings,
I need a movie player which will play movies randomly. On a basic level, this is similar to the “Shuffle” function on iTunes. Or, in screensaver, where you can choose a folder containing still images to be played in random order, with a few parameters (like transition, fit to screen, etc).
The application for me is for a project I am working on made up of, eventually, hundreds of movies (of a particular place, event or person). These are HD (Apple ProRes) 1080p 24fps movies. They have no sound. They can all be grouped in one folder, say. I tell the movie player to play the movies continuously, in random order, from this folder, simple as that. They can be simple cut transitions, so there does not have to be any rendering, but the cuts must be smooth (ie, no jumps or black spaces inbetween).
Anybody know of anything like this out there?
Thanks ! Dave Berry

You might explore digital video disc jockey applications. I know of no way to tell any application like QT Player to pick random movies. That requires some scripting to generate a random number and to then use that number to select an item from a folder and then to push play and then to wait for the movie to end before running the script again.
But... You might open up the documentation for Automator and see if it can be done in QT Player. Someone may have already written a shuffle script.
bogiesan

Similar Messages

  • Follow sprite when the mouse is down, but randomly move when mouse is up?

    I have a sprite that has a Random Movement behavior.
    While the mouse is down, I want it to stop this behavior and initialize a Follow Sprite behavior instead.
    When the mouse is lifted, I want to stop the Follow Sprite behavior and reset/restart the Random Movement behavior.
    Openspark helped me out with a different version of a very similar behavior a long while back, which worked. It switched between Random Movement and Draggable. I tried to edit the code so that it would apply to Follow Sprite instead of Draggable, but it isn't working the way I thought it would.
    The order of behaviors on my sprite is as such:
    followSprite (Follow Sprite)
    moveToward (The behavior described above)
    randomMove (Random Movement)
    turnTowardsMouse (sprite faces mouse when it is clicked)
    Face Destination (if not facing mouse, sprite faces toward the randomized endpoints generated by randomMove)
    This is the moveToward behavior - the middleman that's supposed to be swapping between the two:
    property pSprite
    property pTouching
    on beginSprite(me)
      pSprite = sprite(me.spriteNum)
    end beginSprite
    on mouseDown(me)
      -- Overrule the Random Movement and Rotation behavior until the mouse
      -- is released. See the on prepareFrame() handler for the effect.
      pTouching = TRUE
    end mouseDown
    on prepareFrame(me)
      if pTouching then
        -- Block the event from reaching the Random Movement and Rotation
        -- behavior, so that only the Draggable behavior will work.
        if the mouseDown then
          stopEvent
        else
          -- The user has released the mouse.
          -- Start a new movement in the Random Movement and Rotation behavior.
          pSprite.pPath = VOID
          sendSprite(pSprite, #mNewPath)
          pSprite.pRotate = VOID
          sendSprite(pSprite, #mNewRotation)
          pTouching = 0
        end if
      end if
    end prepareFrame
    Can anyone help me figure this out?
    If you want to imagine a visual, it's essentially a touchscreen fish tank. Fish swim around randomly, but when someone is touching the screen, they approach the point of contact (which is defined by a tiny invisible sprite centered on the cursor).
    Once again, thank you so much to anyone who can help me out. This is part of a capstone undergraduate art project I am doing - and I am far more experienced in making the visuals than I am in coding. I am having to mostly tackle Lingo on my own. Any coding help I've received will be recognized (with permission) on my artist website as well as a thesis paper I am writing that will be published in May.

    As first steps at troubleshooting you could try an SMC reset and a PRAM reset:
    SMC Reset
    Shut down the computer.
    Unplug the computer’s power cord and disconnect peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    Reset PRAM
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P and R.
    You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    If that doesn't help, what OS are you running? Depending on the OS (Lion/Snow Leopard) will help determine the next step.

  • What is the best movie player for mac mini from 2009

    i have a mac mini from 2009 and my problem i can't play movie's. My OS X Version is 10.5.8. When i installed the movie player "VLC" version 2.1.5 mac for 32 and 64 bit i get the information " you can't this version from vlc media player with the version from mac OS X use.

    Yo can get a compatible version of VLS for 10.5 here:
    http://www.videolan.org/vlc/download-macosx.html
    vlc for 10.5.8

  • A challange: creating a movie player in a panel

    so.. one of my colleagues has thrown me the gauntlet to create a functional movie player as a indesign panel.
    Is it even possible using javascript? i'm thinking that i can use a flashplayer scriptUI object maby?

    Sure. I can be done pretty easily using a ScriptUI Flash player or the CS SDK.

  • Random movement within an irregularly constrained sprite (EDITED)

    (NEW EDIT AT BOTTOM)
    So, basically, I'm making a little program that crudely simulates an ant colony. I have little tunnels the ant-sprites can travel down, as well as chambers, in an irregularly-shaped sprite.
    I am not the most advanced at Director, but at least I've figured some things out. I found code on an open-source website (openspark, actually) that allows for an object to be dragged inside an irregular shape that has a matte ink.
    It's all well and good that the ants can be dragged within this boundary, but is there any way to have them use a Random Movement and Rotation behavior that is confined by the same laws? Or is that impossible / extremely hard?
    By the way, I already have a middleman behavior I use to toggle between dragging and random movement, so that does not factor into my question. I just need to know how to alter the Random Movement behavior so that it abides by the same constraint rules as my dragging behavior, if possible.
    Here is the code I'm using for dragging. I made a couple edits from the original, but not much.
    Don't worry about the canJumpGaps function of this code, as I am using a touch screen and it will never be used.
    property spriteNum
    property canJumpGaps    
    -- set to TRUE on mouseDown if the shiftDown
    property pSprite
    -- this draggable sprite
    property pConstraintSprite
    -- sprite to which this sprite is constrained
    property pConstraintAlpha
    -- alpha channel image of constraining member
    property pOffset
    -- offset between this sprite's loc and the mouse
    property pCurrentLoc
    -- last known position of this draggable sprite with respect to the constraining sprite
    -- EVENT HANDLERS --
    on beginSprite(me)
      pSprite  = sprite(spriteNum)
      pConstraintSprite = sprite(1)
      -- We'll use the value of the alpha channel to detect holes in the sprite
      pConstraintAlpha  = pConstraintSprite.member.image.extractAlpha()
    end beginSprite
    on mouseDown(me)
      canJumpGaps = the shiftDown
      if not pCurrentLoc then
        -- The user has not yet dragged the sprite anywhere.  Find out its
        -- current position with respect to the constraint sprite.
        pCurrentLoc = pConstraintSprite.mapStageToMember(pSprite.loc)
        if not pCurrentLoc then
          -- The mouse is not over an opaque part of the constraint
          -- sprite.  It can't be dragged at all.
          exit
        end if
      end if
      -- Start dragging
    pOffset = pSprite.loc - the mouseLoc
    end mouseDown
    on exitFrame(me)
      if not pOffset then
        -- The user is not dragging the sprite
        exit
      end if
    if the mouseDown then
        me.mMoveSprite()
      else
        -- The user just released the mouse
       pOffset = 0
      end if
    end exitFrame
    -- PRIVATE METHOD --
    on mMoveSprite(me) ---------------------------------------------------
      -- SENT BY exitFrame()
      -- ACTION: Calculates how near to the current mouseLoc the draggable
      --         sprite can be dragged.
      tMouseLoc = the mouseLoc + pOffset
      -- Find where the mouse is with respect to the constraint member
    tImageLoc = pConstraintSprite.mapStageToMember(tMouseLoc)
      if voidP(tImageLoc) then
        -- The mouse is currently outside the constraint sprite.  Use a
        -- slower but more powerful method of determining the relative
        -- position.
        tLeft = pConstraintSprite.left
        tTop = pConstraintSprite.top
        tImageLoc = tMouseLoc-point(tLeft, tTop)
      else if canJumpGaps then
        -- Check if the mouse is over a non-white area of the constraint
        -- member
       tAlpha = pConstraintAlpha.getPixel(tImageLoc, #integer)
      end if
      if tAlpha then
        -- Let the mouse move to this spot
    else -- Can't jump gaps or the mouse is over a gap
        -- Find how near the dragged sprite can get
        tDelta  = pCurrentLoc - tImageLoc
        tDeltaH = tDelta.locH
        tDeltaV = tDelta.locV
        tSteps = max(abs(tDeltaH), abs(tDeltaV))
        if not tSteps then
          -- The mouse hasn't moved since the last exitFrame
          exit
        end if
        tSteps = integer(tSteps)
    if float(tSteps) <> 0 then
    tStep  = tDelta / float(tSteps)
    -- This makes sure I'm not dividing by zero.
    else
    tStep  = 1
    end if
    repeat while tSteps
    -- Move one pixel towards the mouse
    tSteps = tSteps - 1
    tLoc = tImageLoc + (tStep * tSteps)
    -- Test that we are still on an opaque area
    tAlpha = pConstraintAlpha.getPixel(tLoc, #integer)
    if not tAlpha then
    -- We've gone a step too far: move back to an opaque area
    tSteps = tSteps + 1
    exit repeat
    end if
    end repeat
    end if
    -- Update the absolute and relative positions of the draggable
    -- sprite.
    tAdjust     = tSteps * tStep
    pCurrentLoc = tImageLoc + tAdjust -- relative to constrain sprite
    tMouseLoc   = tMouseLoc + tAdjust -- relative to the stage
    -- Move the sprite
    pSprite.loc = tMouseLoc
    end mMoveSprite
    Thank you SO incredibly much to anyone who can help. This is for a senior project of mine in undergrad, and I really appreciate any help I can get. My resources on Director are limited, especially for odd issues like this.
    EDIT:
    So I found out that a way to do collision detection in Director is by using getPixel().
    I found this protected dcr file that is a perfect example of the way in which I want my ant objects to interact with walls:
    http://xfiles.funnygarbage.com/~colinholgate/dcr/irregular.dcr
    I've been trying to build a getPixel() collision detection mechanism for hours but have been unsuccessful.
    Basically, what I want the behavior to do is... get the pixel color of the tunnel sprite (sprite 2) at the center of the ant sprite. If the pixel color is white (the transparent background color surrounding the tunnel shape), I want to tell the Random Movement and Direction behavior this:
    pSprite.pPath = VOID
    sendSprite(pSprite, #mNewPath)
    pSprite.pRotate = VOID
    sendSprite(pSprite, #mNewRotation)
    This tells the Random Movement behavior to stop moving and determine a new path. The behavior should probably also offset the center of the sprite by a couple pixels when this happens so it is no longer over an opaque area and the Random Movement behavior won't get stuck.
    Will this work? If not, could anyone help me in building a collision detection behavior based on getPixel? This doesn't seem like it'd be all that difficult - at least in theory.

    Hi Roberto,
    I had an experience, which defies most common sense about data modeling. Moving from a cube to a ODS and then back on to a cube to introduce delta on a BPS delta application. It is a long sad disappointing store. But I had 24 keys (I know 16 is the max, I combined 6 keys into a single filed also had the same fileds in the data fileds, use these combination keys to deal with 16 key max limitation and adjusted during transformation.
    It did work, but later gave up due to some other functional issues and we realized it is a bad experiement due to everyones data understanding.
    I am saying is 16 key limitation is an issue, you can overcome with combining couple of fileds into a single filed in the start routine, map it and reuse it later.
    Hope this gives you some ideas.
    Goodluck,
    Alex (Arthur Samson)

  • Opening Movie player on TV screen

    i have my tv hooked up and working and can play movies on it. it is a seperate x screen "screen 1" i have a script that starts a new openbox session on the new screen when needed. i was woundering if i could get my movie player to open on that screen and perferably in a way that a can pass a movie file to the script and then have it open on my tv, and then when the movie player closes kill the openbox session.

    export DISPLAY=:0.1 && mplayer $1

  • My ipod nano's click wheel randomly moves!

    Since I updated my ipod nano last night, after about a minute of it being turned on, the click wheel starts not to respond to my actions and randomly moves, this problem occurs on many menu's such as volume, selecting songs to listen to, games, and many more. I have tried resetting it, getting rid of the songs i added to it last night, recharging the battery, but with no luck. Please help; as I’m worried it could be a virus!
    Compaq   Windows XP  

    Is the Hold button on or off?
    Since resetting was a temporary fix, go to the Apple store. The staff there will let you know if you need a replacement or not as the iPod Nano is still under warranty.

  • Totem Movie Player not playing files online

    well Hello. I have one problem, when i try to play Video online, like this site: http://www.lrt.lt/ltv-LT-high.asx (it's for Lithuanian users) tv online, to watch olimpiad, i get nothing, it just auto cancel playing.
    Well then i tryed to add that Link into Totem Movie Player GUI in Computer, to play from program, not from firefox or any other browser. Then i get this error:
    [b]An error occurred[/b]
    The playback of this movie requires a application/x-mmsh decoder plugin which is not installed.
    I tryed sudo pacman -S x-mmsh, but it founds nothing to install.

    I arrived here via google after experiencing the same problem. I got it with kaffeine (that is based on xine), with the current version in testing (I did not try the other one). Of course you need to install the packages of codecs as well.
    But still you need a workaround in these KDE applications (kaffeine, amarok, etc): The workaround is to replace the http:// part of the url with mmsh://

  • Random Movie Clips loop

    Hey there.
    I have a question about randomizing Movie Clips:
    I am attaching an example where 12 movie clips will be called
    into stage.
    (movieA1, movieA2, movieA3....)
    I am trying to create a situation where instead of triggering
    "movieA1" and so on, the code will trigger:
    movieA1 OR movieB1
    movieA2 OR movieB2
    movieA3 OR movieB3 and so on......
    can anyone help here with how to apply it?
    Thanks!
    note that the attached code triggers AllMovies (MovieA's),
    MovieB's are not in code yet, only in the library, because I am not
    sure how to code such a thing.
    adamlewen

    All I posted was a replacement to the corresponding
    attachMovie portion of your code... as you had in your first post.
    If I've made a correct allowance for the wrapping it should be in
    the 6th line of code beginning with
    var Movie:MovieClip = _root["Movie"+i] =holder.attachMovie
    etc
    What I suggested is only making a change to the first
    parameter to include a
    B or no B in the library ID that's requested by the
    holder.attachMovie part.
    The way its set up (if you use this changed attachMovie) it
    will randomise each time that makeAllMovies is called.
    If I was doing something like this I'd be inclined to set up
    the holder clips once. And then load the randomised content clips
    inside on the setInterval call to something like your makeAllMovies
    function. I also think you'd need to use removeMovieClip for
    previously attached content clips before attaching each time as I
    don't think it just replaces ("overwrites") the old one. I've seen
    other posts where if you attachMovie the same library item with the
    same name in the same holder clip, you end up with 2 instances
    (flash apparently appends a number to one of them each time). If
    this is indeed the situation and happened each time, it would
    probably cause some problems.
    Don't know if that helps. Kglad or others may have more
    insight in this area where I've indicated uncertainty.

  • Have just upgraded to Lion.  In all applications a box now appears that encloses topics, etc on the screen.  It is a problem as it also randomly moves around the screen.  Have no idea what the purpose is and want to get rid of it. Scroll does not work.

    Just upgraded to Lion. Scroll does not respond. Have tried altering preferences. Will not fix. In all applications, including this page, a box appears and seems to randomly move around the screen, resting wherever I begin to work. How can I turn this off and get scroll to work normally?

    Have a look at System Preferences, Accessibility, VoiceOver.
    (Command - F5).
    charlie

  • Movie Player For iPhone 3 IOS 4.2.1?

    Can anyone recommend a Movie Player For iPhone 3 - IOS 4.2.1?

    There are actually a lot of games and apps which are compatible with your older device which runs iOS 4.2.1. You just need a tool to separate them from the incompatible apps.
    Here is my favorite solution:
    iOSSearch - search the iTunes store for compatible apps.
    And here are some things other people have suggested:
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.
    Discussion post by msgarmar - technique to sort apps by date.

  • How do I change the defualt grey scrollbar and the grey movie player control panel?

    How do I change the defualt grey scroll bar sliders and the grey control panel for the movie player using Dreamweaver. Is there a way to change the color of these items using CSS?
    Any info would help.

    I have not had to write any code yet.
    Well that's going to have to change.  :-))
    For Windows Media, set the autostart  attribute value to "false"  and "0"
    http://www.mediacollege.com/video/format/windows-media/streaming/
    If you can convert your WMV and FLV files to MP4s, you'll have video that can be viewed in all modern browsers plus Smartphones.
    http://www.pickleplayer.com/index.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • When working mouse will randomly move even when I'm not moving it

    When working on my computer my mouse will randomly move even when I'm not moving it. It is like I have a ghost mouse that is moving across the screen by itself. I checked and made sure screen sharing isn't on. It occurs randomly from what I can tell. It happened twice tonight where I'm on a window with my hand on the mouse and the cursor will move up to the top of the screen and then to the very left (which will turn on my screen saver). I will make me feel better if someone has seen this to. It happens very quickly and I can get control of my mouse. I have seen this off and on for a while. Anyone else?

    I have the same issue.
    It is a wired Mighty Mouse on a 24" iMac. My Macbook Pro with Wireless Mighty Mouse has never had an issue that I can recall, only the desktop.
    It's pretty **** annoying to be fencing something in on Photoshop and suddenly your mouse is up in the corner of the screen and you've selected half your picture.
    Anyone have any thoughts? What are the common denominators here?
    As I said, 24" iMac running 10.5.5(although it has been happening since I purchased the computer somewhere around 10.5.3) Corded Mighty Mouse, Aluminum Keyboard. Can't think of any other relevant information....

  • Eltima SWF Movie Player for Mac 2.0

    Hope this is the correct area for this - I'm trying to locate an older version of the above flash player - every site I try that has the version 2.0 always downloads the version 3.0 - which does not play on OS 10.2.8 but only OS 10.3
    The older version - Eltima SWF Movie Player for Mac 2.0 - will play on 10.2.8 - so Iam trying to source this copy of SWF/FLV
    can anybody help???
    Gregg

    Hi Roam - thanks for replying.
    I did find a substitute FLV player, for 10.2, at the URl below, but I was hoping the Eltima v2 might work even better than the J-VHS.
    I'm sure someone will have a copy somewhere - there used to be mirror sites carrying all the old mac software that had lost popularity - but I can't locate it yet either.
    ciao
    Gregg
    - http://streampower.free.fr/ -
    Description:
    J-VHS FLV Player : A FLV PLAYER FOR MAC & PC
    Royalty free flv player for mac & pc. FLV Player allows users to playback .flv files. Standard playback controls included. The program can be optionally ...
    streampower.free.fr/ - 4k - Cached - Similar pages

  • Smart Movie Player - Nokia E63

    smart movie player 4.15 download in nokia e63 my imei no.35XXXXXXXXXXXXX pls send license key on my id [email protected]
    Moderator's Note: The subject was amended as the post was moved to the appropriate board. IMEI number and the email address were edited out as it's not recommended to publish such information in a public forum.

    Yeah i'm looking for this only. If there are other players which is compatible with 5800 then where could i get it?
    But thanks for the smart movie player.
    You can mark my posts as useful post by giving me kudos..

Maybe you are looking for

  • Why getting "DeliveryExcetion" in SOAP- XI- RFC scenario?

    Hi, This is the scenario : i) I made a Integration Scenario for updating a Network in Project System(SAP-CE8) from my Web application in SOAP->XI->RFC context. I was able to update it using transaction SE37 on SAP R/3. But when i wanted to update it

  • What Speed could i get & what are the errors

    Hi Everyone.    I have just joined B.T & yesterday was my last day of the 10 day period.    Bin looking at my speed it hasnt gone up alot but i keep getting all these errors on the hub info so i would like to ask what are the errors please & does the

  • CTS to different OS version

    Dear all We have very time crunching situation and we need to install ECC 6.0 system on HP server as DEV system. This HP server is RISC based and we have installed HP11.11 version on it. SAP and Oracle version will be ECC6.0 and Oracle 10g. A month l

  • TDS was is paid to gov. and after the MIRO Vendor was wrong

    Hi, Any one give me solution for the my live issue. we create on P.O and run the MIRO and after TDS also paid to gov. than after we get one of vendor was wrongly post the that p.o we reveres the MIRO but what about TDS posting what we do for anthor v

  • Lxqt + kwin5 = missing window decoration

    hi there, coming from compiz standalone i just wanted to try out lxqt with kwin5 as window manager. I'd like to have an actively developed DE with some effects and try to keep it as lightweight as possible. Installation was straight forward. I grabbe