Please check my workflow: mp4 to FCP via streamclip

Hi all -
I'm hoping to edit video shot on a Sony Bloggie (MHS-TS20) in FCP 5.0.4.
The Bloggie footage is .mp4 with h264 compression, 1920x1080, 29.97 fps, square pixels, upper field dominance, at 1.2 MB/sec.
After several hours of forum research and trial/error, I'm pretty sure I'm on the right track. I'm converting using MPEG Streamclip (MPSC) via the Export to Quicktime command. I am using FCP 5.0.4, however, so I do not have the option to export with a ProRes codec, which seems to be the preference for those using FCP 6 or 7.
I believe my best option, therefore, is APPLE DV/DVCPRO-NTSC, selecting 1920x1080 (unscaled), 29.97 fps, with interlacing deselected. I have exported with both upper and lower dominant. (MPSC says to use upper for all codecs except DV, but even when I select lower, FCP tells me that the dominance of the file is upper.) The exported files are 3.6MB/sec.
The exported files import to FCP and are editable, but require rendering even when I set the sequence settings to the exact specifications of the file. So my first question is: Is there any (good) way to convert the files so that they are editable in FCP 5 without having to render them first? (I can achieve this by converting with an HDV codec, but my understanding is that the GOP compression makes this undesirable.)
A second, related question is: What is my best choice of output format for the edited sequence if I intend to post the movie to Vimeo and otherwise distribute online?
thanks
Rich

If 11 seconds of video takes 7 minutes you are doing something wrong.
My 3 year old iMac (see specs below) takes about 3 times real time, which would be about half a minute for an 11 second clip.
When you restrict the data rate you are making smaller file sizes. Half the rate equals a file half the size.
This can be important when you are posting on the web as many people have slow broadband speeds which cannot cope properly with high data rates/large file sizes.
Still images only require a tiny data rate as nothing changes from one frame to another.
The faster the movement, the more changes there are from frame to frame and this requires a fast data rate or the video will be jerky, blocky (showing loads of moving pixels) and generally unwatchable.
To see the effect, get a clip with movement and encode it at 1,000kbps to see how bad it is.
The size of the original video frame is also vital.
A 1920x1080 frame has around 4 times as many pixels as a 720x576 so it needs a data rate 4 times faster.
Conversely, if 10,000kbps is good for hi-def , a standard def video would only require 2,500kbps.
1280 has about half the pixels of 1080 so you can use a slower data rate and end up with half-size files, which as mentioned above, can be important when uploading or viewing on the internet.
AAC audio is more compressed than the standard PCM so once again it helps to keep file sizes/data rates down.

