More questions about bitrate...

Sorry that this is posted twice. It occured to me that it would be better to post it as a separate question since the previous is now marked solved... Anyway:
Hi there Jim. just wanted to say that your suggestons worked. Many thanks. However, I am still curious as to why the dvd burned the first time round on such a high bitrate.
In fact after having concluded that the only difference of any significance between the first and second projects, was the additional audio, I did try removing it and burning the project again but had no success. That was before my first post on this forum. This seems to me to represent an inconsistency that I cannot fathom. Any insights?
While we're at it I'm curious about the one pass CBR versus one and 2 pass VBR what's the difference ans is there a significant quality variation? I noticed there was only one variable bitrate option on the CBR preference you had suggested. What will get me the best possible quality video and audio with the amount of video you mentioned and still actually build... as a rule anyway. Any further suggestions would be appreciated.
BTW the late reply is due to a bad link from my end.
Thanks again.
4 x 2.5 GHz PowerPC G5   Mac OS X (10.4.6)   8 GB DDR2 SDRam</

Sorry that this is posted twice. It occured to me that it would be better to post it as a separate question since the previous is now marked solved... Anyway:
Hi there Jim. just wanted to say that your suggestons worked. Many thanks. However, I am still curious as to why the dvd burned the first time round on such a high bitrate.
In fact after having concluded that the only difference of any significance between the first and second projects, was the additional audio, I did try removing it and burning the project again but had no success. That was before my first post on this forum. This seems to me to represent an inconsistency that I cannot fathom. Any insights?
While we're at it I'm curious about the one pass CBR versus one and 2 pass VBR what's the difference ans is there a significant quality variation? I noticed there was only one variable bitrate option on the CBR preference you had suggested. What will get me the best possible quality video and audio with the amount of video you mentioned and still actually build... as a rule anyway. Any further suggestions would be appreciated.
BTW the late reply is due to a bad link from my end.
Thanks again.
4 x 2.5 GHz PowerPC G5   Mac OS X (10.4.6)   8 GB DDR2 SDRam</

