Can't Render Video Hangs on the Initializing Video Export Progress bar

When rendering a video I never get past the Initializing Video Export Progress bar.
Running windows 8 64bit, Photoshop CC.
I have Windows CS4, Lightroom 4, LIghtroom 5 and Premier Elements installed. I have no problem exporting video from lightroom or Premier Elements

I am trying to process a move clip of various types. I don’t even get to the dialogue that presents the parameter entry. I’ve tried .mp4,mts,3gp,f4v & m2t. I don't even have any changes applied to the clip.

Similar Messages

  • After updating to Maverick, Photoshop cs6 is freezing up repetitively. The "initializing text tool" progress bar seems to be popping up out of nowhere. Does anybody have any ideas about why this is happening?

    After updating to Maverick, Photoshop cs6 is freezing up repetitively. Does anybody have any ideas about why this is happening?

    After updating to Maverick, Photoshop cs6 is freezing up repetitively. Does anybody have any ideas about why this is happening?

  • What's with the 12 hour Export progress bar?

    That's what it says, and that's after two hours of trying to encode a 20 minute clip using Export to QuickTime Conversion. It's 11% done. At this rate, it should be ready after midnight, EST. This can't be normal, or is it?
    I did increase the bit rate and the dimensions, but those were the recommendations of the web viewer page (ExposureRoom) which I intend to upload the file to.
    Is there an easier to get a web file with decent size and resolution?

    Yeah, I think about faster, newer Macs as well, but you know what? In OS 9 the NLE I use (not FCE) has an encoder called Cleaner EZ - now out of business and support and updates - that gives me a compressed file in about 35 mins. It's fine for just putting something up that's casual, but I need a file that's sharp, since there's text in a PowerPoint presentation that people have to read. That's why I thought FCE/QuickTime would do the job.
    Maybe it will in the end, but at present, I'm looking at 17 hours at 15% - something's amiss.,,in fact, it's absurd..would Apple make a product that took till next week to render files? And this 2003 MDD isn't all that old, really. (And I can't afford a new Pro either). I don't think its the computer. I also tried this footage in Compressor.... an MPEG 4 fast encode - and it split the video and audio into two files How am I supposed to get that up on the Web? A second try with FCE at normal settings for QT conversion only gave me a 56 MB file - looked awful.
    Also, I should add that my original footage is SD. Generally that comes off fine when compressed from the 4.4 GB for the 20 mins. down to about 500MB, or even less. What I'm working with is a self-contained movie at the orginal size, of4.4 GB.
    Any help appreciated,
    thanks,
    k.

  • Youtube videos I placed in a site made in Muse, don't have sound and don't auto play in my Android phone. Can anyone tell me why? The same video has no problems when I watch it at the youtube site on my phone. It has sound on an iphone, but doe

    Hello. The Youtube videos I placed in a site made in Muse, don't have sound and don't auto play in my Android phone. Can anyone tell me why? The same video has no problems when I watch it at the youtube site on my phone. It has sound on an iphone, but doesn't auto play either. Thanks!

    Hi Mariana,
    Please make sure you have the autoplay checkbox selected from the fly-out options:
    Regards,
    Akshay

  • My ipad2 is only allowing me to email 30 sec clips of a video that I made which is saved in Photos on my iPad2. How can I get it to email the entire video?

    My iPad2 is only allowing me to email 30 sec clips of a video that I made which is saved in Photos on my iPad2. How can I get it to email the entire video?

    It is most likely a size issue. I have a 3 minute video that's almost 200 megs. If you're just trying to show it, you might consider youtube. if you're wanting to upload/share it then you can try things like Dropbox or other onlilne file sharing programs.

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • I have a MacBook Pro (Retina) and a Sony HandyCam DCR-HC48 video Camera. The Sony only exports video via Firewire, which is not available on the Mac. Is there a firewire to USB or to HDMI adapter?

    I have a MacBook Pro (Retina) and a Sony HandyCam DCR-HC48 video Camera. The Sony only exports video via Firewire, which is not available on the Mac. Is there a firewire to USB or to HDMI adapter?

    tyler57,
    it would be better to direct that question to Gary Loftis, since my MacBook Pro doesn’t have a Thunderbolt port.

  • HT4623 My iphone is frozen with the apple icon and progress bar at 5% cannot update

    My iphone4 is frozen with the apple icon and progress bar at 5% cannot update

    Same issues here.
    iPhone 5 was fine until I restarted the device... now the screen flickers on and off (with the white Apple logo
    and frozen progress bar overlayed on the screen).
    When I try to restore, I get a "-1" error.
    Well I just looked over at the screen, and everything is now fine. No flickering, no logo... the screen looks normal.
    Hmmm...

  • Unable to publish projects with inserted video - error message The Flash video can not be loaded

    I've created a project in Captivate 6 with two slides that have inserted videos in them
    Both the videos were created in Captivate 6 by publishing those projects as mp4 videos
    They play fine in the previews but when publishing I get the error saying the Flash video can not be loaded for both of those slides and in the output files the area for the video is blank.
    I have checked that the videos are not open anywhere else as I saw on a previous post this was the issue but the only place they are in use is in the project I am trying to publish.
    Below are my settings and the error message
    Any suggestions would be greatly appreciated.

    Your screenshot indicates you are publishing to a folder on a network drive.
    Have you:
    Verified whether or not the video file exists at the published folder location? (It should ideally be sitting in the same folder as the SWF that calls it.)
    Verified that the folder location is set up as a trusted location in your Flash Global Security settings?

  • How do I add my video files to the "home videos" folder on itunes?

    Sorry, I'm relatively new at this, I'm trying to add my family videos to my itunes "home videos" in itunes but I can't seem to bring them into my library.  ideas?

    make sure they are MP4 or MOV files, and simply drag them into the library window of iTunes.

  • The quality of the video decreases when the movie is exported

    I am creating a video series for a product that is about to launch.  The video was recorded on an iPad.  When I exported the finished video, the color quality went way down.  When I watch the footage in iMovie, the video clips and the .jpeg slides that were created in Photoshop look great, very sharp.  When I watch the exported movie in iTunes, the color quality is terrible.  the picture becomes blurry.  Red is a main color of the movie, now it looks very pale and it lost it's sharpness.
    How can I improve this?
    I did also export it as a Quicktime MP4, and the quality was a bit better.  Still not good enough to launch the product.
    Also, I am working with iMovie '08 on my iMac running on OS X 10.6.8.  Is there any upgrade that I can get to enhance this problem?
    Thanks

    There are a couple of issues.
    First: The Aperture images used in iDVD are the Aperture PREVIEW images; you need to go into Apperture's preferences and increase the size of the preview images (Preference>Previews).  A better solution (in my opinion) is to actually export the image from Aperture at a reasonable size (for NTSC, something like 854x480; for PAL, 1024x576) to a folder on your desktop and use THOSE exported images..  Note that going to larger sizes won't give better quality - and may, in fact, slightly reduce the quality because of the Quicktime interpolation that will be required in iDVD.
    Second:  DVDs are low resolution devices (like 640x480 pixels for NTSC) and can not maintain small type.  See http://homepage.mac.com/prof_pixel/text_test_iLife09.html for an experiment I did a couple of years ago for some type size examples.

  • The "Buy Video" works.  The "Deliver Video"...not so much.

    So I thought I'd try out the new video buying thing by picking up the "Orientation" episode of "Lost" that I missed last week. iTunes accepted my purchase request quite smoothly, but while downloading it gave me an "unknown error" message and suggested I "Check for Purchases" from the Advanced menu later on.
    At first, "Check for Purchases" gave me a similar "unknown error" message, but now it's telling me that all my purchases have been downloaded. Unfortunately, I have no "Lost" video in my library.
    So far, I'd have to say I'm unhappy.

    I had exactly the same problem with downloading one of the pixar shorts (I wanted to check out the Video quality). Purchase fine, download not so fine... and after a few re tries purchase no longer exists (even though music store insists I bought it). Perhaps the apple boys and girls need to spend less time high fiving over how much smaller they made their gismos with big Steve J. and spend more time testing out whether the software they release is globally compatible before taking it out of beta. Likelihood of future video purchases? = forecast is bleak

  • Why the Q, Not a Progress Bar?

    I have a page-o-Qs for the Quicktime movies on my iWeb page. Yes, the movies are a bit over 12MBs, but that's because I want them to retain quality. I am not willing to showcase pixelated junk.
    The trade-off seems to be that my Movies page is a page full of the Quicktime symbols -- a sure turn-off. What I want my visitors to see is a box with a progress bar showing that the movie is loading.
    Out of the question alternatives: Links to YouTube or Vimeo. I want these to live on my website only.
    My Thinking: Create a page per movie? In that case, I'd need to nest some movies. I will try that while waiting for a reply.
    Thanks in Advance!

    In case you're not aware of +.Mac Web Gallery+ as an alternative...
    You could publish your movies (via iMovie '08) to a .Mac Web Gallery and make a simple hyperlink to it from your web site. Here's info about .Mac Web Gallery:
    Or you could pseudo embed a .Mac Web Gallery into your site. Here's a video tutorial briefly showing that about half-way through:
    And to really embed a .Mac Web Gallery into a web page, use iWeb 2's HTML Snippet window:
    http://www.macosxhints.com/article.php?story=2007111620013523&mode=print

  • HT1379 i tried to update and there was an error, i tried again. when i tried to start, i get the chime and a progress bar that goes about 25% then disappears and the computer turns off. nothing works. it does this every time i try to start

    i just received a mac book pro from my dad. while trying to get used to it i tried to upgrade the os which failed because of an error. i tried again. when i tried to start later, i get a chime, and progress bar, and a spinning wheel. after 1 minute the bar is only progressed 25% then it disappears and the screen goes black. none of the keys work. I tried to re boot and the same thing happens. what do i do?

    If it's new and you don't have anything on it yet, you can reinstall the OS from scratch. You don't say what OS or model, but try booting while holding down the Command and R keys. If you get the recovery partition, use Disk Utility to reformat the disk then reinstall.
    This will wipe out everything on the drive though.

  • HT201269 my 5s broke so i got a new one and the info isnt transfering the phone just shows the apple and a progress bar but the bar isnt moving what so ever

    phone wont progress from icloud transfer

    Hey there ddjild,
    It sounds like you are restoring your previous phones backup to your new one, but the progress bar appears to be stuck. According to this article:
    iOS: Apple logo with progress bar after updating or restoring from backup
    http://support.apple.com/kb/TS3681
    the process can take from several minutes to an hour to complete. The amount of time depends on the number of files on the device and whether you're erasing, updating, or upgrading your iOS.
    If the device has stil not finished the process, I would recommend resetting the device with the following article:
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    If that does not get the phone booted back to the Lock Screen so you can get to your Home Screen, I would next try putting the device into recovery mode and attempting another restore from that backup:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

Maybe you are looking for