How to finish project for uploading

I edited a video in the project area, then clicked finalize and now when I try to upload to blogger or youtube it says an error has occured.
wht did I do wrong?
Is there somethingelse  I need to do to the clip to get it ready to share?
thanks

Finalizing a movie is not a step that you "must do". It is a convenience that renders the movie in all available sizes all at once, so when you go to save it to YouTube or iTunes later, it happens much quicker. If you don't need all sizes, you can just go to the Share menu and Share in the size you need.
When you Share to Youtube, you can get errors in two ways.
1) There was a problem with rendering. This should not happen if you finalized and waited until it finished (could be an hour or more)
2) There is a problem connecting to YouTube. This is usually caused by using the wrong User ID and Password for YouTube. A couple of years ago, YouTube changed the way you log in. You now usually have to use your GMail email address and password to log in to YouTube.
To see if your movie finalized correctly, try SHARE/TO iTUNES in a size you like. Then see if you see your movie in iTunes and can play it. If so, you know it rendered (finalized) OK. And it is more likely that #2 above is your issue.  However, if you get an error message when sharing to iTunes, it may indicate a different problem.
There is a more fiddly way to determine if you previous "Finalize" completed correctly. Do this only if you are comfortable navigating through a Mac's file system, because you run a risk of harming your Project if you don't do it right...
You can go to your Project in the Finder. Go to Movies/iMovie Projects/<your project name>. Right-click on the Project Name. Select Show Package Contents. Go to the Movies folder within the package. There you should see your finalized movies. Pick one and tap the space bar. It should start playing. That tells you that the Finalization worked correctly. 
If you tried the Share to iTunes suggesstion above, it would have found this copy in the Project Package and copied it to iTunes, so it should have been very quick to get to iTunes.
You could copy one of these movies in the size you want and paste it on your desktop. Then try to upload through the YouTube website.