Similar Messages

  • More questions about pointers

    Sorry to post so many threads -- I hope I'm not pinching any nerves around here, but I've been in a programming trance recently, and I'm trying to learn as much as I can. If anyone has time to spare, there's still some things about pointers I'd like to try to understand. To start with, consider this simple character pointer declaration:
    char * pChar;
    What I'd like to know is what exactly is going on internally when this statement is compiled (before any other pointer or string literal assignment or anything like that -- just the declaration above). I mean, in terms of memory addresses and what not, what is happening here? This pointer variable would be created on the stack, right? What else happens?
    To expand on this question, let's say the above statement is the only statement in the entire program (so, again, there's no additional assignments to a string literal like +pChar = "a string"+ or to a character's address like +pChar = &charVariable+ -- I simply declare the character pointer +char * pChar+ and leave it at that.) If I then add the following printf() statement after it, like so:
    char * pChar;
    printf("%c", pChar);
    then the character 'K' is printed to the console. Alternatively, if I dereference pChar in the same printf() statement, like so:
    char * pChar;
    printf("%c", *pChar);
    then the character '[' (an opening brace) is printed to the console. All this seems odd to me given that the pointer hasn't been assigned to anything, so I would think it would produce a null value or something like that.
    I would really like to understand all this. Even after all the work I've put into trying to understand pointers, and even after all the help I've gotten from the devs around here, I still feel lost whenever I go back to pointers after having left them alone for even a short period of time.
    Any information on this topic, no matter how short or how long, will be very, very much appreciated. Thanks again.

    Yes -- I was referring to a local variable. Should have specified -- sorry about that.
    So we have a random address consisting of 4 bytes, e.g. in hex: [FE] [00] [09] [4B]. Assume when we tell printf to make a single char out of those bytes, it will select the lowest byte in the address (for extra credit, the student may determine if this assumption is true on his or her Mac; however students who fail to close this thread until that question is resolved will get no credit).
    hehe -- are you referring to the time you gave me that pointers exercise to do and it took me like two weeks to actually get around to actually doing it? Sorry about that, Ray -- it just took me awhile to find a time where I could put as much time and effort into as I wanted to (I don't know if you ever got around to reading the response, but I did put quite a lot of time and effort into that exercise, and it really was very helpful to me, so it didn't go to waste by any means, and I really appreciate your putting it up there for me to do). Anyways, the student apologizes to the instructor for that.
    This time around, though, the student would like to respond promptly to the instructor's exercise in order to receive his extra credit. The question that the instructor asked was to find out if "this assumption is true on his or her Mac" (this particular student is a he, by the way). I'm confused, though, about what particular assumption I'm supposed to be confirming. In the paragraph above, you said "we declare the char pointer pChar, and we assume that its value is random" -- is this the assumption I'm supposed to be confirming?
    I had changed the code a few times over the last 24 hours since I wrote this thread, and this time, when I went back and ran the following code:
    char * pChar;
    printf("%c", pChar);
    The student didn't get anything but a blank line. Instead of 'K' like before, nothing was written to the console that could be seen. Maybe it was a space or something this time, and that's why it wasn't visible? So, the student added another declaration after the first and used the same printf() statement to print the char-formatted value of the first char pointer, like so:
    char * pChar;
    char * pChar2;
    printf("%c", pChar);
    And this time I got a 'K' like before. If I change the printf() statement to print pChar2 instead of pChar then I get the space (or blank line or whatever) again. If I add another declaration, before the other two this time instead of after, like so:
    char * pChar3;
    char * pChar;
    char * pChar2;
    printf("%c", pChar);
    This time I still get 'K' for pChar. If I change the printf() statement to print pChar2, I get the blank line again. If I change the printf() statement to print pChar3, I get the blank line with it as well.
    I don't really know what to make of all that to be honest -- it seems like the pointer's value is pretty random to me, though. I don't know if that's the assumption you wanted me to check on or not. The only other one I can think of that you may have been referring to is when you mentioned that some compilers will check to see if the printf() function's arguments match the format specifiers, but I don't know what code I should run to find out if this is true or not for my compiler. I tried using printf() to print an int with a %c specifier and that ran fine, and when I did the opposite and used it to print a char with a %d specifier that worked fine too. But characters are integers (right?), so that's no surprise. If I declare an int, however, and try to use printf() to print it with a %s specifier, then the debugger comes up with a signal 10 error after the program starts, but I don't get any warnings ahead of time, so maybe that means the answer is no (meaning that the compiler does not check to see if the arguments match the format specifiers)
    Anyways, I think the student is butchering the instructor's exercise completely. The student feels very unintellegent at the moment, but he wanted to try...
    If the address stored in pChar is random, then the contents at that address will also be random.
    I would have thought that if the address is random, then the contents of that address would be empty since it is not an address that's being used, right? Does this mean that all memory addresses have something in them, even if they are not in use? I mean the frequently used "mailbox" analogy for pointers says that when you declare a variable, an empty mailbox is used to hold it, right? And if that's the case, doesn't that mean that the empty mailboxes have no contents? So how would the contents be random? I don't if any of that made any sense or not -- feel free to ignore me. I can't seem to get myself to understand how all this memory address business and everything surrounding it works -- I feel very lost.
    What do you expect to happen in this case?
    You asked this about running the following code:
    char * pChar;
    *pChar = 'A';
    Honestly, I really have no idea what to expect here. I mean, I know that usually, before you dereference a pointer to assign the value it points to to something (like in the second statement above), you usually assign the pointer to the address of another variable or something (like +pChar = &charVariable+). So, the student proceeded to cheat and run this code in his compiler, at which pointer the program ran, but he received a signal 10 error. He doesn't know what to make of this.
    My understanding of pointers is much, much better than what it used to be, and most of that is thanks to you and the other devs around here in previous threads I've started. Nevertheless, I still feel like I don't know much of anything in the realm of things when it comes to pointers.
    Thanks to the rest of you guys as well for all your responses. They were all helpful, and I read them all thoroughly, but it seems like, for every answer I get, five more questions come up that I'm equally confused about. I'm determined, though -- I'm not going to give up until I understand how all this works, so thanks to everyone for continually answering my questions.

  • One more question about "snap to" points in audio objects

    sorry, one more question people.............. is there a way to set a "snap to" point in an audio region? Can I have logic set a point, or an "anchor" within an audio region that would coincide with the cursor. Once I get the cursor to a bar or a beat, is there a command that would allow a "snap to" point to be created in an audio object? That way I could clean up any "noise" or "chatter" at the beginning of an audio bounce or any audio object, and still have no problem pasting it all over my arrangement. I'm sure it's in here somewhere, but can't find it in the manual..
    thanks again!!!

    The anchor point in an audio region can be moved to wherever you want it to be. Let's say you recorded a loud piano bass note and afterwards you trimmed the file so that the attack of this sound happens right at the beginning of the audio region. Your anchor point will now coincide with the begnning of that region. This means that you can place that audio at, say, bar 37 and it's guaranteed that the attack of that sound will play exactly at bar 37. In this case anchor point = position of audio region in the Arrange Window.
    Even though you haven't played a MIDI note into the song in order to place this audio region, an "event" is generated for this sound which can be viewed in a special version of the Event Editor which shows the position of all audio regions in the arrangement. Access this by simply clicking on a blank area of the Arrange window and then opening the Event Editor.
    So let's say this sound is positioned at bar 37. Open the Event Editor (as described above) and you'll see an event at 37 1 1 1 and the name of that audio region to its right. In this case, the event's position = the start of the sound file = the position of the anchor within that sound file. If you changed the position of that event to 38, or 109, or 3, that audio region will be "triggered" at any of those positions. That sound will always "attack" on a downbeat.
    Now let's say you reversed that pinao note in order to create a dramatic swell into a section of your song. (Open the sample editor and use the Reverse function). At this point, the anchor point is still positioned at the beginning of the file! Play back the sequence (from our bar 37) and the audio will play back from bar 37, only backwards this time; the peak of that piano note will be at some point later than 37.
    So let's say you wanted to position this sound so that it hits exactly on the downbeat of bar 37. How do you do it? Well, you could always slide the audio file in the Arrange Window and try to line up the attack of the audio waveform with the downbeat of bar 37, but there's an easier way...
    Open the sample editor and move the anchor point to the end of the file, coinciding with the peak of the waveform (the piano's attack is now at the end because we reversed the audio). Next, close the sample editor window, click on a blank area in the Arrange Window and open the Event Editor. You'll see that this audio region is still positioned at bar 37, but the actual beginning of the sound file now starts before bar 37. Now when you play back, Logic will start playing that sound file before bar 37, but the audio's peak will be lined up at bar 37.

  • One more question about upgrading HD

    EVeryone was really helpful last time, I have one final question:
    Does the name matter for the HD?
    I have bought my HD, used SuperDuper and am actually already working off the new HD via Firewire.
    Does it matter what I NAME the new Drive? When I used Super Duper I called it "New Startup". The current HD is called "Macintosh HD". Is this a problem?
    Thanks guys!

    @Niel: How about localized chars (ä, ß, î, etc.) and such ones that may have a special technical meaning (like /, *, -) ?

  • A question about bitrate settings

    I'm operating under an assumption that may be false.. if i set the bitrate to 600 for video + 96 for audio.. am I actually encoding to and pushing out 696k?  It seems anytime I push more than this, I have more customers claiming to get stuttering.. and I'm sending through one of the biggest CNDs in the world. Maybe I just need a better understanding of how bitrate compares to displayed quality?  Doesn't seem to matter what size of player I'm using.. I just need a better quality of picture without a ton of stuttering!

    To me it seems that your customers don't have sufficient bandwidth to play a high bitrate stream.
    I am sure only some of customers might be facing this problem and not all of them. You can do multi-bitrate encoding and instruct the subscribing flash player client to dynamically switch to a lower bandwidth stream when network is not sufficient.

  • More Questions about InetAddress

    Hello,
    I have an app that I am working on that resolves Hostnames to IP's for this app there are and returns a formatted file that interfaces with another application. I have a simplified version of the code below.
    String newline = "\n";
    for(int i=0;i<array.length;++i)
              try
                        Address = InetAddress.getByName(array);
    stringbuffer.append(Address + newline);
    catch(UnknownHostException e)
    stringbuffer.append("***Does Not Exist***" + newline);
    The code that I am currently using works however, it takes very large amounts of time to complete. The reason for this is not all of the hostnames are setup, so there's a fairly decent amount of UnknownHostExceptions. The valid addresses resolve in milliseconds however the UnknownHostExceptions "resolve" in quite a few seconds as opposed to the milliseconds. The results in a problem considering there are over 600 hostnames to resolve. So here's the question.
    Is there a way to decrease the amount of time that the UnknownHostExceptions take? I have spent days searching and have come up with not even a glimpse of hope.
    If that isn't possible would setting up multiple threads to handle different portions of the array at the same time be a wise venture?
    If not does anyone have any suggestions?
    They would be much appreciated                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Can anyone suggest a decent book on Thread pooling or a book that has a descent section on thread pooling?
    I have been searching online for hours. I think I understand the concept of Thread pooling I'm just having some trouble applying it. I need something a little more thorough than the articles I've come across.

  • More questions about the 6gb zen ph

    Is the 6GB one better than the 5GB? I mean I know that it is more GB, but does the 6GB still have everything the 5 one has plus it can now show pictures? How much will it cost? $299.99
    sorry if these questions have been already asked. I am a NEWBIE. I have only been here for 2 days. so lighten up

    nnt3nd0 wrote:
    Can the Zen Micro Photo only do one thing at a time? Like you can't have pics and music at the same time? "The 5GB version will hold 6000 photos or 2500 songs*. " thats what the website says...im confused please help!
    That is referring to the maximum capacity if you were to only use it to play MP3's or only to use it for photo viewing.
    So yes, you can carry both MP3 (and other music formats for that matter) as well as pictures at the same time. One can even assume you'll be able to view photos while listening to music.

  • A few more questions about batteries

    Hi folks, new here.
    1. According to www.apple.com/batteries, we don't have to worry about this Nickel-based batteries stuff when charging (cause iPods are Lithium-based). If so, do I really need to charge for 4 hours the first time? Why?
    2. I've had to reboot my computer the first time Shuffle was charging, meaning the charge has been interrupted a few times. Does this affect my battery life?
    3. After 2 hours of first charge, the front light turned green. One minute later, I've had to reboot again. After that, the front light turned back to solid amber, only turning green again 1.5 hour later. Can someone please explain that?
    Very happy with my Shuffle. And congratulations for the quality of the forum.
    Thanks.

    Leo,
    I am not really sure about first-time charge. Mine was interrupt when charged at the first time too, and nothing seems wrong up to date.
    Lithium-ion batteries can be charged at anytime, on any duration. It does not matter if you charge it only 5 minutes, then use it for some hours, and charge again. You can safely reboot your computer while charging.
    When you plug-in iPod again (ie. reboot your computer) after it was fully charged, it is normal that it would continue to charge for an hour or so even it's just been fully charged. See a chart in www.apple.com/batteries. It tells you that it takes long time to fully charge the battery when the battery itself is almost full already.
    Hope this help.

  • More questions about WebLogic 7.0 clustering

              Hi Folks,
              I have weblogic 7.0 spX in my environment.
              Machine A(7001) contains AdminServer and Machine B(7002),C(7002) are managed servers.The
              entire configuration is in Machine A config.xml file.The config.xml file of Machine
              B and C have only server information.
              I created a cluster in Admin Box A and added Managed B and C into the cluster.Using
              iPlanet as a web server,"Cluster Address" have machine B and C ip:port.
              Q1: The cluster information is available in only AdminServer A config.xml file.If
              the whole box(sun solaris) goes down, what will happen to managed servers and
              cluster?
              Q2:We deploy an .ear file in Admin Server A and restart the service.As per the
              weblogic document, it should deploy the .ear automatically on managed box's.It
              does.But I don't see the whole .ear file in Machine B and C.Instead I am seeing
              the content of .ear file in exploded format.Why?
              Thank You,
              - Lara
              

              Hi Lara,
              There is patch available for this for 7.0 and this is fixed in sp2 and higher.
              If you are in the lower version just go to ".internal" folder in the managed server
              boxes and delete the console.war (after everytime you restart your mgd severs).
              I know this is dirty. but this is a work around
              Joe
              "Lara Man" <[email protected]> wrote:
              >
              >Thanks, Aravind.
              >
              >I do not want to enable independence mode due to security reasons.Please
              >check
              >http://xforce.iss.net/xforce/xfdb/12567
              >
              >Any other way?
              >
              >"Aravind Krishnasamy" <[email protected]> wrote:
              >>Weblogic has an option to enable MSI(Managed server independence). By
              >>enabling this feature on your managed server b & c, admin server will
              >>push
              >>config.xml, fileRelam.properties, SerializedSystemIni.dat etc., to all
              >>the
              >>managed server. Make sure you enable this functionality on only instance
              >>per
              >>sun server.
              >>
              >>When the admin server goes it should not affect the fuctionality of
              >running
              >>MS, since as described before all the information are cached. You cannot
              >>modify any configuration at this point of time. Due to MSI enabled you
              >>should be able to restart the managed server.
              >>
              >>Aravind
              >>
              >>> 2) We explode it to get access to the .jar files inside.
              >>>
              >>> Sam
              >>>
              >>> Lara Man wrote:
              >>> > Hi Folks,
              >>> >
              >>> > I have weblogic 7.0 spX in my environment.
              >>> >
              >>> > Machine A(7001) contains AdminServer and Machine B(7002),C(7002)
              >>are
              >>managed servers.The
              >>> > entire configuration is in Machine A config.xml file.The config.xml
              >>file
              >>of Machine
              >>> > B and C have only server information.
              >>> >
              >>> > I created a cluster in Admin Box A and added Managed B and C into
              >>the
              >>cluster.Using
              >>> > iPlanet as a web server,"Cluster Address" have machine B and C ip:port.
              >>> >
              >>> > Q1: The cluster information is available in only AdminServer A
              >>config.xml file.If
              >>> > the whole box(sun solaris) goes down, what will happen to managed
              >>servers and
              >>> > cluster?
              >>> >
              >>> > Q2:We deploy an .ear file in Admin Server A and restart the service.As
              >>per the
              >>> > weblogic document, it should deploy the .ear automatically on managed
              >>box's.It
              >>> > does.But I don't see the whole .ear file in Machine B and C.Instead
              >>I am
              >>seeing
              >>> > the content of .ear file in exploded format.Why?
              >>> >
              >>> > Thank You,
              >>> >
              >>> > - Lara
              >>>
              >>
              >>
              >
              

  • More questions about iphone family plan - second line regular phone

    I am planning to switch from a verizon family plan(2 phones) to att family plan with 1 3g iphone and one regular phone.
    I will get the iphone and my wife won't
    what is the best free phone to get from att ?
    and how can i do this in apple retail store? they don't sell other phones right?
    don't want to go to att store because they usually out of stock of iphone...

    I would say your best bet is to go to an apple store and buy your iphone. Apple stores do not carry any other AT&T phones, and AT&T stores do not have many free phones. Once you buy your phone register online with AT&T and add a line there, they have tons of free phones online and ship second day air.

  • More questions about networking....

    I have my server and clients set up to the point where they are relaying the information back and forth and doing the appropriate things with that information. The problem is that on one client the fighter (im doing a fighting game) moves fast, but on the other client it doesnt move as much or as fast. is there any reason this might be happening due to my code or something?

    Yes, most likely it's due to your code.

  • A question about iwork and microsoft office

    what's the different between I download iwork on app stores and buy iwork software?
    and one more question about Pages in iwork is that  can Microsoft office word open the document create by Pages ?
    Thanks.

    Sandy.zuoxy wrote:
    what's the different between I download iwork on app stores and buy iwork software?
    They're the same.
    Sandy.zuoxy wrote:
    and one more question about Pages in iwork is that  can Microsoft office word open the document create by Pages ?
    Yes, especially if you save the document in Word format.
    You can also save it in PDF and a simple text file (but the layout could be modified if you open it in Office).

  • I have a Macbook Pro june 2011... I have 8GB ram but I only have 256mb VRAM... I've read some other questions about this and I realized... Why do I not have 560mb of VRAM since I have 8GB of RAM? Is there any way to get more VRAM to play games on steam?

    I have a Macbook Pro june 2011... I have 8GB ram but I only have 256mb VRAM...
    I've read some other questions about this and I realized... Why do I not have 560mb of VRAM since I have 8GB of RAM?
    Is there any way to get more VRAM to play games on steam?
    I've learned  by reading other topics that I can't upgrade my graphics card on my Macbook Pro because it's soldered into the motherboard or somthing like that, but please tell me if there is any way to get more video ram by chaning some setting or upgrading something else. I'd also like to know why I only have 256MB of VRAM when I have 8GB of RAM, since I have 8GB of RAM I thought I was supposed to have 560mb of VRAM...
    So the two questions are...
    Is there any way to upgrade my VRAM, so that I can play games on steam?
    Why do I only have 256MB VRAM when I have 8GB total RAM?
    Other Info:
    I have a quad core i7 Processor.
    My graphcics card is the AMD Radeon HD 6490M.
    I am also trying to play games on my BOOTCAMPed side of my mac, or my Windows 7 Professional side.
    THANK YOU SO MUCH IF YOU CAN REPLY,
    Dylan

    The only two items that a user can change on a MBP are the RAM and HDD (Retinas not included).  You have what the unit came with and the only way you will be able to change that is to purchase a MBP with superior graphics
    If you are very much into gaming, the I suggest A PC.  They are far superior for that type of application to a MBP.
    Ciao.

  • Round trip workflow with proxies between Premiere and AE / a more general question about how these programs work?

    Hi all,
    I'm new to editing with proxies in Premiere and have some questions about how to handle the relationship with After Effects. Say I have a rough cut (with proxies) and I want to send it to AE to do some effects. The simplest thing to do seems to be to replace the proxies with the originals in Premiere, send the project to AE and do my thing. But if I then want to send the project back to Premiere, it will involve the original files, which are too machine-intensive for me to edit. In theory, it seems like there should be a way to send the project with original footage to AE, do effects, send it back to Premiere, and then replace it with proxies to do further editing while retaining the effects.
    This leads to a confusion about how AE works. When I do an effect, am I correct in assuming that it does nothing to the original file? If that's the case, it seems like it shouldn't matter (in the editing stage) what file AE "applies" an effect to (proxy or original). But I feel like there's a hitch in this workflow. The same question could also be asked about going back and forth in Speed Grade.
    Perhaps there is no real answer to this and the best option is to save effects and grading for after I have picture lock, but sometimes that's not entirely possible or convenient, etc.
    Hopefully this makes some sense—It's a little hard to explain.
    Thanks.

    Hi Mark,
    Here are the specific sections of the manual that should give you the best explanation regarding the Check out/in workflow for FCP projects in Final Cut Server:
    Check out:
    http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =5
    Editing:
    http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =6
    Check in:
    http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =7
    -Daniel

  • Questions about your new HP Products? HP Expert Day: January 14th, 2015

    Thank you for coming to Expert Day! The event has now concluded.
    To find out about future events, please visit this page.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
     We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
     If you still have questions to ask, feel free to post them on the Forum – we always have experts online to help you out.
    So, what is HP Expert Day?
    Expert Day is an online event when HP employees join our Support Forums to answer questions about your HP products. And it’s FREE.
    Ok, how do I get started?
    It’s easy. Come out to the HP Support Forums, post your question, and wait for a response! We’ll have experts online covering our Notebook boards, Desktop boards, Tablet boards, and Printer and all-in-one boards.
    We’ll also be covering the commercial products on the HP Enterprise Business Community. We’ll have experts online covering select boards on the Printing and Digital Imaging and Desktops and Workstations categories.
    What if I need more information?
    For more information and a complete schedule of previous events, check out this post on the forums.
    Is Expert Day an English-only event?
    No. This time we’ll have experts and volunteers online across the globe, answering questions on the English, Simplified Chinese, and Korean forums. Here’s the information:
    Enterprise Business Forum: January 14th 7:00am to 12:00pm and 6:00pm to 11:00pm Pacific Time
    Korean Forum: January 15th 10am to 6pm Korea Time
    Simplified Chinese Forum: January 15th 10am to 6pm China Time
    Looking forward to seeing you on January 14th!
    I am an HP employee.

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

Maybe you are looking for