Flash CC error with exported mov

I'm trying to export my animation as a mov file and it does so successfuly. Then when I try to open it with Quicktime it says there is an error and can not open it. The error states "The movie can't be opened because the file is not in a format that QuickTime Player understands."
On top of that, when Adobe Media Encoder CC opens up it also states there is an error with the file.
I am exporting as a video and haven't chosen any settings that are out of the ordinary. Why is the export not working?
D

Hi Sarah,
I have just tried the Video Export of the file that you have provided vincecamuto-600x150-2.fla and it looks like it is working as expected.
I have used Flash CC 2014 and Windows 7 and QuikTime Player 7.7.2
Please let me now your Flash version and OS details if they are different from the one mentioned above.
Have posted the exported video at http://adobe.ly/1m3CYpf
Thanks!
Mohan

Similar Messages

  • Opacity problems with exported movie

    Hi all
    I'm having an issue with Motion 5. My project is 3046x1080 @ 30fps with a transparent canvas as a background and I have my timeline with about 5 clips all placed in seperate layers. All I'm trying to do is fade from one clip to the next so I first tried the 'Fade in/out' behaviour on each clip at 30 (I'm working at 30fps so this is 1 second?) and nothing appeared to happen on the canvas.  It was only once I had the fade in time up to 100 when I started to see any fading on the canvas.  I tried an export to quicktime as a test, but all the clips that had a fade in didn't fade in at all the just cut.  So, I then went in and set all the fades manually - adjusting the opacity with keyframes only to have the same result as before.
    The exported movie does retain the transparent background however - Motion just seems to be ignoring the opacity levels I've set.  The only alternative I have found is to copy all my content across to my other machine and use Motion 4 - but that cripples that machine, certainly at this resolution I"m working at! Fortunately the clip I'm working on is only 30 seconds long....
    Anyone got any ideas? I've searched the board but haven't found anything...
    Many thanks

    Thanks for the reply!  I had checked to make sure everything was lined up but I double checked and indeed the fade in/out behaviour were indeed lined up to the clip.  The export was also set to Colour + Alpha.
    Upon further testing, as I don't really want to endure working at this resolution in Motion4, I've found my error - I didn't have the premultiplied Alpha enabled - I seem to remember I had a problem with that in the past hence turning it off.
    So that appears to have solved my problem.....

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • Syntax Error with EXPORT statement in ECC 6

    Hi All,
    I have one issue with EXPORT statement syntax.
    I have declared data like below:
    DATA: BEGIN OF mem_id,
              mandt LIKE sy-mandt,
              uname LIKE sy-uname,
              modno LIKE sy-modno,
            END OF mem_id.
    export the memory id
        EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID MEM_ID.
    When I am checking the syntax error i am getting like "MEM_ID" must be a character-type field (data type C, N, D or T). by "INTERFACE". by "INTERFACE". "INTERFACE". by "INTERFACE". by "INTERFACE".
    I know this statement would be like IMPORT ITAB TO JTAB FROM MEMORY ID 'table'. So I have written like below
    EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID 'MEM_ID'. But still it is throwing an error.
    Can you please let me know how can I resolve this?
    Regards,
    Jyothi CH.

    Hi Jyothi,
    data: l_var type string.
    concatenate '6' '8' into l_var separated by space.
    export l_var to memory id 'BB'.
    Here we have to declare the type(structure) for l_var not for BB
    and in another program
    data:l_var type string.
    import l_var from memory id 'BB'.
    write : l_var.

  • How to place a Flash swf file with a movie FLV file embedded in DW

         My hair is getting shorter by the hour or maybe missing.  I have created a SWF file with Flash 8 that has an embedded FLV file that was created from a MP4 file.   The SWF file works perfectly in FLASH including my Flash nav buttons, and the movie with soundtrack and the buttons for control of volume and start stop.  Now I am ready to place it on the web using DW to make the html page.  What happens when I test the page on FireFox or IE is the background loads, the buttons load but do not work properly anymore but worse than that:  The slide show and the control buttons do not even show up. 
         I am also having trouble defining my site locally.  I select new site and tell it where every thing is but no luck. All in the same directory, right now I have a image directory but I have not used them on the page as the only image is a jpg and flv file and they are embedded in the swf file.
         I know this is 2 different programs but the Flash files need to be placed in a HTML file to be uploaded, and I have to text them first.
    HELP
    Randy

    from the Premiere Pro Help section about importing SWF files:
    " Interactive content and scripted animation are not retained. Animation defined by keyframes in the main, top-level movie is retained."

  • File Write Error upon Export Movie

    Using iMovie 9.09 under OSX 10.8.5
    My sequence of events:
    1.  Import from Canon digital video camera
    2.  Create a project from the imported clips (no edits - it is an athletic event)
    3.  Share to iDVD
    4.  In iDVD create a disk image, then exit iDVD
    5.  Back in iMovie, Share>Export Movie  (readying to upload to YouTube)
         Size to Export:  HD 720p
         Filename is unique from any other used in this sequence
    After rendering, get the following error:
    So far, my only recourse is to quit iMovie, and restart the computer.
    Any ideas?
    Thanks,
    Greg

    Using iMovie 9.09 under OSX 10.8.5
    My sequence of events:
    1.  Import from Canon digital video camera
    2.  Create a project from the imported clips (no edits - it is an athletic event)
    3.  Share to iDVD
    4.  In iDVD create a disk image, then exit iDVD
    5.  Back in iMovie, Share>Export Movie  (readying to upload to YouTube)
         Size to Export:  HD 720p
         Filename is unique from any other used in this sequence
    After rendering, get the following error:
    So far, my only recourse is to quit iMovie, and restart the computer.
    Any ideas?
    Thanks,
    Greg

  • Error with export | ORA-4063

    Hi all,
    I am facing an issue with export backup of oracle database version 10.2.0.1 on RHEL 5 server.
    export terminates with warnings and the export log shows following error:
    EXP-00008: ORACLE error 4063 encountered
    ORA-04063: package body "SYS.DBMS_CDC_UTILITY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_CDC_UTILITY"
    However, the tables get exported and this error is thrown only while exporting procedural objects and actions:
    DBA registry shows component OLAP and OLAP catalog are invalid.
    Alert log repeatedly shows the following errors:
    ORA-12012: error on auto execute of job 42568
    ORA-04063: ORA-04063: package body "SYS.DBMS_LOCK" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_LOCK"
    ORA-06512: at "EXFSYS.DBMS_RLMGR_DR", line 2907
    ORA-01403: no data found
    ORA-06512: at line 1
    Have tried reinstalling OLAP by using the following method:
    deinstall:
    SQL> conn / as sysdba
    ----> Remove OLAP Catalog
    SQL> @?/olap/admin/catnoamd.sql
    ----> Remove OLAP API
    SQL> @?/olap/admin/olapidrp.plb
    SQL> @?/olap/admin/catnoxoq.sql
    ----> Deinstall APS - OLAP AW component
    SQL> @?/olap/admin/catnoaps.sql
    ----> Recompile everything
    SQL> @?/rdbms/admin/utlrp.sql
    reinstall:
    SQL> conn /as sysdba
    SQL> @?/olap/admin/olap.sql SYSAUX TEMP;
    Still OLAP and OLAP catalog are invalid.
    There are only 6 objects invalid under sys schema(including dbms_lock package) and 4 objects invalid under
    olapsys schema.
    Is this got something to do with sequences?
    However there is no issue on the application level and no complaints from users.
    Any help would be appreciated.
    Thanks in advance!!
    Rahul Singh.

    Have you run utlirp.sql and utlrp.sql ? These MOS Docs may help
    762658.1 - How To Resolve ORA-39127 "ORA-29532: Java Call terminated" During Datapump Export
    296187.1 - How To Manually Install Oracle OLAP into a 9i, 10g or 11g database After the DB Has Been Created
    Srini

  • Trouble with exporting movie

    Hey all,
    I've started to use iMovie only few days ago on my iPhone 5C 16GB. After some time i got familliar and i used to it so i made a movie (containes many shorter movies) about 33 minutes. There is a plenty of options to share the movie, but for me would be the best solution to export it in camera roll. The problem is that I didnt have a much free space, but for 720p video was quite enough so it started exporting, it was almost done (i thought it was) and then appeared the message that there is not enough free space. I wouldnt be angry with that, but there happened something what made me mad.
    Before the exporting was my free space 3GB, after unsuccesful exporting only 689MB?!?!
    How is that possible when the video didnt export, didnt appear in camera roll? I cant find it anywhere and my memory is almost full. What could I do with that issue if I dont want to loose the project?
    I need the video to be exported but now there is no chance with so small free space. Only way to gain some space would be by deleting that partial videos which are contained in the project. If I delete them, my project would be lost.
    PLEASE HELP ME, I WOULD REALLY APPRECIATE. IT IS VERY IMPORTANT FOR ME.
    THANKS A LOT
    Lukas

    Ok I solved my problem i exported the project (i needed to lower the resolution and crop a big portion of movie clips but never minds..it worked)
    BUT...i have made another project, contained of similar movie clips and audio files than the previous, NOW i get another issue - ERROR OCCURED WHILE EXPORTING...what is please this? I ve searched the web, forums, everywhere was written only about privacy settings, which I cant check because in iOS7 there is no iMovie button in Photos privacy settings...
    I got plenty of free space now for exporting, and happens everytime neither 1080p nor 320p...still the same issue, without any explanation of problem..
    Please anybody..I am totally frustrated after so much time spent with imovie...and i like that app...but this issues make me very angry.
    THANKS TO ANY RESPONSE
    Lukas

  • X Pro and Flash Player Error with web-based PDF readbook

    Everytime I try to view a web-based PDF book (with multiple PDF files) I get an error/alert that reads:
    "To View the Flash technology content in this PDF file, please install this version of Flash Player that supports Adobe Reader and Acrobat."
    I am currently using:
    IE Explorer 9.0.8112.16421
    Adobe Reader X 10.1.7
    Adobe Acrobat X Pro 10.1.4
    Shockwave 12.0.2 Development
    I have all of the appropriate settings enabled/disabled in the browser. Before I installed Adobe Acrobat Pro the files opened perfectly in IE9. I believe, but am unsure, that I was just using Reader X at that point.
    Of note...the PDF books in question still open perfectly if I DOWNLOAD the file and open it from the desktop. The issue is when I try to view it in the browser(a setting enabled in the preferences). This is an issue because I don't have the time or space to download these files and need to view them in the browser for efficiency.

    JohnPublic wrote:
    "To View the Flash technology content in this PDF file, please install this version of Flash Player that supports Adobe Reader and Acrobat."
    You would usually get this message if you don't have the Flash Player plugin installed.  However I do not quite understand why you get that message when viewing a PDF in the browser, but not when viewing it from your local disk.

  • Need urgent help with exporting movie

    I have a simple 7-minute project on FCP 7 that consists of still images from the internet and hand drawn images with a few animated elements.
    It has only one audio track and two video tracks. I am using PAL DV size format. I am in the UK.
    I exported it using quicktime conversion with H264 compression and good quality and the final file size was 125MB.
    My urgent problem is that I need to upload this file to a university website for an online course in two days, and their file size limit is 50 MB.
    I need to make sure that the teacher can play the file, and I need to get it down to a smaller file size for uploading.
    I have tried all sorts of exporting from FCP. I tried avi, m4v (the setting said ipod and it produced the m4v file), and quicktime mov at different sizes like 1/4vga size. The best file size was 29 mb for the m4v ipod export, and 98mb for the qt mov file exported at medium quality. The avi file grew to 1.2gb!
    I don't know if the m4v file is playable on the system that the teacher uses (she is on a windows computer).
    Can anyone please give me some specific advice on how to create a smaller video file that is more universally compatible?
    I have access to all of the FCP 7 suite and the Adobe CS6 suite which includes Premiere Pro, Prelude and Adobe Media encoder, if that helps.
    Thanks a lot for any advice.

    Jonathan Rooper wrote:
    Hi Luis
    The advice you've been given is good for helping you to get a good quality video at a reasonable file size.
    But it may be worth thinking more about which format will certainly play on your teacher's PC.  The most likely player on any PC is Windows Media Player, which tens to be installed by default.
    The most likely video to be viewed on a PC is one from YouTube...  andH.264 is supported on all "modern" PCs.  QuickTime Player is free and very available.
    A disadvantage for Mac users is that yoou'll ned the Flip4Mac plugin to create WMV movies.  I think the cheapest paid version of Flip4Mac costs around £30. 
    All you need on a Mac fis the free Flip4Mac player.
    If you get that, and choose the web high I quality setting, you should have a file within 50MB that plays reliably and looks OK.  (A cheaper way of doing this, if you have access to a PC, is to use the free Windows Media Encoder).
    Best of luck
    Jonathan

  • Attempting to create an interactive map with flash - getting errors with my actionscript

    I'm currently having an issue creating a set of buttons that are supposed to turn individual layers on and off.  The layers I have are: fishing spots, facilities, trails, map elements, an aerial photo, and parking lots.  It is giving error #s 1119 and 1120.  Could anyone explain possible reasons I'm getting these errors. 
    It might be worth mentioning that I used a tutorial made with Flash CS4, but I'm writing the code in CS5.  Here is the exact code I'm using:
    spots._visible = false;
    facilities._visible = false;
    parking._visible = false;
    elements._visible = true;
    aerial._visible = false;
    trails._visible = false;
    displayedSpots._visible = false;
    displayedFacs._visible = false;
    displayedTrails._visible = false;
    displayedEles._visible = true;
    displayedAerial._visible = false;
    displayedPark._visible = false;
    fsbtn.onPress = function() {
              if (spots._visible == false) {
                        spots._visible = true;
                        displayedSpots._visible = true;
              } else {
                        spots._visible = false;
                        displayedSpots._visible = false;
    facbtn.onPress = function() {
              if (facilities._visible == false) {
                        facilities._visible = true;
                        displayedFacs._visible = true;
              } else {
                        facilities._visible = false;
                        displayedFacs._visible = false;
    trbtn.onPress = function() {
              if (trails._visible == false) {
                        trails._visible = true;
                        displayedTrails._visible = true;
              } else {
                        trails._visible = false;
                        displayedTrails._visible = false;
    mebtn.onPress = function() {
              if (elements._visible == false) {
                        elements._visible = true;
                        displayedEles._visible = true;
              } else {
                        elements._visible = false;
                        displayedEles._visible = false;
    aebtn.onPress = function() {
              if (aerial._visible == false) {
                        aerial._visible = true;
                        displayedAerial._visible = true;
              } else {
                        aerial._visible = false;
                        displayedAerial._visible = false;
    pbtn.onPress = function() {
              if (parking._visible == false) {
                        parking._visible = true;
                        displayedPark._visible = true;
              } else {
                        parking._visible = false;
                        displayedPark._visible = false;

    Only thing i see is that you are using == instead of = , Fixed Example...
    fsbtn.onPress = function() {
              if (spots._visible = false) {
                        spots._visible = true;
                        displayedSpots._visible = true;
              } else {
                        spots._visible = false;
                        displayedSpots._visible = false;
    == Is used for equality.
    = Is used for setting a value or in this case checking a value.

  • Issues with exporting movie - insufficient storage space

    Hello,
    Last night I tried to export a 50 minute movie that I created - I checked my hard disk space and I had 4.3Gb available at the time. I didnt think I would have enough space to export in 720p resolution but tried anyway. Imovie started to create the movie but stopped ~60% through stating that it had insufficient storage space to complete the export. But now, instead of having 4.3Gb available I only have 335 Mb available as I believe Imovie did not delete the unfinished file when it cancelled the export (its storage usage went from 500 mb to 4.3gb after the failed export). The issue is, I now have to way of accessing the unfinished file to delete it and do not have enough storage space to export at a lower resolution! Has anyone else run into this issue?
    Is there anyway to access the files embedded in iMovie?
    If not if I delete iMovie do my saved projects remain?
    Otherwise is there anyway to export my movie onto my computer directly?
    I unfortunately did not back up the iPad prior to the export so I cant restore it from a previous point.
    Really appreciate your help!

    Sadly you are rather stuck at this point.
    This appears to be an error in movie that does not clear the space if it is unable to finish creating a movie.
    Your 50 minute video would be about 4 gb by my estimates.
    imovie would first create this video within the app (apps are sandboxes and must create files within their own memory area).
    Once the video is made, iMovie can copy this video to the camera roll.
    The way iOS works is to avoid mixing data, thus it is a copy process.
    Which means you would have to have 8 gb of space to create your video.
    I am going to guess that iMovie correctly made the video, but now has no where to copy it.
    And rather annoyingly it holds on to the video for now.
    You need another 4 gb space to compete the export.
    As you have not enough space left on the iPad you are in a bind and there are only a couple of options left for you.
    Firstly, if you delete iMovie iOS you will lose your projects.
    I do not advise deleting iMovie.
    You cannot export the project, and iMovie iOS projects contain the source video.
    So you would need about 4gb of space to export the project.
    Also do not delete the source videos, iMovie just links to the camera roll.
    So if you delete the video from the photos app then iMovie will lose the video too.
    There is no way that is Apple sanctioned to clear the space in iMovie.
    Apple has strict rules on what we can discuss in these forums, so I cannot help or advise how to clear iMovie of the half made video.
    My best advise would be to delete another app, or files from your iPad.
    I hope you have at some point backed up your iPad to your Mac, of iCloud?
    If not then do so now.
    Then I would suggest you delete large apps to clear space.
    These can be restored later.
    Look for games or apps that save their user data online.
    I have a few Gameloft games, and they store my game data on their servers.
    This way you can restore where you were later again.
    Or you could connect to iTunes, and delete all the music off the iPad.
    THen finish exporting the video, and restore the music later.
    Have a look here to see how to use iOS to check what other apps are using space:
    http://ipadinsight.com/ipad-tips-tricks/how-to-see-how-much-space-is-being-used- by-each-of-your-apps-in-ios-5/
    Good luck, and I hope it works out for you..

  • Problem with exporting movie from FC4.5 to Quicktime

    I recently just finished a film, after completing the final renders and exporting the project to quicktime, it dropped certain parts of audio. Thinking this might have been a stupid error on my part, I opened FC4.5 and played the project. Everything played fine, none of the audio cut out? Something seems to be happening to the project during the exportation process? Has this happened to anybody and can anybody suggest a way to fix this problem.
    I have tried removing the audio tracks that disappeared and placing them again, nothing. I recompressed and still nothing, please I'm out of ideas.
    Thanks.

    New Discussions ResponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
    If we use the forums properly they will work well...
    Patrick

  • Problems with exported movies

    A project exported as swf as well as exe, results in a movie
    which freezes and hangs sometimes.
    Also pictures are not shown with there transparency.
    What can the causes for these problems?
    The software runs on an Intel-4-PC (2,5GHz) with 1GB RAM.
    Software Version: Windows XP Pro (SP2) and Captivate 3.0.0
    Thank you

    The issue seems to be related to sample rate. Because there's no 'options' screen for the Apple TV quicktime preset, there is no way to correct it on the front end that I can see yet, but in the cases I have had I was able to correct it this way:
    open the out-of-sync mp4 in Quicktime. Select 'show movie properties' from the window menu. Select the audio track and hit extract. Select Export: Audio as AIFF when the new untitled audio clip opens. Click 'Options' and change the sample rate to 32khz. after the audio clip exports, open the new exported audio clip in the quicktime player. Select all, copy, then back in your movie, select the whole movie, then pick 'Add to Selection and Scale'. You can then save the movie as .mov. I haven't tried exporting to Apple TV again, since this would typically take several hours, even though the video format should be unchanged.
    I tried to simply change the audio sample rate and save in Mpeg Streamclip, but the resulting file was invalid.

  • Logical standby error with export dump

    oracal 10g have a setup logical standby and when i am running export dump from logical i got this error.
    EXP-00008: ORACLE error 16224 encountered
    ORA-16224: Database Guard is enabled
    EXP-00000: Export terminated unsuccessfully
    can someone help me out how can it posibal to take export dump and datapump from logical standby.
    thanks

    16224, 00000, "Database Guard is enabled"
    // *Cause: Operation could not be performed because database guard is enabled
    // *Action: Verify operation is correct and disable database guard                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Why are transparent parts of ID file turning to gray in PDF?

    The transparent parts of my InDesign files are going to gray boxes (x-ray looking) around them.  I have done hundreds, if not thousands of PDF's from ID without an issue and all of a sudden this is happening. Though I have already figured out and use

  • Long list in acvitity monitor

    Hi guyz, I have noticed that my activity list is extreamly long. I am worried if something is wrong. Could you guyz tell if those activities are normal ones or some trash? kernel_task 1,5 33,09 96 307 0 root 760,9 MB 0 configd 0,0 1,33 6 0 18 root 2,

  • Camera Raw 7 CS6 adjustments slow to operate.

    I have updated to Photoshop CS6 and I'm having a problem with camera raw adjustments. When loading a batch of images into camera raw all is fine then after a few images have been adjusted everything slows down. Adjustment controls take 1-3 seconds to

  • Please Help...any suggestions please!

    I am not extremely computer savvy, so bear with me as I try to explain this as best I can. I am using a 2007 iMac, running Lion (not Mountain Lion, just regular Lion). In May of 2012 I had the hard drive replaced at the Apple store. It was running gr

  • Initiate Std ESS Application for Selected PERNR

    We have a requirement to call standard ESS address maintenance java webdynpro application in our custom abap webdynpro application for a PERNR which is different than the login user. We are able to launch this application using following code. Naviga