Handbrake no longer works. help or other programs?

I have used handbrake for a little over a year. I downloaded the newest one today (because I upgraded my hard drive I don't have the old one).
Well every time I rip a DVD it runs realy fast and works great, then when I try to open it QT or iT will close never playing the movie.

Ok then

Similar Messages

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • Nothing will print. My printer works with every other program, but not this one!

    Nothing will print. My printer works with every other program, but not this one!

    I see the printer, in blue when I click on the hardware tab. Actually there are 2 things listed that have to do with the printer.
    The first one is called:
                    HP Photosmart Prem C410 series (DOT4PRIN.... and under the Type it is listed as IEEE1284.4...
    The next is listed as:
                    HP Phototsmart Prem C410 series and under the Type heading it says Printers.
    I don't know which one to pick.  So when I choose the name highlighted in blue, what do I do to change the name?

  • FF 3.6.6 :: Address Bar No Longer Works - Help?

    After updating Firefox to version 3.6.6 on Windows XP SP 3, the address bar no longer works for navigating to pages. When entering any URL and pressing enter, the page reloads with google.com (which is my homepage in FF). Clicking some bookmarks works. However, navigating from search results in Google does not. I have tried reinstalling. Also, I have tried to start up in Safe Mode. Nothing helps. Any help would be greatly appreciated.
    == This happened ==
    Every time Firefox opened
    == After Updating to FF 3.6.6 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • My 'run with administrative privileges' script no longer works - help

    Hey all. I have an applescript that shuts down the computer that I made a while back. I pulled it out today to use it and it no longer works. Here's part of the code I'm having trouble with:
    do shell script ¬
    "sudo shutdown -h now" password "myadminpassword" with administrator privileges
    On old machines this worked great, I would just put the admin password where myadminpassword is and it would work perfectly. Now though, I run it on my machine and I get the prompt to enter my admin username and password before it will shutdown.
    Now this is going on a remote install so I need it to work. Any ideas? The machine is running snow leopard, but it seems to still work on an old leopard macbook pro.

    Well, for one, do not use sudo in do shell script.
    The whole 'with administrator privileges' part takes care of elevating your privileges. sudo has no place in do shell script.
    Don't know if that's your issue, but it's the first thing I'd fix.
    If that doesn't help, are you running the script as your admin user?
    Nowhere in your script are you defining the username to run the command as, therefore it will attempt to run as the current user who may not be the same as your admin user, nor have the same password. You might need to include the username:
    do shell script "shutdown -h now" user name "admin" password "myadminpassword" with administrator privileges

  • IMac sound is no longer working- help?

    This morning i turned on my iMac and the sound is no longer working. When i turn on the computer the start up chime in audible, but after that nothing can be heard through itunes, safari, or anything. When i hit the volume keys on my keyboard it shows that the volume is maxed and underneathe there is a circle with a cross through it. I first tried to resolve the problem by going into system preferernces and disconnecting my keyboard from bluetooth and then reconnecting. That didnt work, so i then put my computer to sleep, then restarted it, then shut it down. Still nothing has changed. I followed this up by resetting the SMC and PRAM, but that also has done nothing. Im not entirely sure what to do! If someone could help me out thatd be great. I feel like there should be a simple solution to this problem, but im just missing it!

    Reset the SMC and PRAM each at least 2-3 times. I don't know where you got instructions for these resets so please navigate to Intel iMac SMC and PRAM resets for correct instructions just in case.

  • How to get the layout values in F4 help from Other program ?

    Hello All,
           I have a program P1which calls other program P2 .
    When I execute P1 I have a parameter for Layout with F4.
    When I press  F4 I want the help values which are there in the lay out of the other program P2.
    For this I'm using the following code :-
    DATA  spec_layout        TYPE  disvariant.  "specific layout
    DATA  v_save             TYPE  c.           "Save mode
    DATA  gs_variant         TYPE  disvariant.  "for parameter IS_VARIANT
    DATA  gv_exit            TYPE  c.
    PARAMETERS:  p_vari  TYPE disvariant-variant.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
    *  gs_variant-report  = sy-repid.
    *  gs_variant-variant = p_vari.
      CLEAR gs_variant.
      MOVE  '/BSHP/FP_CALL_OF_PLAN' TO gs_variant-report. "Report von Original CALL_OF_PLAN
      gs_variant-variant = p_vari.
      CALL FUNCTION 'LVC_VARIANT_F4'
        EXPORTING
          is_variant = gs_variant
          i_save     = v_save
        IMPORTING
          e_exit     = gv_exit
          es_variant = spec_layout
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF gv_exit NE 'X'.
    *     set name of layout on selection screen
          p_vari    = spec_layout-variant.
        ENDIF.
      ENDIF.
    But still I'm not able to get the values.
    Can anyone help me out ?
    Regards,
    Deepu.K
    null

    This question has been asked and answered many times before.  Please read the following blog for a good start:
    /people/yohan.kariyawasan/blog/2009/03/18/ui-framework-news-f4-help
    Before posting further please do a search in this forum and also read the rules of engagement listed here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    I'm now locking this thread as it is a duplicate of an already answered question.
    Thank you,
    Stephen
    CRM Forum Moderator

  • Rename roll no longer works - help

    In iPhoto (6.0.5) I used to be able to change the roll name by simply clicking on the existing name (e.g. roll 243) in the info panel at the bottom left, and then typing in a new name. This no longer works. When I click on the name in the info panel the name is momentarily highlighted, but then dims and will not permit me to rename it. What am I doing wrong? Thanks!

    bobio:
    Run Disk Utility and repair disk permissons. Also make sure you have the Helvetica font enabled for your Mac and account. It's a long shot but worth a try
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application, iPhoto dB file backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • "prev"and "next" buttons no longer work on Yahoo/other slideshows. Still work in Chrome.

    In updating for FFX 6 and 7, the next and prev buttons no longer work in slideshows on Yahoo news and similar sites. Sometimes the status bar shows the links as javascript: void or :null. Sometimes longer links. All javaconsole add-ins are shown as incompatible with these version of FFX.

    i woudnt suggest it, but if your warranty is up it could just be a bad connection from the wheel...what generation do you have? my 4th generation 20 gig ceased to function and it was because somehow one of the cables had a bad connection. i took it to the apple store and they gave me an estimate for something i wasnt willing to pay on a 2 year old ipod so i just winged dissasembleing it and after taking apart the whole thing and reassembling it worked fine.

  • I have the PCI-6602 device and it works with my others programs.

    I downloaded the file : LabVIEW Express AI Using External Sample Clock (Scan Clock) from an NI 6602 from this website. but I get the message error :Error -200220 occurred at DAQmx when I run it.

    Hi,
    Check to make sure your device is present in the Measurement and Automation Explorer under DAQmx devices. You may have configured the device/chassis in Traditional NI-DAQ and not NI-DAQmx. Also check your device ID or string identifier to make sure that it matches with the ID in MAX.
    Hope this helps,
    Nick

  • Screen no longer works, help getting set up with external LCD?

    So my Titanium Macbook Pro's screen went out yesterday and it's no longer covered so I've been trying to figure out how to get it to work with an external LCD monitor.
    I can get it to boot up, and I can even get it to open itunes via Spotlight and hit play and hear music, so I know all else is (hopefully) fine.
    The monitor I have is an "Acer LCD Monitor AL1916W A" and I have the adaptor going out of my MBP to a VGA cord that then connects to the Acer.
    I read this page to get the idea to do this: http://osxdaily.com/2010/12/21/broken-macbook-pro-screen-turn-it-into-a-desktop- mac/
    But I cannot get the Acer screen to recognize the MBP and show an image. The Acer powers up and shows it's logo but then says 'no signal'.
    I tried to blindly Spotlight > System Preferences > Displays but can't get anywhere from there. I tried to restart it and close the screen but no-go.
    Help?

    Answered here: http://discussions.apple.com/thread.jspa?threadID=2725868&tstart=0

  • ITunes update to 10.5 not working and stopped other programs?

    I tried to update my iTunes today to 10.5 ready to update my iPhone to the iOS 5, but now its ruined everything!
    It said that it didn't download properly and to uninstall and try again so I did, a lot.
    Now, Safari and my Microsoft Office programs wont work either.
    It keeps saying 'side-by-side configuration' isn't there or something.
    I don't understand why it's doing this.
    Help with getting itunes and safari back?
    I've tried restarting the computer numerous times and system reboot/restore but no luck.

    Good Luck,
    I have tried 6 times to follow the step by step instruction to get this down load complete, failed everytime. Customer service suck.  Called 5 times and got to speak with one person during all those calls.  All he did was sent email to me regarding the complete uninstall instructions for the i tunes system.  I followed every instruction line by line, again 5 times and got absolutley nothing.   Been working on this since Tuesday.  Ready to throw phone out the window.  Does anyone else have a solution that will actually work.

  • New ISP, Time Capsule No Longer Works - help!

    OK, today, I changed ISP with a new router.
    Everything was going OK, all iOS devices, all wi-fi printers, Apple TV, and Airport Express all connected and worked fine.  The only issue is my Time Capsule. I just can't get it to work.
    It was setup to 'Join An Existing Wi-fi Network' and everything used to be fine with my TM backups going to it.
    Now, Airport Utility (6.2) won't see it at all over wi-fi, and if I connect to the router via ethernet, AU sees it.  I tried to change the configuration, but there is no 'Connect to an Existing Wi-fi network' available, just 'create new' or 'extend existing'.
    Even if I try either of these options, it doesn't work. After a couple of minutes, I get a 'an error occurred when trying to update the configuration' message.
    I have tried holding in the reset button, but to no avail.
    Can anyone help?  I'm on 10.8, by the way.

    Join a wireless network is not in v6 utility.. thanks so much apple.. you are a great help.
    Mind you .. we do not recommend at any time using "join a wireless network".. it is slow and likely to cause issues at some point with corrupting the backup.
    The best idea is to install v5.6 utility on your Mac.. this can be done.. google for various methods.. here is mine which is free.. others use a tool you have to pay for.
    How to load 5.6 into ML.
    1. Download 5.6 for Lion.
    http://support.apple.com/kb/DL1482
    Click to open the dmg but do not attempt to install the pkg.. it won't work anyway.
    2. Download and install unpkg.
    http://www.timdoug.com/unpkg/
    Run unpkg on the desktop.. it is very simple.. drag the AirPortUtility56.pkg file over to unpkg.. and it will create a new directory of the same name on the desktop.. drill down.. applications utilities .. there lo and behold is Airport utility 5.6 .. drag it to your main utilities directory or just run it from current location.
    You cannot uninstall 6.1 (now 6.2 if you updated) so don't try.. and you cannot or should not run them both at the same time.. so just ignore the toyland version.. the plastic hammer.. and start using 5.6.. a real tool.
    For screen shots see this post.
    https://discussions.apple.com/thread/4668746?tstart=0
    If you want to do the job correctly though.. start from a factory reset.
    To do this hold in reset button and then power on.. keep holding in reset without releasing for about 10sec until the front led flashes rapidly.
    Do all setups using ethernet. I recommend you bridge the TC and use roaming setup for wireless. It works very well.
    http://support.apple.com/kb/HT4260
    Even if you mix with a non-apple router, you simply create a wireless network on the TC.
    Exactly the same name (SSID) as the main router .. same security WPA2 Personal = WPA2 AES and is the only suitable security nowadays.
    Same password for wireless. 8-12 characters is enough .. up to 20 if paranoid. pure alphanumeric.
    The only thing different is wireless channels. Set them both to auto may work or maybe chaos.
    At 2.4ghz there are only three non-overlapping channels.. make sure the main router is set to 20mhz only.. and use one of the channels, 1, 6, 11. Then set the TC to one remaining.
    5ghz in the TC use lower channels.. 36, 38, 40 etc work much better than 150's
    So in your real utility it looks like this.

  • HT4897 I have forgotten my original MobileMe account password and the email address that I used to use to retrieve my password no longer works - help!

    I have just upgraded to mountain lion and want to use the icloud. However, years ago I set up a mobile me account and can not remember my password. The email account I set up originally as a default email no longer exists so when I try and set up a new password I am unable to because I can't access the email address I put on file. Can anybody help?

    Are you particularly attached to your ex-MobileMe email address? - it sounds as if you haven't actually used it for very long time. Your easiest option would be to use the ID you have logged in with here to open an iCloud account and choose a new @icloud.com address.
    If you really want to reactivate the MobileMe email address (which is also the ID for that account) you will need to contact Support. Go to https://expresslane.apple.com ; select 'All Products and Services' in the first column, 'More Products and Services' in the second column, then 'Apple ID' in the third column. In the next page select 'Other Apple ID Topics' in the first column then 'Lost or forgotten Apple ID password' and click 'Continue'. You will be offered options to contact Apple by phone.

  • After installing 4 add ons and restarting, firefox no longer works - help!

    On my PC running Windows 7, I installed these 4 add ons: Measure it, Web Developer, Colorzilla, and Screenshot, restarting Firefox, and only the home page came up, none of my bookmarks were working. I had to manually type in a web address for anything to work. Then that stopped working too. I uninstalled all of the add ons mentioned, and restarted the computer. Now nothing works, only the browser comes up, but with an empty tab, the home page icon does not work either. HELP!

    Well, what seemed to work was I uninstalled another add on I had that had to do with gaming and that seemed to do the trick. Wierd.
    Thanks anyways.

Maybe you are looking for

  • Oh NO! iTunes error -50, now won't open, help!

    I was editing some song data, I received a -50 error - stating the library sould not be saved. I kept getting the error, tried closing but it locked up. So I had to force quit. Now when I open iTunes, it checks the database, then I get the text menu

  • Photo Stream not working on my Mac since upgrade to Mountain Lion

    I've noticed that Photo Stream isn't downloading new photos that I've taken on my iPhone since I upgraded to Mountain Lion. My iPad is syncing just fine. I've tried both iPhoto and Aperture on my Mac, neither seem to be receiving new photos in the st

  • 'Photo's resizing? Best size for best quality?

    Hi, I want to put a London underground tube (metro) map on the 'Photos' section on my iPhone. I know that iTunes resizes all images before they go onto the phone, but that is the best size and quality to ensure the image comes out the clearest on the

  • Paging in E-Text

    We need to have paging in the E-text Report . Below are the Requirments For a Company A there might be 8 Accounts and we want to show just 5 on one page and next 3 on the 2nd page followed by total . Please can some one help me to acheive this . A "P

  • Service Order Tolerance

    Hi, A PO was created with document type FO in the system. Overall Limit is 135 Expected Value is 135 and Actual value is 135. But when I look at the net Price, it is 0. How can that happen. I checked the PO for changes and there seem to be no changes