A/V Controls Don't Work...? Need Help With Adjustments...

I've recorded a couple of short video clips on my digital stills camera but once imported to my powerbook they are quite dark.
i've called up the QT A/V controls window and adjusted the brightness / contrast but it doesnt seem to be affecting the movie at all.
i've tried to use the filters within the 'export' dialogue as well - to no avail.
Is there something i'm doing wrong? any help / advice much appreciated.

Sounds like you are recording in a format not compatible as I am pretty sure those controls work with a PB. Don't have mine handy to check but they should, they require core video support which you should have. But if they are AVI or MPEG the controls don't work.

Similar Messages

  • CFexchange tags stopped working - need help with EWS

    I guess EWS is the way to go since Adobe bailed on the CFexchange tags.  I need to access my mail/calendars on a hosted exchange server.  I'm using CF 9.0.1 with hotfix4 and Java 7.  Here's the error I get;
    Error:
    Could not log in to the Exchange server.
    connection="exchangeConn"
    server="EXVMBX016-5.exch016.msoutlookonline.net"
    username="exch016\j_ttt"
    mailboxname="[email protected]"
    password="[removed]"
    Protocol="http"
    port="80"
    formbasedauthentication="TRUE"
    formbasedauthenticationURL="https://owa016.msoutlookonline.net/owa/auth/logon.aspx"
    Here's the code I copied from this forum;
    <cffunction  name="EWSAddEvent" output="false" returntype="Boolean">
        <!--- EWS added by vjl  2013/10/31 --->
        <!---
            CFExchange in CF server  9  or older will not talk with Exchange 2010 at all, it is promissed to be fixed in CF 10.
            As a solution you can use the EWS API. Read the stuff below. I hope my hint is helpfull to you.
            With Exchange 2007 Microsoft abandoned WebDav as an interface to Exchangeserver.
            The standard Coldfusion Tags relied on WebDav and will not work anymore.
            Since I needed a way to interface with Exchange Server a started looking for possible solutions and this is what i came up with.
            In december 2010 Microsoft released the Exchange Managed Services Library for java.
            You can find it here: http://archive.msdn.microsoft.com/ewsjavaapi/Release/ProjectReleases.a spx?ReleaseId=5691
            In the getting started document it tells you it depends on 4 3rd party libraries which you need to be download separately:
            -    Apache Commons HttpClient 3.1 (commons-httpclient-3.1.jar)
            -    Apache Commons Codec 1.4 (commons-codec-1.4.jar)
            -    Apache Commons Logging 1.1.1 (commons-codec-1.4.jar)
            -    JCIFS 1.3.15 (jcifs-1.3.15.jar)
            With Coldfusion 9.1 (the version I tested with) you only need
            -    JCIFS 1.3.15 (jcifs-1.3.15.jar) which you can download here: http://jcifs.samba.org/src/
            Place the EWS Jar and the JCIFS Jar in your Coldfusion libray folder and after restarting CF server the following code should work.
            If you understand this you will be able to figure out your specific needs from the EWS API documentation.
            --->
        <cfargument name="EmailAddress" type="String" required="True" />
        <cfargument name="EventName" type="String" />
        <cfargument name="EventStartDateTime" type="Date" />
        <cfargument name="EventEndDateTime" type="Date" />
        <cfargument name="EventSubject" type="String" />
        <cfargument name="EventDescription" type="String" />
        <cfargument name="EventLocation" type="String" Required="False" Default="" />
        <!--- <cfargument name="EventSensitivity" type="String" Required="False" Default="Normal" />
            <cfargument name="EventImportance" type="String" Required="False" Default="Normal" /> --->
        <cfargument name="EventReminder" type="String" Required="False" default=0 />
        <!--- <cfargument name="Organizer" type="String" Required="False" Default="" /> --->
        <cfargument name="OptionalAttendees" type="String" Required="False" Default="" />
        <cfargument name="leadID" type="numeric" required="no" default="0" />
        <cfargument name="serviceID" type="numeric" required="no" default="0" />
        <cfargument name="userID" type="numeric" required="no" default="0" />
        <cfargument name="companyID" type="numeric" required="no" default="0" />
        <cfargument name="serviceTypeID" type="numeric" required="no" default="0" />
        <cfmail to="[email protected]" from="[email protected]" subject="Exchange EWSAddEvent debug Arguments" type="html"><cfdump var="#Arguments#"></cfmail>
        <!--- Build Mailbox --->
        <cfset UserName = Left(Arguments.EmailAddress,Find("@",Arguments.EmailAddress)-1) />
        <cfset Arguments.UserName = Application.Exchange.Domain & "\" & lcase(UserName) & Application.Exchange.MailboxPostFix />
        <cfset Arguments.Pword = Trim(FetchExchangePassword(Arguments.EmailAddress)) />        
        <!--- 1. I need an instance of the ExchangeService class --->
        <cfobject type="Java" class="microsoft.exchange.webservices.data.ExchangeService" name="service">
        <cfset service.init()>
        <cfmail to="[email protected]" from="[email protected]" subject="Exchange EWSAddEvent debug service" type="html"><cfdump var="#service#"></cfmail>
        <!--- 2.  I need to set the credentials --->
        <!--- 2a. Create an instance of the WebCredentials class --->
        <cfobject type="Java" class="microsoft.exchange.webservices.data.WebCredentials" name="credentials">
        <!--- 2b. Set the credentials --->
        <cfset credentials.init("#arguments.UserName#","#Arguments.Pword#", "t.com")>
        <!--- 2c. Set the credentials in the service object --->
        <cfset service.setCredentials(credentials) />
        <!--- 3.  In need to set the URL to Exchange (stay away from autodsicovery) --->
        <!--- 3a. Create an instance of the Uri class --->
        <cfobject type="Java" class="java.net.URI" name="uri">
        <!--- 3b. Set the full path --->
        <cfset uri.init("https://mail.t.com/ews/Exchange.asmx")>
        <!--- 3c. Set the url in the service object --->
        <cfset service.setUrl(uri) />
        <!--- These are the steps you need to create valid a service object. --->
        <!--- Now we need to do something with it. --->
        <!--- I create a test message to my own mailbox to see if it works --->
        <cfobject type="Java" action="create" class="microsoft.exchange.webservices.data.EmailMessage" name="message">
        <cfset message = message.init(service) />
        <cfset message.SetSubject("EWSTest")>
        <cfset messageBody = CreateObject("java", "microsoft.exchange.webservices.data.MessageBody")>
        <cfset messageBody.init("My EWS test message")>
        <cfset message.SetBody( messageBody )>
        <cfset message.ToRecipients.Add("[email protected]") >
        <cfmail to="[email protected]" from="[email protected]" subject="Exchange EWSAddEvent debug message" type="html"><cfdump var="#message#"></cfmail>
        <cfoutput>
            #message.SendAndSaveCopy()#
        </cfoutput>
        <cfreturn True />
    </cffunction>

    Nothing. Absolutely nothing.

  • HT1414 My phone Is Not work need help with it

    I have iphone problems restore

    And what happenens when you take the steps indicated in the article you referenced?

  • I need help with controlling two .swf's from third.

    Hi, thanks for reading!
    I need help with controlling two .swf's from third.
    I have a problem where I need to use a corporate designed
    .swf in a digital signage solution, but have been told by the legal
    department that it can not be modified in any way, I also can't
    have the source file yada yada. I pulled the .swfs from their
    website and I decompiled them to see what I was up against.
    The main swf that I need to control is HCIC.swf and the
    problem is it starts w/ a preloader, which after loading stops on a
    frame that requires user input (button press) on a play button,
    before the movie will proceed and play through.
    What I have done so far is to create a container swf,
    HCIC_container.swf that will act as Target for the HCIC.swf, and
    allow me to send actionscript to the file I'm not allowed to
    modify.
    I managed to get that done with the help of someone on
    another forum. It was my hope that the following script would just
    start HCIC.swf at a frame past the preloader and play button, and
    just play through.
    var container:MovieClip = createEmptyMovieClip("container",
    getNextHighestDepth());
    var mcLoader:MovieClipLoader = new MovieClipLoader();
    mcLoader.addListener(this);
    mcLoader.loadClip("MCIC.swf", container);
    function onLoadInit(mc:MovieClip) {
    mc.gotoAndPlay(14);
    But unfortunately it didn't solve my problem. Because there
    is a media-controller.swf, that is being loaded by HCIC.swf that
    has the controls including the play button to start HCIC.swf.
    Here's a link to a .zip file with all 3 .swf files, and all 3
    .fla files.
    http://www.axiscc.com/temp/HCIC.zip
    What I need to do is automatically start the HCIC.swf file
    bypassing the pre-loader and play button without editing it or the
    media-controller.swf in anyway. So all the scripting needs to be
    done in HCIC_container.swf.
    I know this is confusing, and its difficult to explain, but
    if you look at the files it should make sense.
    ActionScripting is far from my strong point, so I'm
    definitely over my head here.
    Thanks for your help.

    Got my solution on another forum.
    http://www.actionscript.org/forums/showthread.php3?t=146827

  • Updated to iOS 7 and now car controls don't work

    I recently updated my iPhone 5 to iOS 7, and now it no longer works properly with my vw golf sound system. I used to be able to plug it in and control it through the touch screen in my car, but now everything is jumbled and the controls don't work. Please help!

    It is the update.  I am having the same problem with my Nissan and all my updated apple products.  It is awful. I wish I did not update the software.

  • HT5621 I Have followed all the steps and still cant remove iCloud to my existing account and add to the new one, the old email account was changed a year ago and cant get that email plus the password don't work please HELP!!

    I Have followed all the steps and still cant remove iCloud to my existing account and add to the new one, the old email account was changed a year ago and cant get that email plus the password don't work please HELP!

    Welcome to the Apple community.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone".
    You should then change your Apple ID back to its current state, verify it once again, delete the iCloud account from your device and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • Ipad Keyboard volume controls don't work?

    When I have headphones plugged in to the jack on the keyboard the volume controls don't work. If I plug them in to the jack on the Ipad then the volume controls work. Known bug? Defective unit?
    Any help appreciated.

    The keyboard controls, but nevermind. I found out they're not supposed to work on the aux jack on the back of the keyboard. Guess I should RTFM
    Thanks anyway, everyone!

  • Need help with home work see what you got

    1. The MEMBERS table has the phone number broken into three fields:
       CountryCode - e,g., '1' for the United States
       AreaCode - e.g., three digits for the United States
       Phone - e.g., 7 digits, with or without a dash between the first three digits (Exchange) and last four digits (Line)
       Any or all of the fields may be missing (null) or blank or contain only spaces.
       Write a T-SQL statement to concatenate the three fields into a complete phone number
       with the format: CountryCode(AreaCode)Exchange-Line, e.g., 1(816)123-4567
       If no Phone is present, return a blank string.
       If no area code is present, return only the Phone number. Do not return an empty pair of parentheses or the CountryCode.
    2. The PERSON_CAMPAIGN table contains a row for each war/conflict the member served in. A member may have served in multiple conflicts
       For this purpose, each row contains:
       PersonID - unique member identifier
       Campaign - name of war/conflict
       Write a T-SQL statement to return one row per member with all campaigns concatenated into a single field and separated by commas
       E.g., PersonID    Campaigns
             12345678    Global War on Terror, Iraq, Afghanistan
    3. The MEMBER_STATISTICS table contains one row per post.
       For this purpose, each row contains the post's:
       Division - a way of grouping posts by their member size
       Department - the state in which the post is located
       PostNumber - unique post identifier
       Reinstated - count of members whose annual subscription had lapsed for at least two years but who have now subscribed for the current year
       Write a T-SQL statement to determine the top ten posts in each division based on the number of reinstated members, with a minimum of 50 reinstated members.
       Rank them by highest to lowest reinstated count.
       Return their Division, Rank, Department, PostNumber, Reinstated

    I got 3 home work questions think i have the first two need help with the last one please.
    Kinda stuck on #3 hard I can see data not sure witch to sum or count?
    1. The MEMBERS table has the phone number broken into three fields:
       CountryCode - e,g., '1' for the United States
       AreaCode - e.g., three digits for the United States
       Phone - e.g., 7 digits, with or without a dash between the first three digits (Exchange) and last four digits (Line)
       Any or all of the fields may be missing (null) or blank or contain only spaces.
       Write a T-SQL statement to concatenate the three fields into a complete phone number
       with the format: CountryCode(AreaCode)Exchange-Line, e.g., 1(816)123-4567
       If no Phone is present, return a blank string.
       If no area code is present, return only the Phone number. Do not return an empty pair of parentheses or the CountryCode.
    ANSWER******************
    Notes: created a funtion to format the phone 
    Then used the this function in a select to concatenate Phone 
     CREATE FUNCTION dbo.FORMATPHONE (@CountryCode int, @AreCode int, @Phone VARCHAR(14))
    RETURNS VARCHAR(14)
        AS BEGIN
           DECLARE @ReturnPhone VARCHAR(14)
           DECLARE @NewPhone VARCHAR(14)
    -- Note case sets newphone to null if phone null or '' also to see if phone has '-' in it if not inserts into newphone
           case 
                when @Phone is null or @Phone  = ''
                   Then SET @NewPhone = Null
                when @Phone = substring(@Phone,4,1)='-'
          Then SET @NewPhone = @Phone 
           else  
                SET @NewPhone = substring(@Phone,1,3)+'-'+ substring(@Phone,4,4)
           End     
           case 
                when @NewPhone is null then SET @ReturnPhone = @NewPhone            
           elese case
                    when @AreCode is null or @AreCode = '' then SET @ReturnPhone = @NewPhone
                 else 
          SET @ReturnPhone = @CountryCode + '(' + @AreCode + ')' +  @NewPhone
                END
           END
        RETURN @ReturnPhone 
    END
    select dbo.FORMATPHONE(CountryCode,AreCode,Phone)
    from MEMBERS 
    2. The PERSON_CAMPAIGN table contains a row for each war/conflict the member served in. A member may have served in multiple conflicts
       For this purpose, each row contains:
       PersonID - unique member identifier
       Campaign - name of war/conflict
       Write a T-SQL statement to return one row per member with all campaigns concatenated into a single field and separated by commas
       E.g., PersonID    Campaigns
             12345678    Global War on Terror, Iraq, Afghanistan
    ANSWER******************
    SELECT      PersonID,
                STUFF((    SELECT ',' + Campaign AS [text()]
                            FROM PERSON_CAMPAIGN 
                            WHERE (PersonID = Results.ID)
                            FOR XML PATH('') 
                            ), 1, 1, '' )
                AS Campaigns
    FROM  PERSON_CAMPAIGN Results
    3. The MEMBER_STATISTICS table contains one row per post.
       For this purpose, each row contains the post's:
       Division - a way of grouping posts by their member size
       Department - the state in which the post is located
       PostNumber - unique post identifier
       Reinstated - count of members whose annual subscription had lapsed for at least two years but who have now subscribed for the current year
       Write a T-SQL statement to determine the top ten posts in each division based on the number of reinstated members, with a minimum of 50 reinstated members.
       Rank them by highest to lowest reinstated count.
       Return their Division, Rank, Department, PostNumber, Reinstated

  • My ipad 2 suddenly shut off and asked me to connect to itunes it asks me to restore but it wont work need help pls

    my ipad 2 suddenly shut off and asked me to connect to itunes it asks me to restore but it wont work need help pls

    The iPad is telling you it has entered the recovery mode - you need to follow the instructions in http://support.apple.com/kb/HT1212 for connecting to a computer running iTunes by way of the recovery mode.

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

  • Need help with a activation code for Adobe Acrobat X Standard for my PC,, Don't have older version serial numbers,  threw programs away,  only have Adobe Acrobat X Standard,  need a code to unlock program?

    Need help with a activation code for Adobe Acrobat X Standard for my PC, Don't have older Version of Adobe Acrobat 9, 8 or 7. 

    You don't need to install the older version, you only need the serial number from your original purchase. If you don't have them to hand, did you register? If so, they should be in your Adobe account. If not you really need to contact Adobe, though it isn't clear they will be able to do anything without some proof of purchase etc.

  • E1200 modem: Username and Password don't work! help!

    We cannot allow other devices (computers etc) on our network. the only one allowed is the one thats set up the network originally. I've contacted our internet provider, spyware and everyone else and they say its within the router. And the username and password on the laptop do not allow us in. Other devices say "authentication problem" or they are just not capable of getting onto the Wifi/Network. So, within our wireless network settings/properties we've gotten the name and pass key for going into our modem via the web...but it does not work. Need help with the username and password, the one we were given does not work......help? also, we do not have phone service where we live so calling and being on the computer is not possible....any email or forum step by step is the only capability. Thank you!

    Hello kreardon410,
    Try to check if you have the Cisco Connect Software installed on one of the computers. Router's default log in is admin for the password and just leave the username blank. If you won't be able to access it still, you may reset and configure the router again.
    Help, learn and share

  • I need help with fp, i cannot get it to work. have tried everything

    i cannot get fp to work.  I have uninstalled and installed so many times.  I use IE9....it worked two months ago.

    thank you for your reply.  I am using Internet Exp. 9 and McAfee software.  It states it installs and when I open a video, receive message I need to upgrade.  I followed the directions for 32 bit vs 64 bit.   Adobe FP is under my programs????
    > Date: Thu, 8 Sep 2011 05:17:21 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help with fp, i cannot get it to work. have tried everything
    It won't work or just won't install?
    Which OS, browser(s), and anti-virus software are you using?
    If you're using the free Avira AntiVir(us) Personal software, then deactive the Webguard feature first before installing the Flash Player.
    >

Maybe you are looking for