Seamlessly Concatenate (Stream) a list of MOV files

I have three questions:
1) Is there a way to seamlessly play a list of MOV files? For example, input would be a list of URLs for MOV files, and the output would be the MOV files displayed sequentially without any pauses or blips. The MOV files would be streamed to the screen and concatenated on the fly.
I have tried this:
1) Set the setMediaLocation to a MOV location
2) start the mediaPlayer
3) wait until the getState of the mediaPlayer is no longer playing
4) reset the setMediaLocation and play the next file.
This way has annoying pause in between each MOV video clip. This is probably because the movies are not prefetched beforehand.
2) Is there a way to seamlessly stream a MOV files when they become available? For example, if I have a list of 5 MOV files and only the first one is created, when the URL for the next MOV file becomes available, is there a way to play the next file without a pause or blip?
3) Is there any way to get rid of the pink background that occurs when you move the frame that contains an MOV file? A windowListener maybe?
Thanks! Any help in answering these three questions would be VERY MUCH appreciated!
~Joe

http://forum.java.sun.com/thread.jspa?threadID=568154&tstart=0
this might help me, but if anyone has a better solution for this problem I would be very grateful!

Similar Messages

  • No audio video streams upon import of .mov files?

    Hi... recently upgraded OS onto Intel 240 GB SSD. Running Widows 7 64 bit, clean re-install, 24 GB RAM, NIVIDIA Quadro FX 4800. I have been trying to optimize the system for maximum GPU accelerated effects while also taking advantage of the high speed read and write of my disk. OS runs on SSD, Adobe media cache on separate 2 TB eSATA connection, Media stored on external drive USB 3.0. Without getting into the fine details this is a snapshot of my workflow.
    The few problems I am encountering are some .mov files cannot be imported to PP. Error reads no audio or video stream in the files. I suspected metadata issues so tried to import with media browser and still no luck. These files worked perfectly before I began surgery 2 days ago on my computer. I have installed the latest version of quicktime and yet to no avail. Any recommendations here regarding my issue with imports or suggestions to benefit from my hardware would be appreciated.

    MOV is a wrapper, what is inside YOUR wrapper - Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • How to list RAW movie files?

    Currently iPhoto is not listing on my Movies smart album all my .mov files. If I click in one .mov, iPhoto shows as RAW. How can I create a Smart album to see all my movies?
    Still, how can I create a Smart Folder on finder that shows my .MOV files that are in iPhoto? I've tried to create one, but even the files are there, they are not listed in the createria.

    Where did the xmp files come from, ie. what app have they already been in?
    What is the file extension?
    Can the files be recognised in preview or any other program.
    Should not make a difference but have your tried moving the folder to anther location other than the desktop, I have imported many images from the desktop so would doubt this, but need to cover all bases.
    Can you drag the folder from the desktop into Aperture?
    Have fiels been renamed since coming from the camera?
    Can you rename a single file and see if AP sees it?
    Took me a few lines but I think I have the answer, given they are from a 20D and 40D are the files Canon sRAW? If so they are not compatible with Aperture!
    Tony

  • Audio Podcast listed as Movie file in iTunes

    Hi
    Our most recent podcast (yesterday) (produced in Garageband 09 and iWeb 09, uploaded to our MobileMe account) appears in iTunes>Podcast folder with a Movie Icon next to it. The downloaded file does not open/play (no error message appears), nor will it synch to my iPod Touch. Other subscribers have noted the same problem. The warning message from the iPod synch: "xxx was not copied because the video format is not supported by iPod". This is the first time I have encountered this type of problem. Our iTunes page may be found here.
    The latest version of the show appearing on our web site may be found here. Not sure why iTunes is now interpreting this file as a Movie? Perhaps this is an iWeb 09 bug?
    All previous downloaded shows play correctly in iTunes and synch to the iPod Touch. Oddly, if I simply double-click the current show in iTunes i.e. don't download it, it plays as a Movie file would play. A separate screen appears with the slideshow magnified (blurry) to the full size of the screen. Other shows play as an audio file would play.
    I read this Apple article, however it does not apply as I'm using the latest version of Quicktime -7.6. Our iTunes page may be found here.
    In My User Account>Applications Support>iWeb>Domain Sites2> I see all shows, including the current one correctly coded as .m4a.
    Appreciate any feedback or steps I can take to resolve this conundrum.

    Thanks Roger. I appreciate the feedback. I did a search, but it seems I didn't go far enough back in time. As I haven't had this problem before, I suspected it was something new brought about by either Garageband and/or iWeb in their latest renditions.
    As a test, I shared the podcast directly with iTunes. Then, via the Finder I had a look at the shared file in my iTunes Library folder. The file was saved correctly as a m4a file. So, I copied the file, then opened iWeb. In the Quicktime panel which held the original file shared from Garageband, I pasted the copied file. After saving, then publishing to MobileMe, I pinged iTunes again. By this morning, the m4a file had replaced the .mov file. All now is well.
    Crazy to have to go through this type of workaround just to publish a podcast. Bug must be in the Garageband sharing to iWeb process. Finding it is another matter. I posted feedback to Apple via Garageband.
    Thanks again for pointing me in a different direction. Appreciate it.

  • Capturing multiple video streams into a movie file

    I am using QTKit to capture 3 media streams simultaneously: audio, video, and display (display is screen capture), and would like to capture them in a time-synchronized fashion to a single .mov file.
    I have been able to successfully capture these three streams to 2 separate .mov files by using 2 QTCaptureSessions (one for audio/video, one for display video), but the problem here is that the 2 files are not time-synchronized (I have no idea how to synch them after the fact).
    The more intuitively correct thing to do is to use a single QTCaptureSession instance with 3 inputs (2 video inputs and one audio) to do the capture, which should automatically synch all the streams. Furthermore, since the .mov file can support an arbitary number of streams, I figured wiring up the QTCaptureSession to output to a single .mov file would be easy. I was wrong.
    The problem is that even though my QTCaptureSession has 3 nice input connections (2 video and 1 audio), when I wire up a QTCaptureMovieFileOutput to it, the resulting QTCaptureMovieFileOutput object has ONLY 2 connections: a single video and a single audio.
    Here is snippets of what I am doing:
    // add audio input: (type of media is QTMediaTypeAudio), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtAudioDevice] error:&qtError]
    // add video input: (type of media is QTMediaTypeVideo), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtVideoDevice] error:&qtError]
    // add display input: (type of media is QTMediaTypeVideo), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtDisplayDevice] error:&qtError]
    // create file output
    QTCaptureMovieFileOutput * qtFile = [[QTCaptureMovieFileOutput alloc] init];
    [qtSession addOutput:qtFile error:&qtError];
    // PROBLEM: if I look at this array of connections, it has ONLY 2 connections
    // 1 video, 1 audio!!!
    NSArray *connections = [qtFile connections];
    // start capture running
    [qtSession startRunning];
    // wire up to my file
    [qtFileOutput recordToOutputFileURL:[NSURL fileURLWithPath:outputFileName]];
    I desperately need help....my questions:
    1. Since QTCaptureSession supports arbitary inputs, and QTMovie supports arbitrary # of streams, I can't believe it's not possible for me to simply "hook" all the inputs of QTCap to output connections that will write to streams in one movie file. Clearly, QTCaptureMovieFileOutput is not doing this...can anyone tell me how to do this? This can't be hard, right?
    2. If I have to fall back on the ridiculous approach of capturing 2 unsynchronized .mov files and somehow synching them after the fact, can anyone provide a pointer on how to do that?
    Thanks VERY much!
    Steve

    As posted by Andy Mees...
    perhaps more realistic (and fcp friendly) would be this:
    http://www.virtualvtr.com/pictureready/index.html
    or this gem that popped up on the LAFCPUG boards a few days ago ... well worth a gander
    http://www.softronmedia.com/products/products/mvr.html
    ...in this thread...
    http://discussions.apple.com/thread.jspa?messageID=5968334&#5968334
    Hope that helps,
    K

  • How can I get iPhoto 9.5.1 (902.17) to import .mov files?

    I have a brand new MacBook Pro with 2 TB SDD running Mavericks that I bought 2 weeks ago.
    So far I have imported about 5,000 photo files into iPhoto 9.5.1 (902.17) plus about 25 videos as .mov files.
    But on today's import session, it stopped taking any more MOV's, giving the following error message:
    "The following file could not be imported. The file is in an unrecognized format." and it then it lists the .mov files.
    I tried rebuilding the LIbrary index, and have even tried creating a new Library and importing my smalles (12 Mb) .mov file to this new test library.
    But I keep getting the same error.
    I have the most recent version of all the software (i.e. no new updates are available.)
    What else can I do?

    I figured out a solution: The drive with the .mov files was a USB drive formatted as NTFS. iPhoto would import .JPG files from this OK, but would refuse to import .MOV files, giving the error noted above.
    I found that if I copied the files from the NTFS USB drive to an SD card or to the Macbook Pro's internal SDD, I could get iPhoto to import the .MOV files without any problem.
    Why does iPhoto 11 have a problem importing .MOV files from external USB drive formatted as NTFS, but no problem importing the exact same files from an SD-card formatted as FAT-16, or from a folder on the Macbook Pro's internal HD?

  • Help converting Mov files

    Hello all,
    I need help finding a download or solution that will help me convert my mov files to some format that imovie 6 will understand. I transferred them from my camcorder via USB and now they are in a folder on my desktop and they are all listed in Mov files and cannot be opened. Thanks for any advice you have to offer.
    Valerie

    You should get MPEG Streamclip as it will do exactly what you want. It is a free download:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Files designated .mov don't tell you anything about what format they are actually in, .mov is a 'container' that can hold different formats. If you open the original .mov file in QuickTime and then go Window>Show Movie Inspector, you will see what format the file is in. If these are clips from a still camera, they are probably MPEG-2.
    So you will also need Apple's MP2 playback component as Streamclip needs it for MPEG2 -> .DV conversions. It is $20, and available here: http://www.apple.com/quicktime/mpeg2/
    Download both. Open Streamclip and drag a .mov file to its window. Select the option to convert to DV. You can set it for NTSC or PAL, depending on where you live. If the .mov clip is rotated, you can correct that. The clip will save as .dv and you can just drag it into your iMovie.

  • Generating a Movie File from a List of (JPEG) Images

    Hi All!
    I was trying this example:
    Generating a Movie File from a List of (JPEG) Images
    http://java.sun.com/products/java-media/jmf/2.1.1/solutions/JpegImagesToMovie.java
    I was using the following command line with the following output:
    root - /home/robertmarkbram/java/jmf/classes
    $java JpegImagesToMovie -w 320 -h 240 -f 1\
    -o file:///home/robertmarkbram/CoolCampus/media/jpgOut.mov\
    file:///BigBrain3/pics/breakfast.jpg\
    file:///BigBrain3/pics/eating.jpg\
    file:///BigBrain3/pics/howto.jpg\
    file:///BigBrain3/pics/jupiterp_cassini_full.jpg\
    file:///BigBrain3/pics/jupiterp_cassini.jpg\
    file:///BigBrain3/pics/spocamok.jpg- create processor for the image datasource ...
    Setting the track format to: JPEG
    - create DataSink for: file:///home/robertmarkbram/CoolCampus/media/jpgOut.mov
    start processing...
    - reading image file: file:///BigBrain3/pics/breakfast.jpg
    - reading image file: file:///BigBrain3/pics/eating.jpg
    - reading image file: file:///BigBrain3/pics/howto.jpg
    - reading image file: file:///BigBrain3/pics/jupiterp_cassini_full.jpg
    - reading image file: file:///BigBrain3/pics/jupiterp_cassini.jpg
    - reading image file: file:///BigBrain3/pics/spocamok.jpg
    Done reading all images.
    java.lang.NullPointerException
    at com.sun.media.multiplexer.video.QuicktimeMux.writeVideoSampleDescription(QuicktimeMux.java:936)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeSTSD(QuicktimeMux.java:925)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeSTBL(QuicktimeMux.java:905)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeMINF(QuicktimeMux.java:806)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeMDIA(QuicktimeMux.java:727)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeTRAK(QuicktimeMux.java:644)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeMOOV(QuicktimeMux.java:582)
    at com.sun.media.multiplexer.video.QuicktimeMux.writeFooter(QuicktimeMux.java:519)
    at com.sun.media.multiplexer.BasicMux.close(BasicMux.java:142)
    at com.sun.media.BasicMuxModule.doClose(BasicMuxModule.java:172)
    at com.sun.media.PlaybackEngine.doClose(PlaybackEngine.java:872)
    at com.sun.media.BasicController.close(BasicController.java:261)
    at com.sun.media.BasicPlayer.doClose(BasicPlayer.java:229)
    at com.sun.media.BasicController.close(BasicController.java:261)
    at JpegImagesToMovie.controllerUpdate(JpegImagesToMovie.java:215)
    at com.sun.media.BasicController.dispatchEvent(BasicController.java:1254)
    at com.sun.media.SendEventQueue.processEvent(BasicController.java:1286)
    at com.sun.media.util.ThreadedEventQueue.dispatchEvents(ThreadedEventQueue.java:65)
    at com.sun.media.util.ThreadedEventQueue.run(ThreadedEventQueue.java:92)
    Can anyone tell me what this error message means?
    Thanks for any advice!
    Rob
    :)

    I think it does that for QuickTime if you don't define the lineStride value in the VideoFormat (lineStride = pixelStride * width).

  • .Mov files in CC : The File Has no Audio or Video Streams

    I recently updated premier to CC , since i have issues iimporting any .mov files at all.
    The specific ones Im trying for my current project are exports from AE , rendered lossless animation .mov , worked fine in CS6 , will play in quicktime and other generic's but always getting the The FIle Has no Audio or Video Streams message when trying to import into a project.
    Quicktime is updated so I can't understand why the won't play, is this a CC bug ?
    i go back to cs6 on my other comp they open fine...
    Ive seen a few topics on this none with a resolution and most of those where from cam's, this is an export from AE, anyone able to help this is stopping me from working atm ......
    troy

    I can verify that Apple screen recordings without audio do not import into any Adobe premeier.
    Details on screen recording from Gspot v2.70a:
    H.264
    qt  : Apple QuickTime (.MOV/QT)
    File Type: QuickTime (.MOV)
    Mime Type: video/quicktime
    Len: 1:03.083
    Frms: 1,521
    Qf: 0.153
    Frames/s: 20.000
    wx: 1280 x 800
    sar: 1.600 (8:5)
    However Apple (MAC OSX) screen recordings WITH audio will import.
    I would think this should be fixable with hotfixes...
    If you (adobe staff) have access to macbook pros 2012 or 2013 models, open quick time pro, do a screen recording, make sure no audio is recording, just your screen movements.. then export to 1080p video (mov is only option).. then on a windows PC try to import that file into adobe premiere. The file will play perfectly fine natively in windows with any player so long as a H264 decoder is available on that system... the problem here is Adobe Premiere. Not the users system.
    Edit:
    To help those with this issue.. just make sure when you render your mov that you have ANY kind of audio in it.. and just remove the audio track once imported into premiere. I know it's frustrating and you would think something as simple as not having an audio track wouldn't break premiere but alas... we have to work around the shortcomings until they decide to fix it.. just like the VFR issue in premiere.

  • Streaming .mov files through shockwave with Quicktime 7

    I'm running a site (www.soundjunction.org) that streams quicktime audio and video files embedded in a shockwave player. This worked fine with QT 6.5.2 but with the upgrades to QT7.0.x, it now sticks on the 'buffering' stage forever and never loads in the movie. The same issue occurs with OSX tiger. In certain cases, loading the page with the shockwave player (embedding QT) closes the browser window without prompt. In summary, the problem occurs with
    Win XP, IE 6, Shockwave 10, QT 7 public preview
    Win XP, IE 6, Shockwave 10, QT 7.0.4 (latest)
    Mac OSX Tiger, Safari, Shockwave 10, QT 7.0.1
    Mac OSX Tiger, Safari, Shockwave 10, QT 7.0.4 (latest)
    but not with
    Mac OSX Tiger, Safari, Shockwave 10, QT 7.0.2
    Mac OSX Tiger, Safari, Shockwave 10, QT 7.0.3
    Win XP, IE 6, Shockwave 10, QT 6.5.1
    Win XP, IE 6, Shockwave 10, QT 6.5.2
    Previous communications with Macromedia revealed that they were aware of the incompatibility and were in communication with Apple, awaiting a solution. Can anyone help?
    You can see the problem in action at
    http://www.soundjunction.org/exploringmovingaway.aspa
    http://www.soundjunction.org/dennisrollinsgettingintomusic.aspa
    Many thanks!
    Win XP P4   Windows XP Pro   Also Mac OSX Tiger

    Here's Avids answer:
    Pro50 codecs only work in Macs, so the original files need to be EXPORTED from FCP with a special codec Avid created for Mac.
    So that's that issue solved ... hopefully, let's see after the next export.
    But .mov files are still screwed up on my PC.
    Kirk - I did reboot the machine in SafeMode, reinstalled QT, but nope - version 7.2. still doesn't play any .mov files properly that are stored on my C-drive that previously were just fine.
    Thanks again.

  • Streaming video using Frontpage 2003 and Quicktime .mov files

    What is the proper way to stream video files. I created a .mov file using iLife and I use Frontpage 2003 to upload to my website.
    I read in Microsft's official book on FrontPage2003 that all I had to do was to insert a movie file into a web page, just like inserting a picture. I was also told that I do not have to have the file on a streaming server, I could just keep it on the regular web site.
    The file does download to the browser, but it does not start the video playing.
    Do I need to do something elese? Or do I have to have the file on a streaming server.
    Thanks
    George

    "Streaming" QT files requires Streaming Server software.
    Your files probably just "download" via http protocols.
    And, since the recent update to Internet Explorer for PC's, the page code syntax has changed from that used in your FrontPage files.
    Your "page code" tells the plug-in what to do with your file. If you're directly linking to QT content then it is bypassing the plug-in and your entire file must download before playback can begin.
    Some links for you:
    http://docs.info.apple.com/article.html?artnum=61011
    Explains the structure needed for embedded files.
    And now, the new news from Microsoft regarding Internet Explorer:
    http://developer.apple.com/internet/ieembedprep.html
    You need to change the "tags" to include autoplay="true" (and a few extra tags for the new M$ update).

  • Premiere CS6 won't import mov files, the message: "file has no video or audio streams" shows up instead. How can I import the files?

    Premiere CS6 won't import mov files, the message: "file has no video or audio streams" shows up instead. How can I import the files?

    MOV is a wrapper that can contain many different codecs. The message you get is indicative of a distribution codec inside the MOV wrapper. You may need to convert the material to an editable codec before importing.

  • MOV files not streaming to ATV

    I copied a few videos that we took on our itouch to my PC and they come across as MOV files.  I then added these to my itunes library. They appear in the library; however, they are not streaming to the ATV.  I started testing a few things and noticed that other formats such at MPEG-4 works fine.  I took a few of the MOV files that I imported from the itouch - converted to MPEG-4 and now it works fine streaming to the ATV.
    I would think that if videos are recorded as MOV files on the itouch that this would easily synch with the ATV.  Is this not the case?   Am I going to have to convert MOV files to MPEG-4 in order to stream to the ATV?

    They would work on the newer model as well as having the ability to airplay directly from the iPod. I have posted the compatibility for the 1st ATV
    H.264 and protected H.264 (from iTunes Store): Up to 5 Mbps, Progressive Main Profile (CAVLC) with AAC-LC audio up to 160 Kbps (maximum resolution: 1280 by 720 pixels at 24 fps, 960 by 540 pixels at 30 fps) in .m4v, .mp4, and .mov file formats
    iTunes Store purchased video: 320 by 240 pixels, 640 by 480 pixels, 720 by 480 pixels (anamorphic), or high-definition 720p
    MPEG-4: Up to 3 Mbps, Simple Profile with AAC-LC audio up to 160 Kbps (maximum resolution: 720 by 432 pixels at 30 fps) in .m4v, .mp4, and .mov file formats

  • MOV files not streaming

    I have a few MOV files in my iTunes library. Along with these MOV files are several movies purchased from iTunes. I stream my movies and music to my ATV (photos are synched so I can view thumbnails etc..)
    From my ATV, I am able to access all of the purchased movies but I can't access the MOV files - again, the MOV files are appearing under 'Movies' in iTunes and I'm able to play them from iTunes without a problem --- just not visable on my ATV 'My Movies' menu.

    do the files fall within the limits of video (below).. play in iTunes and Quicktime do not guarantee the file will play on appleTV.. appleTV has limits on files since they need to be access via streaming over wireless in many cases, so it makes sense to set some limits on files size, data rate etc..
    *Video formats supported*
    *H.264 and protected H.264 (from iTunes Store):* Up to 5 Mbps, Progressive Main Profile (CAVLC) with AAC-LC audio up to 160 Kbps (maximum resolution: 1280 by 720 pixels at 24 fps, 960 by 540 pixels at 30 fps) in .m4v, .mp4, and .mov file formats
    *iTunes Store purchased video:* 320 by 240 pixels, 640 by 480 pixels, 720 by 480 pixels (anamorphic), or high-definition 720p
    MPEG-4: Up to 3 Mbps, Simple Profile with AAC-LC audio up to 160 Kbps (maximum resolution: 720 by 432 pixels at 30 fps) in .m4v, .mp4, and .mov file formats
    http://www.apple.com/appletv/specs.html

  • Movie file in my song list?

    I have a problem with a movie file i have that shows up in my song list. Also when i shuffle my songs and it comes out i have to restart my ipod. How do I get it off my song list but still leave it on my ipod?

    Change the format from Music Video to Movies. That should remove it from any music folders you have including artists, playlists, and song lists. You can do that by right-clicking the file, clicking get info, and changing the video kind on the options tab from "music video" to "movie". Hope that works...

Maybe you are looking for

  • Release strategy for PO and RO

    Hi All My release strategy for Purchase order and Release Order is same.My release strategy has material group and PO/RO value as characteristics. What I want is that my releaase strategy for PO should be based on value whereas for RO it should be ba

  • What time is iOS 5 released

    i know that ios 5 is set to release on october 12th but what time is it avaliable that day? like 12 pacific time or what?

  • Error message linking to field

    Hi guys, I'm trying to generate an error message that links to the field when clicked on. My problem is this. This error message is for a dropdown list. When user choose a blank selection, it will generate the error message to "fill in the mandatory

  • Screen saver options

    Hi, new user here and am not impressed. Im trying and want to be part of the apple family but this is ridiculous- Ive tried all the help menus and other options to figure out on my own but am down to the option of asking the simplest questions here;

  • Webtier installation

    Hi all, I'm trying to install webtier from Fusion Apps 11.1.1.5.0 inventory on Linux. The installer exits after first checks, without any meaningful info abou the error. Logfile: ===== Checking Temp space: must be greater than 80 MB. Actual 5837 MB P