Quicktime with multiple videos

Is it possible to have multiple videos play in the same player? I want to create a webpage that will allow the user to view different clips in the same player.
Thanks...

Use Pageot to build your play list html code for what you want to do...
http://www.qtbridge.com/pageot/pageot.html
It's free........

Similar Messages

  • Mkv with multiple video tracks

    Hi. I have a load of Matroska files which contain a few (about 5) short video clips and an audio track. The video clips in each file are of the same event from different angles, so I want to watch all clips simultaneously. I have installed Perian and while the files open, I can only see one track, and I don't hear any audio. (MKVinfo tells me there are definitely multiple tracks.) Is it possible to use Perian/QuickTime to watch all video tracks simultaneously? If so, I can't figure out how, so I'd appreciate any pointers.
    I've tried VLC, and while this also opens the files (and shows all tracks), it invariably crashes soon after opening.
    If anyone has any other suggestions how I might solve this, that would be great too.
    Thanks in advance,
    wrathkeg

    It could be a 'difficult' form of Matroska file. FYI Matroska is just a container like MOV or AVI, and some mkv have the video encoded with Real Video Codec (RV9 RV10). Perian+QT can't decode this, but VLC will play .mkv files just fine on OS X, as long as they don't use H.264!
    It's a bit of a lottery until Matroska decide to support the Apple platform. I have found this:
    http://mkv4mac.free.fr/index.php?lang=en&p=lec
    which may help.
    But there may be another workaround: 1. Get Info the mkv file
    2. Change to extension to wmv. Save as wmv and that could work better.
    Or this link may be helpful:
    http://www.squidoo.com/mkv-converter-mac
    Recently, a poster (ZachP14) suggested this:
    "There's a program called Plex that runs .mkv files awesome on my 2.0 ghz macbook."
    http://www.plexapp.com/
    Maybe worth a try?

  • Quicktime playing multiple videos question

    Hello Everyone.
    This is probably more of a html/java/flash based question but I thought I would start here as it revolves around the QT Player.
    I have a webpage
    http://www.drewwfilms.com/Temp/Ket/KetWedding.html
    On this page is the QT Player.
    Beneath the player are 3 buttons. When a viewer clicks one of those buttons I want it to load the respective video related to that button into the player without the browser loading a new page. Is this possible?
    Can someone steer me the right direction? Or help me out? I'm not even sure how to google search this. I tried Multiple Videos, 1 QT player Web - and I didn't get anything that helped.
    Thanks!

    I've been having this truly obnoxious problem ever since I installed Lion. Whenever I open a Quicktime video or a preview jpeg (and sometimes a Word document) - the last two or three documents I've viewed in these programs also open.
    This is the normal default mode for Lion which now "remembers" what documents (files, movies, images, etc) were opn when you last "Quit" each application. Either learn to close the documents before "quitting" the app or turn this feature off. (I.e., deselect the "System Preferences > Personal > General > Restore windows when quitting and re-opening apps" option.)

  • Export to Quicktime with multiple Audio Tracks?

    Hi all --
    I am on a tight deadline (48 hrs!) to deliver a Quicktime Prores file with 6 audio tracks: ch 1+2 dialog, ch 2+3 music&effects, ch 4+5 stereo mix. I'm working with FCP 6.
    Now, I have figured out how to export the FCP 6 project to a Quicktime file with multiple audio tracks (in the Project settings, I specify 3 stereo channels, then I assign each audio track to one of the channels and export everything to a Quicktime file).
    However, how can I send a stereo mix to channels 4+5?? FCP only allows me to assign each audio track one but not multiple output channels, and I didn't see a way where I could create a bus.
    Can anyone help?
    Thanks!

    Something is being miscounted here. You say you have dialog on 1+2 and then say you have M&E on 2+3? I think you meant to say 3+4 and the stereo mix will be on 5+6. The easiest way to do this is to copy tracks 1-4 to tracks 5-8 by shift-option-dragging them there. Holding option will copy the tracks instead of moving them and holding shift will insure that the tracks will not move earlier or later. Then send 5+6 (dialog) to the 5+6 output (using the info in the above referenced discussion) and send 7+8 (music&effects) also to the 5+6 output. Done.

  • Playing Quicktime with Multiple Start End Points

    Hello
    I posted a message a few days which I received help on
    regarding starting and ending a Quicktime movie from various points
    in the movie. Now I have a new problem which I cannot fix at all..
    Here is the problem:
    I have a Quicktime movie on stage and 10 various buttons that
    contain a generic script which allows input of start and end points
    for each button to trigger the movie. Initially just doing this
    with one button is successful.
    However, multiple buttons all with the same generic code make
    the movie freeze up completely. My guess is that they are all
    fighting each other for control. Maybe I need something in the code
    which allows the button that is being used to play the movie to
    keep control.
    Here is the code I use for each button, the movie is on frame
    15.
    property pQT,pStart,pEnd,pFrame, pVolume
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    end
    on mouseUp me
    sound(3).volume=sprite(15).volume
    sprite(15).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment: "Which QT sprite",
    #format: #integer, #default: 0]
    setaProp vPDList, #pStart, [#comment: "Range start",
    #format: #integer, #default: 0]
    setaProp vPDList, #pEnd, [#comment: "Range end", #format:
    #integer, #default: 0]
    setaProp vPDList, #pVolume, [#comment: "Volume", #format:
    #integer, #default: 0]
    return vPDList
    end getPropertyDescriptionList
    Any help is much appreciated. (not a lingo expert)
    Andy

    Many thanks Mike
    Works fantastically.
    I just thought I would post the finished code - well, tweaked
    ever so slightly from Mike's orginal for anybody wanting a nice
    little behaviour for controlling a Quicktime movie.
    (watch out for page breaks etc - should be 68 lines)
    property pQT,pStart,pEnd,pFrame,
    pVolume,pMyControl,pReturnMarker
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    pMyControl=0
    end
    on mouseUp me
    sound(3).volume=sprite(pQT).volume
    sprite(pQT).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    pMyControl=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if pMyControl then
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    pMyControl=0
    go pReturnMarker
    end if
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment:"Which QT sprite",
    #format:#string, #default:0]
    setaProp vPDList, #pStart, [#comment:"Range start",
    #format:#integer, #default:0]
    setaProp vPDList, #pEnd, [#comment:"Range end",
    #format:#integer, #default:0]
    setaProp vPDList, #pVolume, [#comment:"Volume",
    #format:#volume, #default:0]
    setaProp vPDList, #pReturnMarker, [#comment:"Return to
    Marker", #format:#marker, #default:0]
    return vPDList
    end getPropertyDescriptionList

  • Working with multiple video resolutions ...

    I am putting together a home movie, in case that matters, where my video was taken on a variety of cameras.  I have 1920x1080 30fps (Sony camcorder), 1280x720 60fps (Flip), 1280x720 30fps (iPhone 4), 720x480fps (miniDV).    Targets are PS3/big TV, PC, and BD or DVD disc.   The 1080p Sony footage is my most abundant and important footage.    Questions less any open-ended comments, I'm all ears.
    1) What would you all set for sequence settings?    In my layman's mind I favored the 1080p footage creating a sequence using one of the Sony clips.
    2) Any issues exporting to H.264 1080p 30fps?  That format plays natively on my Sony PS3, PC, and easy to create a BD without further encoding.   Any special settings I should set when I export?   Or should I be going with a different format in this case?  I get confused on the whole when to upscale vs. downscale topic.
    3) Assuming yes and yes, would you want to scale the lower resolution clips to frame size?   Or would you leave them with big black bars on all sides?   Or would it depend on which resolution listed above?
    4) Assuming you said scale to frame size for all, unfortunately I was not aware of the Edit.Preferences.General.Default Scale to Frame Size setting until I after I imported.  I have spent days and hours pouring over hundreds of video clips, so going back and re-importing and editing would be a nightmare (unless there is someway to cause PP to resync with original clips achieving the same result).    So is the best option then to select the clips on the timeline and check "Scale to Frame Size"?   It looks like I can do that by selecting multiple clips on the timeline and get them all at once.    If the option is set for the 1080p clips (that match the sequence) will it just be ignored?  My footage is mixed throughout the time line.
    Thanks!
    Jon

    I really appreciate the rich feedback here - this forums is great, especially for us lost in space isolated consumers.   Following up on several questions and comments ...
    All of my TV's and computer monitors are 1080.  I'm hand waving a bit here, but I'm guessing my footage is 65% 1080i, 25% 720p, and 10% SD; something along those lines.   I am following a chronological story format, but could separate out the early part of the year before I started shooting in 1080i.  But note even there I would still have the mix of 720p and SD.  I can create my own delivery requirements being a home movie, but the plan was to have a .m2t encoding to play on PC's and then BD for the PS3 on a big TV.   So my original layman's thought was to go with a 1080i sequence, put it all in there, and take my lumps with how it comes out.  I guess I would rather favor the bulk of the HD footage looking good. 
    I did some experimenting tonight.    I took a 1080i sequence created from my dominant footage.  I dropped in a sample 720p and SD clip x 2; on the duplicates I selected Scale to Frame Size.   I watched the result over and over with my daughter on a 55" LED TV playing natively off a flash drive on a PS3 with an H.264 BD encoding .m2t file, VBR 2-pass.   What we discovered in our opinion was that the 720p was a bit too grainy for our tastes when scaled to the frame size.  Despite the pillar bars, we felt the unscaled (right term?) 720p was plenty "big" enough on the screen.   The 720p came off a Flip pocket camera, so nothing stellar to begin with.   On the SD clip, the unscaled version was clearly better looking with smoother motion than the scaled to frame size version.  However, we found it a bit too small with the pillar boxes and ultimately decided we preferred the scaled up size despite the degradation. 
    Now here is a really interesting note.  Perhaps I did something wrong here?   I took that same SD clip, created a new sequence from it, ensuring it was interlaced, and exported to MPEG2-DVD, VBR 2-pass, etc., imported into Encore, produced a DVD without any transcoding.  We then played this DVD back and forth with the aformentioned scale to frame size H.264 encoding.   I'm not sure I could tell a difference, but my daughter thought the 1080i playing natively off the PS3 look a little bit better than the DVD.    Not what I was expecting.   So unless I am missing something, in this specific case it seems the 1080i sequence is the way to go since we are not observing any benefit with straight SD and it fits better with my home movie situation.
    Separate topic, but I have a decade of SD home movies stored in various mpeg and avi files.   Upscaling those is intriguing.   Does a BMD card allow you to hardware upscale an SD file on your PC or only on capture from a device?
    I'm also interested in trying Instant HD.  Here is the rub though - it only works on progressive footage.  Perhaps I should put this question in a separate thread, but what is the best way to convert interlaced to progressive?  Or is that just flat out going to mangle the end results.  Red Giant also makes a plug-in called Magic Bullet Frames that supposedly converts to progressive.    To be clear - not so worried about the bit of SD discussed here on the upscale front, but rather going back to the decade prior.

  • How do i create linked pages with multiple video clips on each of them?

    I took a bunch of small videos with my digital camera, and now want to make a dvd that has a main menu with 7 choices, and then each one of those will take you to pages with each clip as a motion button (6 to a page). So if i click on "Dublin" on the main menu, it takes me to Dublin #1 which has clips 1 - 6, i can then click on an arrow to go to a second page with clips 7 - 12, etc. I can return to the main menu and click on "Belfast" which takes me to the first page of 6 clips, then a second page with 6 more, etc.
    The problem I am having is linking two or more Chapter pages together. Thanks for your help.
    Eric

    Welcome to the forums, Eric.
    iDVD has a few limitations, but you can do much of what you want.
    Limitations: Only 6 selections per menu page. And the Forward/Backward selection buttons advance only one menu at a time.
    Basic solution: Use the folder button to create a link to a submenu; move to that submenu and drag your movies onto that menu page. Repeat for more submenus.
    Alternative approach: Use iMovie to join all the Dublin videos, with chapter markers to designate each segment. Import the movie with chapter markers into iDVD and they automatically create the Dublin submenus. And you can watch all the Dublin videos in a row, or use the menus to navigate to the desired video. After you watch the last segment, you'll automatically return to the main menu.
    John

  • Working with Multiple Videos in Logic a Pain !!!

    Hi,
    I find that working with videos in logic is still quite primitive as compared to Protools. I like working with logic, even in post production but working with videos has been a real pain for me.
    In PT, you are able to add in several videos in one arrange page and edit the length of the videos to remove unwanted frames such as the black frames etc. It makes it easy to bounce when you can just click on the video in the arrange and bounce the particular segment in the precise time length of the video.
    But in Logic, I have to add all the videos in imovie, then export them out to DVPAL, then adding them in logic. This can take a really long time. Say i have a new revised video for one several compiled videos, i then have to repeat the whole process all over again. After which the starting time location of the video changes and i'll have to move everything in my arrange page. In PT you can just replace the particular video file and nothing else changes.
    Bouncing is also difficult in Logic when you can't maintain the starting time of the videos uniform. There are many times when I have to zoom in really find to the start time of video then start dragging the loop region and then do the same to the end. In PT, just click on the video and bounce. Done!
    I find working with Videos in Logic for Post Production for Advertising is such a pain. And I don't want to change to Protools cause i still love logic. I really think Apple will have to do something about this to be a competitive Post Production and Engineering platform. As for working with Music Logic is still sweet.
    Anyone else using logic as a Engineering Platform feeling the same way?
    Is there a better way to work with videos in Logic?
    Cheers,
    Kitcheren

    I can't believe there isn't a lot more talk about video in Logic. I have been using LP7 for music-to-picute for years until now that I have switched to 9. The way Logic 9 interacts with video has changed and I find it really hard to find exactly where the frames are in relation to the audio. It seems that the video window only approximately updates as you advance in the timeline by frames. Can anyone confirm that? Isn't anyone doing music for picture in Logic? I'm also kinda hooked on Logic and not in any mood to go back to PT, but today I nearly had a heart attack trying to get some music to match. My exports weren't looking the same as my project etc... I was horrified at the idea of telling my client that I can't figure out how to sync the picture! I wound up sending the mix and movie to a friend to line things up... not pretty.

  • How to create a DVD with multiple video projects

    I want to burn a DVD with several short video projects so that it will run without stopping in between.

    Hi
    *Play all resp one chapter at a time*
    Play All Button
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easies and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Never tested though.
    • Using another program to do this eg. Roxio Toast™ where there ia a Play All button option.
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    Yours Bengt W

  • Best method for building a project with multiple video tracks

    I'm working a project where a client wants some edits made to an existing DVD they had - some video tweaks but mostly menu changes. I'm rebuilding the menus from scratch and I've ripped all the video files from the DVD (there are about 80 of them on one DL-DVD), transcoding them with DV-DVCPRO/NTSC settings.
    The problem is when I import them all as assets into my project build, the DVD disc meter shoots up to about 12 or 13gb. What I've done is added them all to their own separate track, as they're meant to be played not as one continuous video but individual sessions.
    What I'm wondering is if there is a better way to build it that would reduce the amount of space it takes up (I'm rather new at DVD Studio Pro, so I can't tell if I'm going about this the wrong way or not), or if I need to compress the video files or re-transcode them using some other settings (H.264? I'm trying to maintain as much video quality as possible).
    Any help on this would be much appreciated, thanks.

    What is the running time? You should encode to m2v and AC3. Take a look here
    http://dvdstepbystep.com/faqs_7.php

  • Can you export a Quicktime with multiple audio tracks?

    I have a video with split audio tracks.
    I'd like to archive a copy that retains all the individual tracks so that other people could just open the file later and not have to reconstruct the tracks (i could certainly archive all the tracks individually).
    the problem i'm having is that FCP seems to only want to allow me to export 2 tracks of audio. I may be missing a setting, but i'm not sure.
    I can digitize a clip from a digibeta with 4+ tracks, and when i open the clip in QT, it recognizes the individual tracks, so it seems as if the capabilities are there.
    have they just not been integrated yet?

    Something is being miscounted here. You say you have dialog on 1+2 and then say you have M&E on 2+3? I think you meant to say 3+4 and the stereo mix will be on 5+6. The easiest way to do this is to copy tracks 1-4 to tracks 5-8 by shift-option-dragging them there. Holding option will copy the tracks instead of moving them and holding shift will insure that the tracks will not move earlier or later. Then send 5+6 (dialog) to the 5+6 output (using the info in the above referenced discussion) and send 7+8 (music&effects) also to the 5+6 output. Done.

  • Problems with multiple videos

    We would like to add some "help" tutorial videos to our models.  The first video that I added worked perfectly; the flash player controls appeared as they should at the bottom of the video and I'm able to start and stop the video as needed using these controls.
    The problem comes when I try to add a second video.  When playing the second video, the flash player controls at the bottom do not appear.  The video starts playing immediately with no way to stop it.  If I go to another video, the next video just starts playing over the top of the others.
    Is there a way to use more than one video in a model?  I have tried using different types of selectors; accordion menu, label based menu, toggle buttons.  We would like to have several tutorials go with our model.
    I am using Xcelsius 2008 Engage with SP1, FP 2
    Thank you

    Hi Alban,
    I see what you are seeing. Could you send your file so I can investigate more? Send it to [email protected], with a link to this thread in the message body. If the file is >20mb, our email system cannot handle it so use a service like Adobe SendNow.
    Thanks,
    Sam

  • Can you Make A Page With Multiple Videos?

    when i try to add more than 1 video to a page. the 2nd one doesn't show up. is there anyway around this or does each video have to have its own page?
    thanks

    I was doing it on a blank page. When you drop the file on from the media browser you should see a + with a green background. It should load pretty fast unless it is a giant file.
    If you want to add more than one file on a "movie" page, delete the "movie" place holder. Then you can add as many as you like. Kind of defeats the idea of having a movie page!

  • FLVPlayer with Multiple Videos - via buttons

    I have my stage with the FLVPlayer and its easy enough to get it to play one video, but I have a series of buttons on the right hand side (day1, day2, day3.. etc).
    How can I go about getting a button click to change the FLV srouce and begin playback?
    And do I need to stop the loading of the previous video, or is that handled automatically?
    I've been looking for a tutorial on something like this, but have yet to find it...
    Thanks so much!
    -Austin

    just assign (or re-assign) the source property of your flvplayback instance.

  • Quicktime playing multiple videos

    I've been having this truly obnoxious problem ever since I installed Lion. Whenever I open a Quicktime video or a preview jpeg (and sometimes a Word document) - the last two or three documents I've viewed in these programs also open. Help.

    I've been having this truly obnoxious problem ever since I installed Lion. Whenever I open a Quicktime video or a preview jpeg (and sometimes a Word document) - the last two or three documents I've viewed in these programs also open.
    This is the normal default mode for Lion which now "remembers" what documents (files, movies, images, etc) were opn when you last "Quit" each application. Either learn to close the documents before "quitting" the app or turn this feature off. (I.e., deselect the "System Preferences > Personal > General > Restore windows when quitting and re-opening apps" option.)

Maybe you are looking for