Ideas what went wrong?

I just did some DV shooting, and the footage came out very underexposed. I know that the scope read from 0-80, and both during recording and playback the shots all looked fine.
Is there some exposure-related camera setting that isn't reflected in the preview monitor and on the scopes?

My best bet is that the Field Monitor was not properly calibrated, so it was showing the video brighter than it actually was. It's essential to calibrate the Field Mon. at the start of a shoot and whenever viewing conditions for the computer's display change.
To answer your question more directly, I know of no way to adjust an exposure-related setting on the camera such that you won't see the results in OnLocation.
Did you check the Histogram as well as the Waveform Monitor? The histogram can provide a better sense of the overall brightness of a scene.

Similar Messages

  • Tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    I tried connecting to iTunes and neither the PC nor iTunes recognizes the device. I went through all the troubleshooting on the Apple website for this issue and nothing worked. I've reinstalled iTunes, the driver, everything and still can't get either the PC or iTunes to recognize the phone.  I don't know what else to do :-( any help or suggestions are highly appreciated!
    I would hate to have lost all my info, especially contacts and calendar items since I have no idea what was backed up prior to the phone getting locked on this screen. I've been told that my only option is to go to the phone carrier and they will reset it for me, but that means it will wipe out all the info.
    I hope someone has a fix other than that one.

  • All of a sudden I can't print anything on my macbook.  I am directly connected to a printer where i had printed before now if I hit print it just gives me blank pages with websites header? any ideas what went wrong?

    I just started having issues printing with my macbook when before I had no problem.  same printer, nothing has changed. when I try to print it just prints me blank pages with internet headers even WHEN i am not printing off the internet, simply pdf documents.  any idea what I am doing wrong or what changed?

    Hi evelia,
    Welcome to the Support Communities!
    The first thing I would suggest is to shut down your computer and turn off your printer.  Then do the reverse -- turn the printer on first, then your computer.  If the issue still persists:
    Check to make sure there are no jobs waiting to be printed. (Apple Menu > System Preferences > Printers & Scanners)
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    If all else fails, reset the printing system and install the printer again:
    OS X Mavericks: Reset the printing system
    http://support.apple.com/kb/PH14141
    I hope this information helps ....
    - Judy

  • Do you have any idea what went wrong?

    Do I have to look for the problem in the hardware or software? Any ideas where to look, and what could have happened?

    The downside of free antivirus\antimalware and antiadware utilities is that you get what you pay for.
    If you click on the wrong thing while online they don't provide enough protection.
    That is why I use ESET Smartsuite, McAfee and Norton internet suite on the various desktop PCs, notebook and tablet PC I have at home.
    The window you showed looks like Windows 8 or 8.1.
    I suggest using Windows Refresh to return your notebook to the state it was in. Choose the Refresh version that does not affect your files.
    Everything you need to know about Windows Refresh
    http://www.howtogeek.com/132428/everything-you-need-to-know-about-refreshing-and-resetting-your-wind...
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Help!! No idea what went wrong..

    Hi,
    I notice a funny error while writing my program. I'm trying to get my program to display whatever is in my database and it seems to have an error call java.lang.classCastException. It points to the method javax.swing.Table.DefaultTableModel.getValueAt(DefaultTableModel.java :617). it has alot more stuff which i think i can say its trying to Buffer the table (from they paint,prepareRender etc... stuff) .
    I can roughly say the error was from this area
    ResultSet r=stmt.executeQuery("SELECT MID,Contact,Prefix,Reason,RTime FROM IncommingTable WHERE MID>"+index+"");
                   while(r.next()){
                        index=r.getInt(1);
                        String contact=r.getString(2);
                        String prefix=r.getString(3);
                        String reason=r.getString(4);
                        String rtime=r.getString(5);
                        System.out.println("Contact is "+contact);
                        System.out.println("Prefix is "+prefix);
                        System.out.println("reason is "+reason);
                        System.out.println("rtime is "+rtime);
                        Vector tempVec=new Vector();
                        tempVec.add(contact);
                        tempVec.add(prefix);
                        tempVec.add(reason);
                        tempVec.add(rtime);
                        getSrl().updateTable(tempVec);
                        System.out.println("Row Added");update table links to
         public void updateTable(Vector tV){
              try{
                   /*add row to table */
                   getSMSRC().dataModel.addRow(tV);
                   /* up load information into main Vector Data */
                   for(int i=0;i<tV.size();i++){
                        getSMSRC().addData((String)tV.elementAt(i));
              catch(Exception e){
                   getSMSRC().setStatus("ERROR: Update Table unSuccessfully");
                   System.out.println("Error Detected in updateTable Method (SMSRCLogic.class)");
                       System.out.println("Error Message:");
                       System.out.println(""+e.toString());
                       System.out.println("End of Error Report");
         }Even with the try catch, I can't catch the exception ...
    Reading what Java.lang.castclassException means, it means the object castedto a subclass of which it is not an instance. Based on whats happening now, I'm not too sure how to go about solving this error,
    Anyone has any idea?

    Thanks for the sample.. But it still seems the error is still there
    What makes it more interesting is that in my program, there is two components that the program has to do..
    1) Update the Table model (update by using addrow (Vector named tV)
    2) Insert the data(Vector named tV) into a main storage storage Vector (Vector named data)
    it seems that if I were to just update the table model alone, without inserting the data, it would work fine... no many how many rows i insert into the database, it could read and display.
    But the moment i try inserting the data, the program gives me the same error back. What puzzles me is that the error was mention to be from the TableModel getValueAt method.. so why does inserting data into another vector will cause this problem?
    Ive editted my codes to be like this
         Statement stmt=con.createStatement();
                   ResultSet r=stmt.executeQuery("SELECT MID,Contact,Prefix,Reason,RTime FROM IncommingTable WHERE MID>"+index+"");
                   while(r.next()){
                        index=r.getInt(1);
                        Vector tempVec=new Vector();
                        Vector d=new Vector();
                        Object c=r.getObject(2);
                        Object p=r.getObject(3);
                        Object re=r.getObject(4);
                        Object rt=r.getObject(5);
                        d.add(c);
                        d.add(p);
                        d.add(re);
                        d.add(rt);
                        getSrl().updateData(d);
                        tempVec.add(c);
                        tempVec.add(p);
                        tempVec.add(re);
                        tempVec.add(rt);
                        getSrl().updateTable(tempVec);
                        System.out.println("Row Added");and for getgsl().updateData()
         public void updateData(Vector tV){
              /* up load information into main Vector Data */
              for(int i=0;i<tV.size();i++){
                   System.out.println("insert data at "+i);
                   getSMSRC().addData((String)tV.elementAt(i));
         }and for getgsl().updateTable()
    public void updateTable(Vector tV){
              try{
                   /*add row to table */
                   System.out.println("Updating ...");
                   getSMSRC().dataModel.addRow(tV);
                   System.out.println("Update Complete");
              catch(Exception e){
                   getSMSRC().setStatus("ERROR: Update Table unSuccessfully");
                   System.out.println("Error Detected in updateTable Method (SMSRCLogic.class)");
                       System.out.println("Error Message:");
                       System.out.println(""+e.toString());
                       System.out.println("End of Error Report");
         }The reason why there is two Vector (tV and d) is used , I was testing to see if there was any reason due to the sharing of vector that might had caused the problem.. It seems so far that its not the problem...

  • I have 4 email accts, all but one work fine, the main one doesn't receive emails that are sent to me at all? Any idea what went wrong?

    After the download, I began entering my email accounts manually. The first one "[email protected]" doesn't appear to be working properly. Emails that my friends have sent to me are not being received, test emails I have sent from my office are not geting to me either.
    I have looked at the setups for the other 3 accounts and all are the same as the first, so why is this happening?? Hopefully, when you send me an answer, I will get it???
    Thanks,
    Ron

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • My ipod touch has stopped playing through my Sony docking station, It only plays through i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    My ipod touch has stopped playing through my Sony docking station, It only plays through the i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    Have  discovered that I had not in fact updated the ios!!
    Went through the process last night and my ipod now works fine on my docking station.
    Thank you very much for your advice.

  • Fonts went Wonky, what went wrong?

    Hello,
    I upgraded to iTunes 8.0.2 when the new software icon showed up a couple weeks ago, downloaded and restarted and visited the iTunes Store and all the fonts had been changed to some kind of bold symbol font. You can't read a thing. iTunes itself is fine but the store is wonky. I've got a screen grab to show. I haven't been able to figure out what went wrong, any ideas? I can't order a thing as I can't read anything!
    Thanks!

    Open Font Book. Under either the File or View menu (maybe is one of the other ones) there is a option to validate your fonts. You might want to see if your fonts are okay. You should also check for duplicate fonts in your Font Book. Any questions, reply back.

  • I have no idea what's wrong!

    the other day i was listening to my ipod and it started skipping a couple songs- but then it stopped.I also listened to it last night and it was just fine but the battery was almost dead. So today before i was getting ready to go out, I went up to the computer and my brother was logged on to his account and he said that when his mp3 player was done that he would plug in my ipod to charge it. About an hour later i went up to the copmuter to check on it and i found that it was just sitting there, plugged in to the computer, but the battery was still almost dead and the charging icon hadn't appeared or anything and the backlight had gone off. I tried to turn the hold on and off, turn the ipod off all together, and nothing would move, the backlight wouldn't even turn on, so i went to apple.com and tried the "r's" thing and it didn't help because i couldn't get the ipod to do anything at all. After awhile i had been sitting there trying to get it to at least move or get the hold icon to go off, but nothing would happen and then i still had it plugged into the computer and the computer started to beep, and it did a couple of times, and then i unplugged the ipod and it stopped, but my ipod is still frozen, and the time is frozen at 12:45, and it is now about 2:15 and i have no idea what is wrong or what i should do!and also i think it may hav something to do with my computer because the keyboard is pushing things and i'm not even touching it. so if you have any thing i could do please help me!!!-thanks
    <3-ashley-<3

    What's the icon on the screen along with the support site address?
    Sad faced iPod:
    http://docs.info.apple.com/article.html?artnum=61771
    File folder with exclamation point:
    http://docs.info.apple.com/article.html?artnum=61003
    Apple logo:
    http://docs.info.apple.com/article.html?artnum=61584
    Try these first... then look into the other website that was posted.
    Best wishes,
    CG

  • What went wrong ?

    Dear all,
    I`m trying to figure out what went wrong with my database.
    During the higher load the users were suddenly getting DBIF_RSQL_SQL_ERROR, no matter what they wanted to do. When checking system I found many messages like:
    Database error -1000 at OPC access to table REPOLOAD
    > POS(1) Too many lock requests
    > Include ??? line 0000.
    Run-time error "DBIF_REPO_SQL_ERROR" occurred
    Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    Database error -1000 at OPC
    > POS(1) Too many lock requests
    Database error -1000 at OPC
    > POS(1) Too many lock requests
    Database error -1000 at OPC
    > POS(1) Too many lock requests
    Database error -1000 at EXE
    > POS(1) Too many lock requests
    According to documentation I found error -1000:
    1000: Too many lock requests
    Explanation
    There are too many locks or lock requests.
    User Request
    You can try to repeat the SQL statement at a later time or cancel the transaction. If this situation occurs frequently, then the MAXLOCKS general database parameter is too small and should be increased
    Database kernel showed following messages:
    2009-12-07 16:04:18  8126 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    2009-12-07 16:05:13  8170 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    2009-12-07 16:10:13  8182 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    2009-12-07 16:15:09  8229 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    2009-12-07 16:15:13  8123 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    So do you think it is just about MAXLOCKS parameter or also with catalog cache sizing could be wrong ?
    Version : MaxDB 7.6.6.7.
    Thank you for your comments.
    Pavol

    > Database error -1000 at OPC
    > > POS(1) Too many lock requests
    > 1000: Too many lock requests
    > Explanation
    > There are too many locks or lock requests.
    > 2009-12-07 16:04:18  8126 ERR     5 Catalog  Catalog update failed,IFR_ERROR=-1000,DESCRIPTION=UNDEFINED
    > So do you think it is just about MAXLOCKS parameter or also with catalog cache sizing could be wrong ?
    > Version : MaxDB 7.6.6.7.
    Hi there,
    it's really just about the MAXLOCKS setting.
    As you seem the "Catalog update failure"-message also points out error no. -1000.
    It's the same "too many lock requests" error as before.
    Having a MAXLOCKS value of 1.000.000 or even 3.000.000 is not unusual with MaxDB!
    regards,
    Lars

  • My 10.8.3 update did not install properly citing an 'Unknown Error'. Now, my Mail and Mac App Store aren't working. What went wrong and how do i fix it ?

    My 10.8.3 update did not install properly citing an 'Unknown Error'. Now, my Mail and Mac App Store aren't working. What went wrong and how do i fix it ?

    I tried this and still have the same problems. If I open Address book or the Mac App Store I get the library rebuild popup and a hang. I created a fresh user and then things are better apart from the printing issue. Its clearly some 3rd party software issue but the crash logs are meningless to me. I used the excellent Etre check app from http://www.etresoft.com/etrecheck so I have a list of what is being loaded and can compare clean and crashed user info but as I cant work out which of the startup items, launch agents, launch daemons etc that  are causing the problem.
    I have eliminated Dropbox, Mac Keeper and Witness, and it isnt related to my exterrnal LED cinema dispay or my external thunderbolt drives, or any USB devices if thats any help to anyone else. Info from Etrecheck follows -
    Kernel Extensions:
              com.oxsemi.driver.OxsemiDeviceType00          Version: 1.28.7
              com.rogueamoeba.InstantOn          Version: 6.0.2
              com.rogueamoeba.InstantOnCore          Version: 6.0.2
              com.Cycling74.driver.Soundflower          Version: 1.5.3
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
                 [not loaded] com.adobe.fpsaud.plist
                 [not loaded] com.adobe.SwitchBoard.plist
                 [not loaded] com.bombich.ccc.plist
                 [not loaded] com.dymo.pnpd.plist
                 [not loaded] com.intego.BackupManagerPro.daemon.plist
                 [not loaded] com.micromat.TechToolProDaemon.plist
                 [not loaded] com.microsoft.office.licensing.helper.plist
                 [not loaded] com.orbicule.witnessd.plist
                 [not loaded] com.sierrawireless.SwitchTool.plist
                 [not loaded] com.stclairsoft.AppTamerAgent.plist
                 [not loaded] org.macosforge.xquartz.privileged_startx.plist
                 [not loaded]          pcloudd.plist
    Launch Agents:
                     [loaded] com.divx.dms.agent.plist
                     [loaded] com.divx.update.agent.plist
                     [loaded] com.epson.epw.agent.plist
                     [loaded] com.lacie.raidmonitor.daemon.plist
                     [loaded] com.lacie.safemanager.daemon.plist
                     [loaded] com.micromat.TechToolProAgent.plist
                     [loaded] com.orbicule.WitnessUserAgent.plist
                     [loaded] org.macosforge.xquartz.startx.plist
    User Launch Agents:
                 [not loaded]          .DS_Store
                     [loaded] com.adobe.AAM.Updater-1.0.plist
                     [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
                     [loaded] com.digitalrebellion.SoftwareUpdateAutoCheck.plist
                     [loaded] com.divx.agent.postinstall.plist
                     [loaded] com.google.keystone.agent.plist
                     [loaded] com.propaganda.dejavu.dvmonitor.plist
                     [loaded] com.valvesoftware.steamclean.plist
                     [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              iTunesHelper
              Synergy
              TomTomHOMERunner
              Dropbox
    3rd Party Preference Panes:
              Déjà Vu
              Flash Player
              Flip4Mac WMV
              GR-55
              Paragon NTFS for Mac ® OS X
              Perian
              Printopia
              TechTool Protection
              Witness

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • TS1702 i downloaded the GV app to my iphone but i'm trying to set up the app and it says it can't connect to google when i try to sign in to my google account.... any ideas what's wrong? i can access my gmail account just fine with my gmail app on the sam

    i downloaded the GV app to my iphone but i'm trying to set up the app and it says it can't connect to google when i try to sign in to my google account.... any ideas what's wrong? i can access my gmail account just fine with my gmail app on the same phone

    What's a GV app?

  • HT1351 my iphone will no longer sync music remains stuck on  'step 6 of 6', I have left it for 1,5 hrs any ideas what is wrong ?  THere is  4.6 GB  space left!

    My iphone will not sync music, I have done it many times before , there is 4,6  GB space it just remains stuck at step 6 of 6 for over an hour, any ideas what is wrong?

    You may need to do a Restart or Reset
    http://support.apple.com/kb/ht1430

  • I have been using facetime on my iphone for a while and after the recent, ios update, I cannot seem to use the facetime. What went wrong?

    I have been using facetime on my iphone5 for a while and after the recent IOS update, I cannot seems to use my facetime any longer. what went wrong?

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

Maybe you are looking for

  • How to do a SET using SNMP ?

    Hi, I already ask in the forum Advanced Language Topics http://forum.java.sun.com/thread.jsp?forum=4&thread=320674 but I din't receive any answer so I try here maybe some one could help me on this ... ;-) I find a nice piece of code on Internet to do

  • Different browser on iPhone?

    I am trying to log on to a system that will not work with Safari. Is it possible to download a different browser onto the iPhone, like Firefox?

  • Combine photos?

    I'm pretty sure aperture can't do this, so looking for suggestions from users regarding alternate workflows. I have a bunch of scanned 3:1 panoramic negatives that i want to print at 4x12. Costco offers 8x12s for very cheap so i want to take two of t

  • Is it possible to add code to a button that would save the form as a jpeg file?

    Hi, I currently use pdf forms to create records for the work I do, these end up being 5-8MB large and not much smaller when 'flattened'. I currently use a 3rd party app to convert them to jpeg before uploading them to dropbox for the clients.  Is the

  • Float behavior confusion

    I always thought that setting a float property resulted in non-floated objects acting as if the floated object was not there however look at this code <div style="width:100px; height:100px; background-color:#03C;"></div> <div style="width:100px; heig