Similar Messages

  • How to Remove Files for Upload?

    So, now that I've added files for upload, now I wish to change direction, how do I remove files that have been Added to Files for Upload to reduce clutter?

    That's exactly what I was looking for...thank you so much!!

  • How to use GUI_upload for Uploading a CSV file in Microsoft Excel.

    Hi Guys,
                  can anybody tell me how to Upload the CSV format file in Microsoft excel sheet?
    Thanks,
    Gopi.

    Hi Gopi,
    u can use GUI_UPLOAD, TEXT_CONVERT_XLS_TO_SAP.
    Please check these codes.
    Uploading data from CSV file format into internal table using GUI_UPLOAD
    REPORT zupload MESSAGE-ID bd.
    DATA: w_tab TYPE ZTEST.
    DATA: i_tab TYPE STANDARD TABLE OF ZTEST.
    DATA: v_subrc(2),
    v_recswritten(6).
    PARAMETERS: p_file(80)
    DEFAULT 'C:\Temp\ZTEST.TXT'.
    DATA: filename TYPE string,
    w_ans(1) TYPE c.
    filename = p_file.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    titlebar = 'Upload Confirmation'
    * DIAGNOSE_OBJECT = ' '
    text_question = p_file
    text_button_1 = 'Yes'(001)
    * ICON_BUTTON_1 = ' '
    text_button_2 = 'No'(002)
    * ICON_BUTTON_2 = ' '
    default_button = '2'
    * DISPLAY_CANCEL_BUTTON = 'X'
    * USERDEFINED_F1_HELP = ' '
    * START_COLUMN = 25
    * START_ROW = 6
    * POPUP_TYPE =
    * IV_QUICKINFO_BUTTON_1 = ' '
    * IV_QUICKINFO_BUTTON_2 = ' '
    IMPORTING
    answer = w_ans
    * TABLES
    * PARAMETER =
    * EXCEPTIONS
    * TEXT_NOT_FOUND = 1
    * OTHERS = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CHECK w_ans = 1.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = filename
    * FILETYPE = 'ASC
    has_field_separator = 'X'
    * HEADER_LENGTH = 0
    * READ_BY_LINE = 'X'
    * IMPORTING
    * FILELENGTH =
    * HEADER =
    TABLES
    data_tab = i_tab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    * SYST FIELDS ARE NOT SET BY THIS FUNCTION SO DISPLAY THE ERROR CODE *
    IF sy-subrc <> 0.
    v_subrc = sy-subrc.
    MESSAGE e899 WITH 'File Open Error' v_subrc.
    ENDIF.
    INSERT ZTEST FROM TABLE i_tab.
    COMMIT WORK AND WAIT.
    MESSAGE i899 WITH sy-dbcnt 'Records Written to ZTEST'.
    Uploading data from Excel file format into internal table using TEXT_CONVERT_XLS_TO_SAP
    REPORT  zupload_excel_to_itab.
    TYPE-POOLS: truxs.
    PARAMETERS: p_file TYPE  rlgrap-filename.
    TYPES: BEGIN OF t_datatab,
          col1(30)    TYPE c,
          col2(30)    TYPE c,
          col3(30)    TYPE c,
          END OF t_datatab.
    DATA: it_datatab type standard table of t_datatab,
          wa_datatab type t_datatab.
    DATA: it_raw TYPE truxs_t_text_data.
    * At selection screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          field_name = 'P_FILE'
        IMPORTING
          file_name  = p_file.
    *START-OF-SELECTION.
    START-OF-SELECTION.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
    *     I_FIELD_SEPERATOR        =
          i_line_header            =  'X'
          i_tab_raw_data           =  it_raw       " WORK TABLE
          i_filename               =  p_file
        TABLES
          i_tab_converted_data     = it_datatab[]    "ACTUAL DATA
       EXCEPTIONS
          conversion_failed        = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    * END-OF-SELECTION.
    END-OF-SELECTION.
      LOOP AT it_datatab INTO wa_datatab.
        WRITE:/ wa_datatab-col1,
                wa_datatab-col2,
                wa_datatab-col3.
      ENDLOOP.
    reward if helpful
    raam

  • How to release project for CHARM?

    Hi Experts,
    I am very new to solman and stuff. I am configuring the CHARM process for first time. So far, I have got the TMS and other domain controller related activities done from Basis. In addtion, I have also maintained systems in the transaction SCC4 with appropriate roles (Dev having Customizing Role & PRD being the Test). I also activated the integration with Change Management in SPRO.
    Later, in SOLAR_PROJECT_ADMIN I created a project of type maintenance. Added systems in the system landscape tab using the logical componenets. As I have only Two BW systems i.e. Dev & PRD, I set Dev. System = BW DEV, Test Syster = BW DEV again & Production Syster = BW PRD system. In the IMG Projects tab, I added the project and it's in GREEN state as of now.
    Now, in the Change Managment Tab, I checked the check-box - Activate Change Req. Management. Upon this I received a popup saying: Warning: Problems occurred during syunchronization of the system landscape.
    However, I still went ahead with the configuration and clicked on Create Task List. At this point, I am getting following message:
    Project is not released, hence cycle  can not be created.
    As I said, I have no expertiese in Solman so I am kinda lost here. I need smoeone to tell me if whatever configurations I have done so far are correct or something is missing? And How should I release the project so that I can create the task list.
    Please help,
    Ameya

    While activation you have recieved errors
    so goto log button next charms activation or task list tab and see for the errors occured remove it and press the refresh again
    if there are no errors then only you can create task list
    more info as you are new read this
    First steps to work with Change Request Management scenario in SAP Solution Manager 7.0
    and
    http://wiki.sdn.sap.com/wiki/display/SM/ChangeRequestManagement
    hope above helps
    regards
    prakhar

  • Show and Share: How to add thumbnail for uploaded by URL

    Hi all,
    I upload video by URL in Show and Share. Can I manually add thumbnail for video? and how to?
    Thank you very much.
    Bintasan Mokkamakkul

    As per docs, the default behavior for show and share is to assign a
    thumbnail based on the length of the video:
    Check out:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_3/showandshare/user/guide/edit-delete.html#wp1079137
    TABLE:  Please match the # for each section:
    If your video is ... 
    1. less than 3 seconds long
    2. Between 3 and 8 seconds long
    3. 8 seconds or longer
    It uses this frame for the thumbnail...
    1. 0 seconds
    2. 4 seconds
    3. 8 seconds
    If you have a video that is longer than 8 seconds, but the title shot only lasts for 5 seconds, the automatically generated thumbnail may not contain your video title. Or, if you recorded a message, the system may have captured an unflattering facial expression for the thumbnail. Use this procedure to correct the situation.
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_3/showandshare/user/guide/edit-delete.html#wp1079137
    The procedure to modify the thumbnail is listed in the link above. You
    need to go to your uploaded videos and click "Edit Video" then follow
    the instructions above to move the slider where you want the thumbnail
    to be.
    Please keep in mind that video editing is only possible for some video
    formats:
    Table 6-1 Video Format Editing Support
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_3/showandshare/user/guide/edit-delete.html#wp1080725
    I hope this helps!
    Cheers!
    T.

  • How to input Projects for Input Tax in AP Invoice

    Hi Experts,
    I am trying to maintain a Balance Sheet wherein for each account I have to state the corresponding Project Code. When creating an AP Invoice, the Input Tax Account does not automatically carries the Project Code with it. I already encode the Project Code in Row details as well as in Accounting Tab of the AP Invoice. Still, the automatic tax code does not show the Project Code in the Journal Entry Preview.
    Can you help me with this?
    Thanks in advance.
    Arlene

    hi
    check bellow query
    SELECT T1.[AcctName],(sum(T0.[Debit])-sum(T0.[Credit])) "Cumulative Balances",T0.[Project] FROM JDT1 T0  INNER JOIN OACT T1 ON T0.Account = T1.AcctCode WHERE T1.[AcctName] =[%0] AND T0.[refdate] >= [%1]  AND T0.[refdate] <= [%2] GROUP BY T0.[Project],T1.[AcctName]
    the above query output balance is not  assigned any project then open GL Account and update it

  • Fnd script for upload the ldt file

    Hi Expert,
       How to write script for upload the ldt file containing program ,value set ,lookup code and DFF ,for XXCUST schema?
    Thanks

    7f4a32e8-5494-4664-a2f3-632ede8de56c wrote:
    Hi Expert,
       How to write script for upload the ldt file containing program ,value set ,lookup code and DFF ,for XXCUST schema?
    Thanks
    FNDLOAD commands can be found in (Tips and Examples Using FNDLOAD (Doc ID 735338.1)).
    Thanks,
    Hussein

  • How can I export a finished project from iMovie when the "share" function will not respond?

    Hopefully someone might have an answer for me. I am trying to export a finished project to You Tube. However, when trying to choose the file, it does not show up in the finished project list. I have gone back to iMovie to see if I've made a mistake with finalizing it. It seems to be finalized, but I cannot share it to anything (You Tube, Facebook, iTunes). I click on share and it does not respond. I click on File, scroll down to share, it does nothing. Has anyone else had this problem? How did you reslove it?

    I experienced the same problem as mreingrover. The Share features of iMovie appear to be completely unimplemented.
    I had had MacKeeper installed for a short while on my previous Mac; never on my new MacBook Pro. I could not find any trace of it in Application Support, Launch Daemons, or LaunchAgents, in either my user Library or the root Library. But I figured maybe there was some trace somewhere that had been copied over from the old system, so I deleted iMovie and went to reinstall it from the App Store.
    Now the App Store wants $14.95 for an app that has never worked right, and which is (I think) supposed to be free with my new MacBook Pro Retina.

  • CS3 How to archive finished projects and erase all draft materials without losing final versions.

    I have two questions, both related to system management. The first is simple and the second is more complex.
    First, I hate that every time I open a Premiere Pro project I have to remember to reset the scratch disc settings because they are carried over from the previous project rather than being project-specific.
    Is there a workaround so that the scratch disc settings can be attached to each project so they don’t need to be reset each time one reopens a project?
    Second, I presently distribute my work over four (4) 1-TB drives as follows.
    Drive D contains my Premiere (prproj and related) files as well as Encore (ncor DVD/BD burn files).
    Drive E contains all captured files (transferred from tape).
    Drives F and P are scratch drives where all the preview files are stored, both audio and video.
    Presently, scratch drives F and P are full, project drive D is nearly full, and I am finished editing the projects which occupy these drives. Drive E, however, still has plenty of unused space.
    What I want to do now is to archive the finished projects, along with associated preview files, source clips, and burn files on the E drive, which has plenty of free space remaining. Then I want to delete the project and associated assets from Drive D and erase both scratch drives F & P so that I can reuse those drives for new work.
    To do that I have tried using the Project Manager to “collect files and copy to new location” to collect and copy each project to its own folder on the E drive.
    The problem is that, having done that, and removed the preview files and project files from their original locations, when attempting to open the now relocated projects from their new locations, the relocated projects continue to look for the associated preview files in the old location (drive F or P), even though all the files associated with each relocated project now reside on the same drive in the same folder. It appears that the Project Manager does not associate the preview files and source clips that it relocates with the project files that it relocates.
    Can someone explain this and how best to accomplish my goal of relocating and archiving finished projects along with their associated previews and source materials so that the originals can safely be deleted?
    Thanks.

    Is there a workaround so that the scratch disc settings can be attached to each project so they don’t need to be reset each time one reopens a project?
    Yes.  Upgrade to CS5.5.  (This feature first showed up in CS4.)
    What I want to do now is to archive the finished projects
    You can safely delete everything on the F and P drives.  Previews can simply be rebuilt.  No need to waste space trying to save them.
    Save the project files on the D drive.  Delete the media on E (you can always recapture if you need to rebuild).
    Do not use the Project Manager.  Premiere Pro is an NLE.  Use it for it's intended purpose.  Use a real file manager (Windows Explorer on the PC, Finder on the Mac) to execute file operations.

  • How to publish Captivate (swf) projects for free

    Hi Cap Users,
    This is not really a question, more of a handy tip.
    When I first started using Captivate I tried to find places where I could publish my projects for free. I've also seen lots of posts by instructional designers and students who want to get their projects 'out there' for little or no cost.
    Here's a short vid that shows you how to publish .swf projects via Weebly.com. You'll need to create a weebly website first. It's all free and the the site builder elements are drag and drop, so you can have a simple site in place within minutes.
    Weebly isn't set up for HTML5 as yet, but I'm sure that won't be far away.
    Click this link to see a demonstration - saving your Cap file, uploading and publishing it.
    Happy publishing!

    Ok, then I Publish the folio in folio producer like Public and Free and that's all, it's ok? Then when I want to sell this folio, back to the folio producer, change to Public and Minorist and in the Android Market build the in-app product, it's ok?
    PD: sorry for my english

  • How to complete FCE video for upload to youtube

    Hi Apple Community,
    Does any one know how, exactly step by step
    how to finish FCE video for SUCCESFUL upload
    to youtube? I so appreciate your help.

    Check this out.
    Note the link to supported
    formats. You probably want to give them an h.264 .mov file. If you don't have Compressor, export using QT Conversion. Or download the free MPEG Streamclip and have it do the transcode (in which case you would export from FCE as a QT Movie Current Settings).
    Good luck.
    Russ

  • How implemenataion process going for a project in an orgn?

    hi friends
    i am deva
    how implemenataion process going for a project in an orgn?

    Dear Deava,
    During an implementation project you follow 5 phase.
    1.Project preparation: In this you will know your team members and you will have  kick meeting. You will decide the time frame for the project also.
    2.Blue print: In this stage you will map the business scenarion.The client will give the requirement(AS-IS) and you will map in sap(TO-BE). If there is any development you need to do the GAP analysis.
    3.Realization/Testing:In this stage you will configure in the development server and test the configuration you have made in quality server.
    4.Final preparation: In this stage your configuration is done . You will get the sign off from project manager.
    5.Go live & Support: In this stage you will upload all your developments in the production server.Then you will golive and stay in the client place for sometime for support and solving few queries.
    The above 5 stages are followed in any project.
    If your happy with the answer award point for me
    Regards,
    R.Francis Noel Manoj

  • How do I package a finished project to a client?

    How do I package a finished project to a client.  She insisted on having three name logotypes with different effects and three monogram logotypes with different effects.  The finished name logotypes are on one artboard/file, and the finished monogram logotypes are on another artboard/file. 
    Should each logo have a separate file when I package everything up and send to her?  Thank you for your help.  I'm new at this.

    Venita,
    This is how I usually do this. I create design framed in a artboard and when I want to create a modified version of it I duplicate the artboard with the artwork next to it. You can do this by choosing Duplicate Artboard from the Artboard's panel flyout menu or by using the Artboard tool holding Alt and dragging an artboard. The currently active artboard indicated by darker outlines and also highlighted in the Artboard panel is the focus of certain input such as (Ctrl + V) pasting coordinates, saving for Web with Clip to Artboard option, and some of the zooming methods like Ctrl+0 to fit in window. You make an artboard active by selecting something in it, selecting it in the Artboard panel which has higher priority, or using the Artboard tool. When you save your document the default preview that appears in programs that can preview Illustrator files such as Bridge use the artboard with ID 1 at the top of the list in the Artboad panel where you can rearange the order by dragging the artboard items.
    Now, what I give to a client depends on how the client is advanced in using files. My prefered method for advanced clients is Save as PDF with the Illustrator default preset which saves the same thing as .ai file but has the advantage of displaying a preview of each artboard as a page using things like Windows Explorer windows. For less advance clients for ease of previewing or when comparing all versions of the design outside of Illustrator is preferable, I also can save a pdf version of the same file with each artboard being the default preview by moving it at the top of the list in the Artboad panel or a jpg file of each artboard using Save for Web.
    Hope this helps.

  • How do I create an 'upload facility" for my website using Muse.

    How do I create an 'upload facility" for my website using Muse.  We are a print company and is how we receive most of our work.
    Iain

    Hey Iggy,
    These might help:
    Muse
    http://tv.adobe.com/watch/introducing-business-catalyst/getting-started-with-business-cata lyst-and-muse-what-is-business-catalyst
    http://tv.adobe.com/watch/introducing-business-catalyst/getting-started-with-business-cata lyst-and-muse-creating-and-publishing-sites
    -Dave

  • How to schedule Job for data uploading from source to BI

    Hi to all,
    How to schedule Job for data uploading from source to BI,
    Why we required and how we do it.
    As I am fresher in BI, I need to know from bottom.
    Regards
    Pavneet Rana

    Hi.
    You can create [process chain |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502b2998-1017-2d10-1c8a-a57a35d52bc8?quicklink=index&overridelayout=true]for data loading pocess and schedule start process to any time/date etc ...
    Regadrs.

Maybe you are looking for