Similar Messages

  • Can someone check my workflow for video editing?

    I have a question about my workflow with my Adobe Products.  I'm hoping someone can check my workflow.
    I feel like I understand most of this process but I have a few questions listed below.
    If someone could please read and tell me where I might be able to speed up my workflow I would be appreciative.
    Any help is appreciated!!!!!!!!!
    Questions-
    • Why do my exports take so long with Premiere and Media Encoder?
    • Why does Premier take anywhere from 5-10 minutes to fully load my projects?
    • Why does Premier take so long to load my previously rendered preview files?
    • Are my settings OK with Media Encoder?
    • Why can't I get Media Encoder to export higher than a resolution of 786x524 for MP4?
    Computer Specs:
    MacPro, 2.8 Quad Core, 10GB RAM, ATI Radeaon HD 5770 1024MB, Mac OSX Mavericks 10.9.5
    Software: Using Adobe CS 6 software,
    A typical project for me:
    Resolution 1000 x 563px, 10 minutes long, to be played/viewed on the Web.
    My workflow and settings in more detail:
    • I usually start in After Effects then move the AE comps into Premiere and edit with many other clips, then export to ProRes, finally I compress that ProRes file (Adobe Media Encoder) to a variety of necessary formats.
    I start with After Effects and create about 20 or 30 projects, each is anywhere from 5 seconds to 30 seconds long.
    I start a new Premier Project (Preview Files set to QT, H.264, 1000x563px) and import the AE comps directly into Premiere.Premiere has to render my AE comps but I like the flexibility of being able to "go-back" and alter my AE file, it auto updates in Premiere
    I edit all my clips in Premiere, my entire timeline is rendered and has the Green Line.Anytime I close my project and reopen it. Premiere takes about 5-10 minutes to load the project.  Premiere initially opens quickly but takes a long time to link up all the rendered preview files.  This seems way too long
    Upon finalizing my project in Premiere I export out to ProRes 422.
    Settings For this is: Export Video, Same Resolution as project, Quality 100%, 30fps, Progressive, Square Pix, 24bit, Use Max Render Quality, Use Frame Blending.
    For my 10 minute animation this takes about 45 minutes. I feel like that's OK.  My AE clips can be a bit heavy with stills, particles, effete and etc
    This results in about a 11GB ProRes file.  Does that sound right?
    I now have a fantastic ProRes  copy of my hard earned work.... but I need to encode it to get it on the web, to clients, to friends, to the Universe.
    I import this file into Adobe Media Encoder.  I need to get this into 3 different formats, .H264, FLV and .MP4.  This processes usually take about 12 hrs for me.  Seems too long.
    MP4 settings: Multiplexer MP4/ Standard, Dimensions I can't get them above 786x524 this is frustrating, Level: Advanced Level 5, VBR 1pass 1,500
    FLV Settings: Format FLV, Dimensions 1000x563, VBR 2 pass, Bitrate 1,200, default target rates and Key Frame
    h.264 settings: Codec H.264, Dimensions 1000x563, 30fps, Progressive, Square Pix, Optimized Stills, Bit Rate 1,500
    That's about it.

    You're missing the JSTL JAR's in the classpath.

  • ECMA script for checking active workflows for an list item

    Hi i am having more than 1 workflow associated with the list if there is any workflow that is active for an item then i need to prevent starting another workflow for the same item. I am using the following code to achieve the same. Can anyone please provide
    me the ECMA object model equivalent for achieving the same.
        //Check for any active workflows for the document
            private void CheckForActiveWorkflows()
                // Parameters 'List' and 'ID' will be null for site workflows.
                if (!String.IsNullOrEmpty(Request.Params["List"]) && !String.IsNullOrEmpty(Request.Params["ID"]))
                    this.workflowList = this.Web.Lists[new Guid(Request.Params["List"])];
                    this.workflowListItem = this.workflowList.GetItemById(Convert.ToInt32(Request.Params["ID"]));
                SPWorkflowManager manager = this.Site.WorkflowManager;
                SPWorkflowCollection workflowCollection = manager.GetItemActiveWorkflows(this.workflowListItem);
                if (workflowCollection.Count > 0)
                    SPUtility.TransferToErrorPage("An workflow is already running for the document. Kindly complete it before starting a new workflow");
            }

    Hi,
    According to your post, my understanding is that you wanted to use ECMA script to check active workflows for an list item.
    You can use the Workflow web service "/_vti_bin/workflow.asmx"
    - GetWorkflowDataForItem operation in particular.
    Here is a great blog for you to take a look at:
    http://jamestsai.net/Blog/post/Using-JavaScript-to-check-SharePoint-list-item-workflow-status-via-Web-Service.aspx
    In addition, you can use
    SPServices. For more information, please refer to:
    http://sharepoint.stackexchange.com/questions/72962/is-there-a-way-to-check-if-a-workflow-is-completed-using-javascript
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • On iTunes while downloading a movie it say error please check that the connection to the network is active and try again what does this mean i have an internet connection !!!

    Help
    I dont understand when i download a movie or tv series on my mac book air i get this error message after buying it! its iTunes while downloading a movie it say error please check that the connection to the network is active and try again what does this mean i have an internet connection !!!

    Hello.
    Certain types of software can affect the way a computer sends and receives information from the Internet. This article may help you resolve the issue:
    Information about error -50 and downloading videos
    http://support.apple.com/kb/TS1583
    If it did not work, contact iTunes Store via (http://www.apple.com/support/itunes/store/) and/or Apple Tech Support via 1-800-275-2273.

  • Could not read from the source. Please check if it has moved or been deleted

    hi all,
    when i try to render a afx project from media encoder i get the following message
    "Could not read from the source. Please check if it has moved or been deleted"
    i've read on the forum that this is due to an old installation of Premiere.
    I'm using a brand new computer. the only software installed is my cs5 master collection and the updates from adobe website.
    win7 pro
    i7
    16 gig ram
    cheers
    s

    Hello, this is terrible problem, which i found in CS 6 softwares ...
    solution i found only working, is uninstall and reinstall full package.. but it is not all,
    you need to do BRAND NEW admin account in windows, and install it there.
    that means, i could not export after repair from encoder in my original account never more (!!)   .. this is really terrible way how to repair this issue, because :
    1.by reinstalling of software, client WASTE HIS TIME
    2.by necessity to begin work in another windows profile you again WASTE YOUR TIME because of learning and migrating all other profile modifications, which i see really unaccpetable. Adobe means, this solution of repair is ok, and they did not do till today any steps of creating some "clever" solution.
    I ask everybody, who will meet this issue in future, guys, please, complain about this situation, give "BUG Report" to them, and write "feature request" to them , in the way of creating some repair tool, which check actual  "broken" connections between encoder and premiere, which refuses to "take material" from it and encode, and REPAIR it automatically..  
       I am not IT, but ..does it seems so hard to create this ? Adobe IT developers should know their systems, and should create such utility tool really easy.
    Steps to reproduce bug:
    1. i export anything by button "queue" from premiere to Encoder
    2. Encoder will start encoding
    3. Encoder does not show the window of media encoding (down left )
    Results: sound of sheep occur,
    in encoding error file is this reason of canceling the encoding :
    01/02/2014 10:10:48 AM : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    History of this problem and detailed description, HOW i did "repair" this. With wasting of app 2,5 days of my working time :
    1. after repairing "error 5" problem , i solved it by reinstalling the suite from the new admin user profile (profile B) . 
    I continued my work on my normal working windows profile . (profile A)
    Every cooperation (AE+Pr, export media via "queue" to Encoder) was working fine . . .
    2. suddenly it stop working (without knowing any possible reason - i did not do installations )
    and showed in error export log file :
    "Could not read from the source. Please check if it has moved or been deleted."
    3.repair via procedure(procedure "a"):
    i did this procedure on the profile B (profile from last time installation of repairing problem error 5)
    I did these steps :
    a-uninstall master coll suite
    b-i used Adobe cleaner tool (remove ALL)
    c-removed raw directories in locations
    •C:\Program Files\Adobe
    •C:\Program Files(x86)\Adobe
    •C:\Program Files\Common Files\Adobe
    •C:\Program Files(x86)\Common Files\Adobe
    •C:\ProgramData\Adobe
    d-removed these links from registry file
    •HKEY_LOCAL_MACHINE\SOFTWARE\Adobe
    •HKEY_CURRENT_USER\Software\Adobe
    •HKEY_LOCAL_MACH INE\SOFTWARE\Wow6432Node\Adobe
    •HKEY_CURRENT_USER \Software\Wow6432Node\Adobe
    e-restarted the PC
    f- newly installed the Master Coll CS6
    g-update the software
    result of repair of "3" : problem still exists
    4.Ok i find out after coordination with support, it should have been created  ANOTHER NEW admin account.
    4a:so i did the same procedure (uninstalling) in profile B
    4b: and then i created brand new admin profile (profile C)for INSTALLATION of software
    4c: restarted the pc (and did not updated it yet)
    result :
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile C) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile B) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile A) : export DOES NOT WORK ! ! !
    (in profile A, is possible to export some raw video material in encoder which is imported to it via "drag and drop)
    problem i see:, i have my basic profile A, which i am interested to work, because of all my directory modifications are in there..
    this issue should be some "broken" connections between encoder and premiere, which refuses to "take material" from it and encode.
    what i expect :
    to get from Adobe some repair tool, which automatically checks these connections and repair if necessary, without necessity of founding the new profile and reinstallation of whole software.. this is madness !
    what i do NOT expect from Adobe:
    to get from Adobe advice of kind : you have to reinstall full software in new admin profile. sorry , we do not know the solution, because we do not know, how do behave our software.

  • HT5622 When trying to sign in to Face Time, I continually get Face Time Activation "Could not sign in.  Please check your network connection and try again"  I have reset my Apple ID and my Password and I am successfully logging into Safari.  What am I doi

    When trying to sign in to Face Time, I continually get "Face time Activation"  "Could not sign in.  Please check your network connection and try again".  I am able to access the internet via Safari, so my network connection seems to be working.  What am I doing wrong, and how can I access Face Time?

    Hey sklingen,
    Thanks for the question. I understand you are experiencing issues signing into FAceTime. The following article may help to resolve your issue:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    You may also want to reset your network settings:
    Settings > General > Reset > Reset Network Settings.
    Note: this will delete any network related settings (saved Wi-Fi passwords, etc), it will not erase any content from your device.
    Thanks,
    Matt M.

  • Custom Approval Screen required for workflow to be executed via CRM Web UI

    My requirement is to create a custom approval screen for workflow. I am Not aware as to how to create a custom approval screen for workflow that could view via CRM Web UI and Execute the workitem as well.
    Experts please help me with the creation of a task with custom approval screen.

    Hi Surjith, thanks for your answer but is not the right one.
    This is an standard method and is working fine, I think the problems must be in some setup I have to do but I'm missing.
    Thanks a lot.
    Regards
    Felipe

  • IMessage waiting for activation: could not sign in. Please check your network connection and try again

    My iphone 5 randomly began restarting regularly. Since when it has been on my iMessage is unavalibale, when I go on the settings it says waiting for activation when I try to activate with my apple id it says 'could not sign in. Please check your network settings an try again' this is also happening with face time how can I fix this?

    Try backing up then restoring your device on iTunes via your computer, a few other with the same issue have done this and it has fixed the problem for them so it might be worth a shot :)

  • My phone is miss please check the imei for me thanks

    my phone is miss please check the ime for me thanks.

    Apple does not track phones.
    Contact law enforcement if you believe the device has been stolen.
    If it is merely lost, start looking for it.
    If the "Find My iPhone" feature had been enabled prior to to losing the device, it would be trackable via www.icloud.com

  • Phase/operation  in process order 1000028 does not exist (please check entr

    Dear All
    Kindly help me out in the following scenario
    I am entering confirmation through COR6N, after selecting process order no. system is giving this error when i click on actual data. However there is only one phase and one operation in master recipe. Furthermore earlier I ran MRP, generated capacity requirements, converted planned order into process order, dispatched process order via CM22-leveling and now i am trying to enter phase confirmation.
    waiting for your response..
    Regards
    Navaid

    Hi,
    Please check your operation/phase control key in your recipe (C202), may be it will be PI07 (no confirmation).
    If yes, you can enter the phase number manually in COR6N
    Thanks,
    JK

  • Failed to update please check your internet connection and try again later

    every time I try to run a program that I have downloaded (like Trend Micro) or update my Comodo Internet security I get an error message failed to update please check your internet connection and try again later and I am connected to the internet I've closed Firefox and reopened and it still does it
    == This happened ==
    Every time Firefox opened
    == this has been going on for several months

    I was unable to connect to internet via any app. I have now turned my phone off and on again and all seems fine.
    Thanks for your help.

  • We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us. iPhone 4s.

    Hi everyone! I have iphone 4s, which was bought about 6 mounts later and has serial number C2*******TD6 and IMEI ****. When i try to check warranty on the page https://selfsolve.apple.com/wcResults.do i see
    We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us.
    And if i try to enter IMEI here i see
    Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please contact us.
    Does it means, that I was bought a non exist iPhone? Or it was refurbished? I need an official answer to take them to seller because I was bought iPhone as a new.
    Thank you.
    <Edited By Host>

    Not from Apple reseller( Im apologize, that you right) Seconв question: how can i contact apple via email to get an official answer?

  • When i try to sign onto I message I get the edit could not sign in. Please check yor network connection and try again.  I have a network connect for the internet and i can access the internet

    when i try to sign on to to I message I get the error message. IMESsage activation, could not sign in. Please check your network connection and try again.  I have a network connection and can access the internet.  what do i need to do?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • IPhone 4 - "could not connect to facebook - unable to connect to facebook. Please check your internet connection and try again" Message. Please Help?

    I keep receiving this message when trying to connect to facebook on my iPhone "could not connect to facebook - unable to connect to facebook. Please check your internet connection and try again" Could someone please help me?

    I was unable to connect to internet via any app. I have now turned my phone off and on again and all seems fine.
    Thanks for your help.

  • Can not set up iMessage and face time. I get third message whenever I try to sign in. "Please check your network connection and try again ". Can someone help me. I'm very frustrated.

    Having a problem setting up face time and iMessage o iPad. . Keep getting message "could not sign in. Please check your network connection and try again". Please help

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

Maybe you are looking for

  • Changing the IP Address manually for Laserjet 2100TN

    Hi there-- We recently updated all the IP addresses for our LAN to facilitate the set-up of a VPN. Due to problems arising from DHCP address assignment in the past, we maintain addresses manually on the network. Unfortunately this has led to a proble

  • Iphone 3gs shuts down & reboots on its own.

    The 2 yr old iphone 3gs shuts down on its own and the silver apple icon pops up ~ the phone boots itself up. This has been happening more frequently, since Dec 2010. I could be on the internet, or using any app and it does this. A couple times I had

  • How to generate .PRN file from a ReportDocument object in Crystal Reports 10.

    Hi, I have reports created in Crystal 10 version. From the VB .Net code I am able to load the report to ReportDocument object and able to print it to the local printer. Now I need to generate .PRN file of the report for faxing purpose. Can anyone hel

  • Unable to set up video for editing

    I am a novice and am using the trial version of Premiere Elements 8.  I have gone through the Using Adobe Premiere Elements 8 product support quite a few times over the past several days and am not able to figure out how to set up videos for editing.

  • Hide zero rows

    Hi all, Need to hide all rows from 114 to say 500 where there the sum is zero in column D. Note any blank rows should remain unhidden. Thanks,  - Mike