QTKit frame number (PLEASE HELP!)

Hi,
I would like to get the number of frame in a video using QTKit, how could I do this? I looked through the framework and there is no apparent way to refer to the frame number, what I would like to do is be able to refer to the frame number in order to insert frames from another video into the current video.
If anyone has any suggestions of any sort (code is also very strongly appreciated) please help.
Thanks
Antoine

All HP replacement part numbers end in -001, the replacement part number is normally located by the end user accessible memory slot on the bottom of the laptop.  I believe this is your machine:
http://h10032.www1.hp.com/ctg/Manual/c01311536.pdf
I looked at the system boards, there are 5 part numbers, but if you don't live in Germany, that gets rid of two, if it is not a AMD processor that gets rid of one, now you just need to find out the size of the video RAM 256 or 512 and you'll have narrowed it down.  Hope this helps, if it does, kindly give me some Kudos!
________________________________________________________________________________________________________ I Love Kudos! If you feel my post has helped you please click the White Kudos! Star just below my name
If you feel my answer has fixed your problem please click 'Mark As Solution' and make it easier for others to find help quickly

Similar Messages

  • Hi.. i forgot my apple id and password.. i cant activate my ipod touch.. but here's the serial number, *********** please help me.. thanks

    hi.. i forgot my apple id and password.. i cant activate my ipod touch..
    but here's the serial number, *************** please help me.. thanks
    <Edited by Host>

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple - I've asked the hosts to remove your iPod's serial number address from your post.
    Only you can activate your iPod by typing in your id and password, or you can remove a device from your account via http://icloud.com . If you can't remember your account id then do you have any of its downloads on your computer's iTunes : Recovering a forgotten iTunes Store account name ? If not then you could try http://iforgot.apple.com . You can also reset your password via the 'iforgot' site, or you can contact Support in your country and they should be able to reset your password (as long as you can prove your id and that it's your account) : Apple ID: Contacting Apple for help with Apple ID account security
    iOS 7 and activation lock : iCloud: Find My iPhone Activation Lock in iOS 7
    What if I forget my Apple ID password?
    If you forget your password, you can reset it at My Apple ID (appleid.apple.com) or by contacting Apple Support and verifying your identity. Once your password has been reset, it will work normally with Find My iPhone and Activation Lock.
    If you forget your password and cannot reset it, you will lose access to your Apple ID and may be unable to use or reactivate your device. To help prevent this, visit My Apple ID periodically to review and update your account information.

  • A Internal frame problem: Please help me

    How can you add a panel to internal frame and show it. I add a image buffer to a panel and then I want to add that panel to internal frame which exists in a main frame. Please help me with code snippet as I am unable to it since morning and struck with my progress in my work. I will be thanki ful/
    regards,
    Ravi.

    Have a look at the code I took from the excellent FREE java swing book you can get here http://www.manning.com/sbe/
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    public class CommonLayouts extends JFrame {
    public Integer LAYOUT_FRAME_LAYER = new Integer(1);
    public CommonLayouts() {
    super("Common Layout Managers");
    setSize(500, 460);
    JDesktopPane desktop = new JDesktopPane();
    getContentPane().add(desktop);
    JInternalFrame fr1 =
    new JInternalFrame("FlowLayout", true, true);
    fr1.setBounds(10, 10, 150, 150);
    Container c = fr1.getContentPane();
    c.setLayout(new FlowLayout());
    c.add(new JButton("1"));
    c.add(new JButton("2"));
    c.add(new JButton("3"));
    c.add(new JButton("4"));
    desktop.add(fr1, 0);
    fr1.show();
    JInternalFrame fr2 =
    new JInternalFrame("GridLayout", true, true);
    fr2.setBounds(170, 10, 150, 150);
    c = fr2.getContentPane();
    c.setLayout(new GridLayout(2, 2));
    c.add(new JButton("1"));
    c.add(new JButton("2"));
    c.add(new JButton("3"));
    c.add(new JButton("4"));
    desktop.add(fr2, 0);
    fr2.show();
    JInternalFrame fr3 =
    new JInternalFrame("BorderLayout", true, true);
    fr3.setBounds(330, 10, 150, 150);
    c = fr3.getContentPane();
    c.add(new JButton("1"), BorderLayout.NORTH);
    c.add(new JButton("2"), BorderLayout.EAST);
    c.add(new JButton("3"), BorderLayout.SOUTH);
    c.add(new JButton("4"), BorderLayout.WEST);
    desktop.add(fr3, 0);
    fr3.show();
    JInternalFrame fr4 = new JInternalFrame("BoxLayout - X",
    true, true);
    fr4.setBounds(10, 170, 250, 80);
    c = fr4.getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.X_AXIS));
    c.add(new JButton("1"));
    c.add(Box.createHorizontalStrut(12));
    c.add(new JButton("2"));
    c.add(Box.createGlue());
    c.add(new JButton("3"));
    c.add(Box.createHorizontalGlue());
    c.add(new JButton("4"));
    desktop.add(fr4, 0);
    fr4.show();
    JInternalFrame fr5 = new JInternalFrame("BoxLayout - Y",
    true, true);
    fr5.setBounds(330, 170, 150, 200);
    c = fr5.getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));
    c.add(new JButton("1"));
    c.add(Box.createVerticalStrut(10));
    c.add(new JButton("2"));
    c.add(Box.createGlue());
    c.add(new JButton("3"));
    c.add(Box.createVerticalGlue());
    c.add(new JButton("4"));
    desktop.add(fr5, 0);
    fr5.show();
    JInternalFrame fr6 =
    new JInternalFrame("SpringLayout", true, true);
    fr6.setBounds(10, 260, 250, 170);
    c = fr6.getContentPane();
    c.setLayout(new SpringLayout());
    c.add(new JButton("1"), new SpringLayout.Constraints(
    Spring.constant(10),
    Spring.constant(10),
    Spring.constant(120),
    Spring.constant(70)));
    c.add(new JButton("2"), new SpringLayout.Constraints(
    Spring.constant(160),
    Spring.constant(10),
    Spring.constant(70),
    Spring.constant(30)));
    c.add(new JButton("3"), new SpringLayout.Constraints(
    Spring.constant(160),
    Spring.constant(50),
    Spring.constant(70),
    Spring.constant(30)));
    c.add(new JButton("4"), new SpringLayout.Constraints(
    Spring.constant(10),
    Spring.constant(90),
    Spring.constant(50),
    Spring.constant(40)));
    c.add(new JButton("5"), new SpringLayout.Constraints(
    Spring.constant(120),
    Spring.constant(90),
    Spring.constant(50),
    Spring.constant(40)));
    desktop.add(fr6, 0);
    fr6.show();
    desktop.setSelectedFrame(fr6);
    public static void main(String argv[]) {
    CommonLayouts frame = new CommonLayouts();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);

  • After ios 5 update my iphone 3gs stopped writing some letters (t, f, c) and some 5 number. please help. !

    after ios 5.0.1  update my iphone 3gs stopped writing some letters (t, f, c) and some "5" number. please help. !
    and the unlock slider is not working properly, i have to slide many times to open the phone.

    Same problem.

  • HT5631 i want to change my visa card number please help me

    i want to change my visa card number please help me
    please please
    Thank you
    Nawaz
    00971555917014

    The following link gives instructions for changing your iTunes payment method: http://support.apple.com/kb/ht1918

  • Sir,my brother iphone was theft by some one,an we dont have IMEI number .please help us that is my brother personal mobile phone

    sir,my brother iphone was theft by some one,an we dont have IMEI number .please help us that is my brother personal mobile phone...

    Welcome to the user to User Technical Support Forum provided by Apple.
    See here For...
    Lost or Stolen iOS device > http://support.apple.com/kb/HT5668 
    More Info  >   locate your iOS device or Mac

  • HT5616 i have loss my apple id and i have no idea about every thing which is related to id i send my apple imei number please help me to restore my apple phone

    i have loss my apple id and i have no idea about every thing which is related to id i send my apple imei number please help me to restore my apple phone.

    Hello, i got the same problem with my device. It`s locked because I can` activate Icloude (my apple ID)...it appears with the same massage hellp

  • EPM Workspace EPM Inside Frame error- Please help ASAP!!

    Can someone please help me resolve below error with EPM-
    I've created resports in web analysis studio and am emailing smartcut URL to about 200 users. 3 of the users are getting below error-
    "EPM Workspace cannot function inside of a frame"
    pop ups are allowed; java is up to date; hyperion 11.1.2.1.102
    any tips?

    Hi,
    The document can be found in support.oracle.com
    I had pasted the contents though, which might be helpful
    After embedding a Financial Reporting (FR) report or Web Analysis (WA) report to a Planning Task List using the Smartcut url in the Planning, and then try to open the report through Task list in Workspace, you will get the following error:
    "EPM Workspace cannot function inside of a frame. Contact your system administrator."
    Cause
    This issue is caused by unpublished BUG 11854015 "ERROR OPENING PLANNING TASK LIST REPORT WITH "WITHNAV_GET"
    Solution
    Until a service fix is released to address this issue, the following workaround currently exists to resolve this issue:
    1. Use the below URL while specifying in the Smart Cut, http://server.example.com:19000/workspace/WorkspaceLaunch.jsp?uri=index.jsp%3fmodule%3dwksp.relatedcontent%26repository_path%3d%2Fmyfolder-name-here%2Fmy-report-name-here
    2. Replace myfolder-name-here with the name of the folder and my-report-name-here with the name of the report. The URL must be encoded.
    3. You must use %2F where you would use a slash in the repository path. You might also need to encode the report name due to the double-byte characters in the report name. The encoding for % is %25. So, if the character %8a appears in the SmartCut URL for the report, then the encoding for the URL above would be encoded %258a.
    Hope this helps,
    Thank you,
    Charles Babu J

  • Final Cut Pro 4.5 & Dropped Frames..Please Help

    I am a wedding videographer and have been using Final Cut Pro with no problems for several video projects. My most current project however problems arise. I am using Mac OS X 10.4.9 with 512 MB of Ram on a G5 1.8 Single. When I try importing video from my last wedding when I capture it I always am getting a message saying dropped frames were present. I have tried 2 different camcorders, 2 different firewire cables, defragmenting my hard drive and still nothing but dropped frames messages. I also have tried importing video from a previous wedding with no luck. If anyone has any ideas please help. Thanks

    FCP 4.5 and Mac OS 10.4.9 are incompatible...known issue.
    #45 - FCP 4.5 and Mac OS 10.4.9 - how to get it working again
    Shane's Stock Answer #45 - How to get FCP 4.5 working again under Mac OS 10.4.9
    Apple's solution: Archive and install the OS again, this time updating only to 10.4.8.
    Another COOL solution: Samba2007 posted that a friend solved the FCP 4.5 + OSX 10.4.9 capture issue adding the Capture Scratch folder to the Privacy of Spotlight in this thread:
    http://discussions.apple.com/thread.jspa?messageID=4417320#4417320
    OlSchoolCutter tried with SUCCESS (see post in that thread).
    Then follow these stepe and try (it's free!):
    1. From the Apple menu, choose System Preferences.
    2. From the View menu, choose Spotlight.
    3. Click the Privacy tab to reveal the areas that Spotlight will not index.
    4. In the Finder, open your "Final Cut Pro Documents" folder.
    5. Drag the Capture Scratch folder into Spotlight's list.
    Shane

  • Adobe PS5.1 will not accept serial number - please help!!

    Hello,
    I am really frustrated about my new Photoshop CS5.1.
    When I installed the s/w, I entered the serial number. All was working ok until it decided I was on a trial and asked me to enter the serial number again. When I entered the serial number, it gave me an error saying the serial number is invalid.
    I tried the uninstall and install again - but to no avail.
    Now the "trial period" has expired and I cannot work with the product anymore. With a bunch of customer deadlines, I am stuck. This is really frustrating for a product that cost so much to purchase.
    Please help.
    -Vivek

    You need to call support by phone. Nobody here can help you with serial number issues.
    Mylenium

  • Lost CS3 serial number, please help

    I'm behind the times but I have been using CS3 for quite some time and only installed the trial of Creative Cloud a couple of days ago, but for some reason when I try to use CS3, which I'm quite happy with, I no longer have the serial number installed and I can't find my disc for the number. Please help.

    See here:
    Find your serial number quickly

  • Need to hold very large number - please help

    Hello all,
    I am working with programming the SSH handshake and need to represent a very large number in order to get it to work correctly. The number is:
    179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194467627007
    which is: 1.7 *10^318
    and we know the largest double is:
    1.7976931348623157E308
    Can someone please help me with representing this number? It is a very large prime number that is used in the key exchange for SSH.
    Thank you all for you time
    Max

    And who's the slowest old sod again?
    This is amazing: I read a new topic, no repliesyet,
    I check it again, nothing yet,
    I craft my reply and presto: some quick fingersbeat
    me to it again ...Grolsch makes slow :P ;)It's still only 11:45ag ... and I'm still waiting ;-)
    Jos

  • Can't extend my online number please help

    Hello all:
    I have purchased a online number(French one) on July 4 for 3 month
    It's going to expire on Oct 4 but I can't find out the correct way to re-purchase a new period.
    I have checked the FAQ already and it said I will find a "Online Number" tab on my account page and I can click extend but I didn't find it.(Please check the photo underneath)
    Skype staff could you please help me to solve this problem?
    My skype number is finalaeonaeon. I apply this account in Taiwan for a long period of time. 
    Thanks for help in advance

    Hello, I feel your pain having suffered a 3 or 4 week period of getting them myself. 
    These are called Kernel Panics.
    They are often a result of a corrupt OS or dodgy cheap RAM.
    The best method to solve them is to work through Dr Smoke's Kernel Panic resolution guide.
    You'll need to open the Optical drive tray at some point so here's two methods to try:
    ❶ Hold down the mouse button during start-up.
    ❷ Switch on/reboot
    After the startup chime, press and hold the keys <command/apple> <alt/option> <o> and <f> ( ⌥ ⌘ F O )
    At the command line prompt, type: eject cd
    Hit Return, the optical drive will then eject.
    Insert the Install disk.
    Type: mac-boot
    Hit return.
    The manual button/pin hole is present on the drive but you need to have the case hanging half open to be able to reach it in my experience...
    HTH
    mrtotes

  • HT1863 my iphone is theft imei number **** please help

    MY IPHONE IS THEFT PLEASE HELP IMEI NUMBER ****
    <Edited By Host>

    You posted in the iPad forum instead of the iPhone forum. To get answers to your question, next time post in the proper forum. See https://discussions.apple.com/index.jspa  I'll request that Apple relocate your post.
    Report to police along with serial number. Change all your passwords.
    These links apply to iPads, but also to iPhones.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Report Stolen iPad
    http://www.stolenlostfound.org/report-stolen-ipad
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • Recycled Online Number (Please help)

    Hello Skype friends,
    I bought a skype online number, the thing is it appears that number is recycled because I have been receiving lots of calls and all of the persons who call ask for the same person, it's driving me nuts!
    So my questions are::
    -Is there a way to change the number? And if not: How can I CANCEL that number so in case someone calls it doesn't ring on my account anymore? (I'm willing to lose the money because there's calls all day)
    -Is there a way to know if the number is recycled before buying one? 
    Please help me.
    I really appreciate your help.

    I have the same problem - can anyone help?

Maybe you are looking for

  • How do I tell if a File is ANSI, unicode or UTF8?

    I have a jumble of file types - they should all be the same, but they are not. How do I tell which type a file has been saved in? (and how do I tell a file to save in a certain type?)

  • Error Deploying a Process Flow

    Hi All, Each time I try to deploy a process flow I created, I get the error "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor". The Oracle workflow engine is on a separate machine and all connection parameter

  • Mise à jour 6 , bugs des applications.

    Depuis que j'ai téléchargé la nouvelle mise à jour 6 pour l'iPhone 4, certaine de les applications bugg ! Lorsque je veux y aller sur l'une d'elles , ils me demande mon identifiant et mon mot de passe Apple , je le rentre , et l'application se ferme

  • 11G install help

    I am trying to install 11g on windows 32 bit and having issues. My config task failed at 'error executing opmnctl for coreapplication obips1. The diagnostic log says "Process ping failed Source Address request cannot be found" None the less i continu

  • T440p hotkey integration driver fail - win7 x64

    Brand new T440p laptop out of the box. Imaged with preconfigured company Windows 7 x64 image I have used hundreds of times before via MDT. WDS packaged T440p drivers (downloaded from Lenovo website) are injected as part of the MDT installation proces