Help request for digital ou

This is possible to connect a digital out of a sound blaster audigy 2 to ampli of my home theater it use a optical cable ? if it possible how i make it please ?
Thanx alot

Hi Ralph
No, it seems that is not the problem. But it raises another question. The option "Allow Multple Simultaneous streams" is checked. It's not highlighted so I can't uncheck it even though it says "Quicktime's default is to play one stream at a time...[can change to multiple] although it may degrade performance if your available bandwidth is exceeded". Could this be a reason why the picture quality I see is not great? And if so, how can I change back to one stream?
I'm getting closer to an answer by trawling through other threads as I've been able to confirm that I can connect with a PC (correct Ports etc) - although not able to test whether the PC could hear me... I also now have an explanation why I can't do audio conferencing with a PC: "Cross-platform audio-only chats can only be done between iChat on the Mac and Trillian or Trillian Pro on the PC at this time. AIM 5.9 on the PC does not support this option with either client".
Thanks to all contributors!
Patricia
Apple iMac G5   Mac OS X (10.3.9)  

Similar Messages

  • Help request for Oracle DB Performance tuning

    I need some help on Oracle performance tuning.
    My environment is VB 6 frontend & Oracle 8
    in backend.
    The problem I am facing is particularly in
    muli-user environment. Some query which takes
    20 seconds to when there is only one user
    working in the network, takes more time
    (3 minutes to even 5 minutes) when there are
    4-5 users working in the network.
    What may be wrong ?
    Are there any parameters that I can
    fine tune ?
    We checked the resource utilization at the
    server level CPU utilization is max 50 %,
    Memoery utilization is 50 % (250 MB out of available 512 KB)
    null

    Hi Vinay,
    There can be many reasons for time delay.
    Here are some--
    1) You may not be releasing the locks on objects quickly after use.
    This can be obtained by querying v$locked_object.
    2) You may be holding many sessions concurrently and not closing the older ones.
    This u can get by querying v$session.
    These are some common problems in multi-user platform.
    R u using MTS?
    Yogesh.

  • Help Request for new developer

    How to calculate sum of formula column to print at break level and how to re intialize for sum of next group in oracle reports.
    Thanks

    Hi ,
    What have you tried ...????
    You should consult the Oracle Reports on-line help..It directs you step-by-step to accomplish it...
    However , you should post this to :Reports
    Greetings...
    Sim

  • Another help request for K7N2-delta

    I was trying to overclock my memory and when my system rebooted after saving my settings in the bios, I just get a black screen. On the D-bracket, the top two are red and hangs there, which, according to the manual, means that either my processor is damaged or not installed properly.
    I tried rebooting in safe mode by changing my J10 jumper and clearing the cmos but to no avail. Could I have damaged my CPU just by changing a setting?
    Specs:
    CPU: AMD Athlon Barton 2500+
    Motherboard: K7N2 Delta-ILSR
    Video card: Saphire Radeon 9600 Pro 256 mb AGP
    RAM: Corsair Value Select, PC2700, 256mb, 512 mb, and 1 gb of RAM.
    Hard drive 1 & 2: Seagate, 120gb, ATA100
    Hard drive 3: Western Digital, 500gb, ATA100
    Windows XP SP2
    Powersupply: Antec TruePower, 430w (3.3v/28a, 5v/36a, 12v/20a)

    Quote from: Stu on 18-February-08, 02:21:22
    Guys, the Insert key reset was for the K7N2-Delta2 series, which didn't have the safemode FSB jumper, it does not apply to the K7N2 Delta
    You're asking for trouble by a) using cheap value-branded RAM, and b) mixing sticks of different sizes
    Also you always get best results by running memory clock at same speed as CPU FSB clock.
    Take out all the sticks of RAM and have just one installed, then see if it will start up again
    I read a review of how well this memory overclocks, so I thought I'd give it a shot.  Also, the value-brand for Corsair is rated just under their XMS series; it's solid as far as I can tell.
    Anywho, I've always had the 256mb one in the slot ever since the incident anyways. Thanks for the warning, I never knew mixing different sizes had negative effects.
    Quote from: Maxwell Smart on 18-February-08, 02:18:35
    I own this board... it's not the insert key, but rather the delete key... so yes, as soon as your pc boots up, hit the delete key repeatedly (or hold it down) and then it will let you go into the BIOS.
    I'll try that once I get home. Thanks for the info!
    Quote from: HenryW on 18-February-08, 03:01:23
    "I was trying to overclock my memory..."
    There is a miss-print in your manual for the CPU D-LED, I had the same in my K7N2G-ILSR manual.
    So it's stuck at the hard drive or at the system power on? I'm assuming the latter since my hard drive shouldn't be having any problems.
    Yea, I don't know what I was thinking when I decided to try this. This is what I get for it, I guess.

  • Help request for newbie code

    So I've been trying to learn java and practicing with simple stuff first. I'm trying to create an application to calculate the price of a pizza. I've been having to problem with it, but I can't figure out why.
    The first is that I am doing something wrong with GridBagLayout - the objects in the window aren't set up the way I think they should be. I've been experimenting with removing objects separately and I think the problem might lay with one of my borders. But I'm not sure. The border gets created like this:
    //Border for Toppings
              toppingsPanel = new JPanel();
              toppingsBorder = BorderFactory.createEtchedBorder();
              toppingsBorder = BorderFactory.createTitledBorder(toppingsBorder, "Toppings");
              toppingsPanel.setBorder(toppingsBorder);
              toppingsPanel.add(sausageCheckBox, getConstraints(0,1,3,1,GridBagConstraints.WEST));
              toppingsPanel.add(olivesCheckBox, getConstraints(3,1,3,1,GridBagConstraints.WEST));
              toppingsPanel.add(pepparoniCheckBox, getConstraints(0,2,3,1,GridBagConstraints.WEST));
              toppingsPanel.add(mushroomsCheckBox, getConstraints(3,2,3,1,GridBagConstraints.WEST));
              toppingsPanel.add(salamiCheckBox, getConstraints(0,3,3,1,GridBagConstraints.WEST));
              toppingsPanel.add(anchoviesCheckBox, getConstraints(3,3,3,1,GridBagConstraints.WEST));
              add(toppingsPanel, getConstraints(0,1,6,3,GridBagConstraints.CENTER));The GridBagConstraints are set up like this:
    public GridBagConstraints getConstraints(int gridx, int gridy, int gridwidth, int gridheight, int anchor)
              GridBagConstraints c = new GridBagConstraints();
              c.insets = new Insets(5, 5, 5, 5);
              c.ipadx = 0;
              c.ipady = 0;
              c.gridx = gridx;
              c.gridy = gridy;
              c.gridwidth = gridwidth;
              c.gridheight = gridheight;
              c.anchor = anchor;
              return c;
         }The second problem I suspect is bigger because it feels like I've missed some major java concept. I've tried to set it up so that there is a JTextField in the window and when the user clicks the "Calculate" button, the price shows up in the text field. The way it is right now, when the user clicks the Calculate button, absolutely nothing happens. The code for what the buttons do is:
    public void actionPerformed(ActionEvent e)
              Object source = e.getSource();
              if (source == exitButton)
                   System.exit(0);
              else if (source == calculateButton)
                   new UserImput();
         }UserImput calculates a price and then edits the textfield. Is this the best way to even being going about this? I have three major worries about the UserImput class. The first is that I'm unsure if it should be extending the class that sets up the panel and buttons. I have it extending that class, right now. The second worry is with the double price, which I use to calculate the price based the size and toppings that are selected. To modify the textfield, my compiler tells me I can only use Strings, so I have converted the double to a string using the following code:
    String givePrice;
    public String toString(double price) {
              return givePrice;
         }The third worry I have is with the modification to the text field. I actually think this is all correct but the text field doesn't display the price so maybe I'm using this incorrectly?
    public void modifyFields(){
              textFieldWithPrice.setText(givePrice);
              textFieldWithPrice.setColumns(10);
              textFieldWithPrice.setEditable(false);
         }Thanks for bearing with me on this. I've been trying to figure out what I've been doing wrong the last few days by messing around and googling but mostly I just find intros telling me how to set things up in different situations. Apologies for what I am sure is badly-done code.

    I didn't try out your gridbag code snippet but it looks like you might be trying to use the
    gridwidth constraint to control the display size of the checkBoxes. It doesn't work that
    way.
    Here's one way to put this (what it seems you are trying to do) together.
    import java.awt.*;
    import java.awt.event.*;
    import java.text.NumberFormat;
    import javax.swing.*;
    public class PizzaPanel implements ActionListener {
        JCheckBox[] checkBoxes;
        JLabel label;
        NumberFormat nf = NumberFormat.getCurrencyInstance();
        public void actionPerformed(ActionEvent e) {
            String ac = e.getActionCommand();
            if(ac.equals("CALCULATE"))
                showPrice();
            if(ac.equals("EXIT"))
                System.exit(0);
        private void showPrice() {
            double basicPrice = 5.00;
            double pricePerTopping = 0.75;
            int numberOfToppings = 0;
            for(int j = 0; j < checkBoxes.length; j++) {
                if(checkBoxes[j].isSelected())
                    numberOfToppings++;
            double price = basicPrice +
                           numberOfToppings * pricePerTopping;
            label.setText(nf.format(price));
        private JPanel getWestPanel() {
            String[] ids = {
                "sausage",   "olives", "pepperoni",
                "mushrooms", "salami", "anchovies"
            checkBoxes = new JCheckBox[ids.length];
            JPanel panel = new JPanel(new GridBagLayout());
            panel.setBorder(BorderFactory.createTitledBorder(
                                BorderFactory.createEtchedBorder(),
                                "Toppings"));
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,15,2,0);
            gbc.weightx = 1.0;
            gbc.weighty = 1.0;
            gbc.anchor = GridBagConstraints.WEST;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            for(int j = 0; j < checkBoxes.length; j++) {
                checkBoxes[j] = new JCheckBox(ids[j]);
                panel.add(checkBoxes[j], gbc);
            return panel;
        private JLabel getCenter() {
            label = new JLabel(" ");
            label.setHorizontalAlignment(JLabel.CENTER);
            label.setBorder(BorderFactory.createEtchedBorder());
            Dimension d = label.getPreferredSize();
            d.width = 150;
            label.setPreferredSize(d);
            return label;
        private JPanel getButtonPanel() {
            String[] ids = { "calculate", "exit" };
            JPanel panel = new JPanel();
            for(int j = 0; j < ids.length; j++) {
                JButton button = new JButton(ids[j]);
                button.setActionCommand(ids[j].toUpperCase());
                button.addActionListener(this);
                panel.add(button);
            return panel;
        public static void main(String[] args) {
            PizzaPanel test = new PizzaPanel();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test.getWestPanel(), "Before");
            f.getContentPane().add(test.getCenter());
            f.getContentPane().add(test.getButtonPanel(), "Last");
            f.pack();
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • TS3999 Help request for Iphone 4S calendar that won't sync with Mac OS X

    My I-Phone 4S (6.1.3) calendar changes won't sync with my MAC OS-X (10.8.2) after trying the Apple support suggestions.  Please provide your solutions if you have experience with this issue.  Thank you in advance.

    You need to update your OS X software to v10.8.5.
    Click your Apple menu  top left in your screen.
    From the drop down menu click Software Update.
    Restart your Mac after the updates are installed.
    On your Mac, make sure Calendars is selected in System Preferences > iCloud
    Your iPhone, tap Settings > iCloud
    Make sure Calendars is switched ON.

  • Help requested for Essbase error

    Hi,
    I logged in Essbase by using my Login ID and password successfully but as soon as I clicked on application server I got error which is given below at same time my other friends are both able to connect and work with applications.
    Error is :- Error: 1051293: Login fails due to invalid login credentials
    Please guide me that how can i solve this error....
    Thanks in Advance...
    Regards,

    Welcome MChopade.
    It is not your (CMOS) battery I think it is your main battery.
    Remove your main battery and see if the error returns.
    http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c01443470
    REO
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Help requested for fixing Midi-reliant Widgets that Leopard killed?

    While using Tiger, I had a couple of wonderful keyboard widgets that relied on Midi plug-ins to produce their sound. Leopard killed them. I have normal sound (I think) in all of my applications and non-Midi reliant Widgets, but anything Midi is dead and so is Finale Print Music, which won't even start up. Any guidance from the musical side?

    ejdelafe wrote:
    While using Tiger, I had a couple of wonderful keyboard widgets that relied on Midi plug-ins to produce their sound. Leopard killed them. I have normal sound (I think) in all of my applications and non-Midi reliant Widgets, but anything Midi is dead and so is Finale Print Music, which won't even start up. Any guidance from the musical side?
    I suggest you contact Finale and what other companies whose software you are using.
    Leopard did not kill your widgets, they simply are not Leopard compatible and must be upgraded or newer ones downloaded. It's that simple.

  • Request for proper information and to refuse to help when it's missing

    On behalf of many of us volunteers who are getting tired of guessing the environment of those who are asking for help, I hereby
    ASK ALL VOLUNTEERS TO STOP RESPONDING TO REQUESTS FOR TECHNICAL ASSISTANCE THAT DO NOT PROVIDE SUFFICIENT INFORMATION
    In general, sufficient information should include:
    1) Operating system and Service Pack, not just the family.
    - Vista is a Family of operating systems. Insufficient information (need Home, Home Premium, etc.)
    - XP is a Family of operating systems. Insufficient information (need Home, Professional, etc.)
    - Linux is a Family of operating systems. Insufficient information (need Oracle Enterprise Linux 4 Update 4, Red Hat EL 4 Update 2, OpenSuSE 10.3, Fedora 8, etc.)
    2) Version of database installed to 4 digits (9.2.0.6, 10.2.0.3, 11.1.0.6) and the database's ORACLE_HOME and ORACLE_SID
    3) Which product being used to access the database, which computer that product is on, and the Oracle Home from which the product is run. (SQLPlus, same home as the database)
    4) The output of lsnrctl status, the contents of the tnsnames.ora and the contents of the listener.ora
    5) The output of the ipconfig /all or ifconfig and of hostname
    6) Copy paste of the actual error message, not just a paraphrase of part of a line..
    Any other ideas?

    I am not requesting this to be enforced by the forum.
    I am requesting that people like you and me reply by linking to this thread (or to the other excellent related threads) INSTEAD of replying. If we do it consistently, eventually the newbies will also enforce it voluntarily, and that will cut the useless teeth-pulling-effort replies to a minimum.
    In your 90% posts figure - you do realize that that means 90% of the posts are badly formed and are wasting your time as well as mine.
    Or - if they were properly formed - you and I could answer that with a lot less effort and a lot faster. With the implication is that the person asking would generally get a resolution a lot faster as well. Net result - you and I get to sleep more (or answer more questions) and people with problems are happier because they get them resolved faster.

  • When I try to enter codes for digital movie downloads it tells me "code redemption is temporarily unavailable. Try again later." Customer support has been no help. Anyone else have this problem?

    When I try to enter codes for digital movie downloads it tells me "code redemption is temporarily unavailable. Try again later." Customer support has been no help. Anyone else have this problem?
    Am sick of going back and forth with what has turned out to be worthless customer support. Have sent them so much info and pictures, no help. All they do is send me links for instructions on how to redeem the codes. I know how to redeem, I have redeemed at least 50 codes. To them I am obviously an idiot though. To me it seems to be a problem on their end, but can't get an answer from them on why it is telling me code redemption is unavailable. Please help! Anybody!

    Confirming my suspicions with every passing hour. Support on this forum is non-existent like the support from Apple support. But, you got my money now... why would you care?

  • A Request for help from me again! Yay!

    hi guys! I was working on implementing threads for the directions of the unit. When i press forward once...nothing happens, but when i press twice it gives me this HUGE list of errors. I dont have a clue. Again, any help would be appreciated.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class NBoard extends JFrame implements KeyListener{
         int selection = 0;
         boolean selectionmade = false;
         final int WIDTH = 600;
         final int HEIGHT = 600;
         Image Viz =Toolkit.getDefaultToolkit().getImage(JOptionPane.showInputDialog("What character do you want?")+".gif");
         int XC = 50;
         int YC = 50;
         Thread moving = new Move();
         Unit Host = new Unit();
         public NBoard(){
              this.setSize(WIDTH,HEIGHT);
              selection = Integer.parseInt(JOptionPane.showInputDialog("What level design do you want?"));
              if(selection > 0){
                   selectionmade = true;
              addKeyListener(this);
              this.setVisible(true);
         public static void main(String args[]){
              new NBoard();
         public void paint(Graphics g){
              if(selectionmade == true){
                   if(selection == 1){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                   if(selection == 2){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                        for(int ctr = 1; ctr < 6; ++ctr){
                             g.drawRect(WIDTH/4 ,ctr * 100, 20, 20);
                             g.drawRect((WIDTH / 3) * 2 ,ctr * 100, 20, 20);
                   if(selection == 3){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine((WIDTH/2) - 90,0,(WIDTH/2) + 90,HEIGHT);
                   g.drawImage(Viz,XC,YC,this);
              public void keyPressed(KeyEvent e){                              //The Problem Areas
                   if(e.getKeyChar() == 'w'){
                        moving.start();                                             //Starting the thread to move up
                   else if(e.getKeyChar() == 's'){
                        YC = YC + 2;
                   else if(e.getKeyChar() == 'a'){
                        XC = XC - 2;
                   else if(e.getKeyChar() == 'd'){
                        XC = XC + 2;
                   System.out.println(e.getKeyChar());
                   repaint();
         public void keyReleased(KeyEvent e){                              //The Problem Areas
              if(e.getKeyChar() == 'w'){
                   moving.interrupt();                                             //Trying to interrupt the thread once the key is released
         public void keyTyped(KeyEvent e){}
    class Move extends Thread{                                                  //The Problem Areas
         public void run(){                                                       //The Thread
              Unit.XC = Unit.XC - 2;
              try{
                   Thread.sleep(1000);
              catch (Exception e){}
    class Unit{                                                                      //The Object which will hold all of the information about each unit
         static int XC = 30;
         static int YC = 30;
    } By the way, here is my order of events, so you can look forward to seeing requests for help for them (hopefully not).
    Threads: Moving the guy around
    Threads: Making him shoot a ball at the mouses position
    Network: Allow others to join/play game (This is gonna be HUGE probably), while host decides on game type.
    Thanks for all the help so far!

    Where does moving ever get started? Why does Move extend Thread instead of implementing Runnable? (Implementing runnable is preferred and often the correct way to do it and it is in this case)
    But regardless there shoud be a moving.start() somewhere or start of the Thread that has the Runnable target Move.... I don't think I see one. Unless I missed it.
    so...itll work if i change the setup to Runnable?

  • How can I get iTunes to answer my requests for help?

    I have tried for a few days now to get iTunes to help me get some tunes that partially downloaded. Their initial response seemed to work but the next day the tunes were only partially on my PC. I re-installed the software, called the phone number on my PayPal receipt, sent another e-mail request for help, responded to their follow up e-mail a few days ago asking if my issue was resolved.........and STILL cannot get them to help me resolve. They say I should receive a response within 24 hours, and it has been longer. No phone number to call, the initial instructions to re-download the missing tunes were confusing  

    It is quite easy to find out how to redownload purchases, using the search bar ( by Support) at the top of this page:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    You can contact itunes support again by clicking Support at the top of the page, then clicking the link under Contact Us.

  • When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says: The request for account "iCloud" failed.  The server responded with "502" to operation CalDAVSetPropertyQueueableOperation. Help!!??

    When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says:
    The server responded with “502”
    The request for account “iCloud” failed. 
    The server responded with “502” to operation CalDAVSetPropertyQueueableOperation.
    The request for account “iCloud” failed.
    I am then given the option of staying Online or going Offline.
    Can anyone help me?
    thanks

    Hello b.krushel,
    Thank you for using Apple Support Communities
    Any number of things could cause this issue, so I would recommend this article named iCloud: Troubleshooting iCloud Calendar found here http://support.apple.com/kb/TS3999.
    These sections in particular:
    General Troubleshooting
    Make sure there are no current issues listed on the System Status that affect iCloud Calendar. The System Status is located on the iCloud Support webpage.
    Make sure you have fully enabled iCloud Calendar for the client you are using (for more setup and troubleshooting information on iOS, OS X, Windows and iCloud.com, see the additional details below).
    Check to see if the issue you are seeing is covered in iCloud Help. To search iCloud Help, visit help.apple.com/icloud.
    Check your settings and preferences as something may not be set up correctly. For example, having incorrect date and time settings can cause issues which are easily resolved by entering the appropriate settings.
    Troubleshooting Calendar on OS X Mountain Lion (iCal on OS X Lion)Note: For instructions on setting up iCloud Calendar with Calendar or iCal on your Mac, see iCloud Setup.If you are having trouble with Calendar or iCal on a Mac and you are using iCloud Calendar, try each of these steps, testing after each to see if the issue is resolved:
    Make sure you are using OS X Lion v10.7.2 or later. Click here for help verifying the version of OS X you are using.
    Make sure your computer is online. Attempt to view www.apple.com and iCloud.com. If you can't connect to the Internet, your iCloud calendars and events will not update in iCal. Click here for more information about troubleshooting your Internet connection.
    Verify that your iCloud member name is entered into the iCloud Preference pane in System Preferences. See iCloud Setup for more information about setting up iCloud on a Mac.
    Make sure you enter and update calendar information in the iCloud section of Calendar or iCal. Only calendars and events in the iCloud section of the Calendar or iCal Calendar list will be pushed to iCloud. Both Calendar and iCal for the Mac support the display of and interaction with multiple accounts and datastores, for example, iCloud, On My Mac, Exchange, Google, and so on. This makes it easy to create or modify events or calendars in a section of  Calendar or iCal that may not be updating iCloud. Learn more about moving local calendars to iCloud.
    In some cases, you may find that you have data duplicated in both the local On My Mac and the iCloud sections of Calendar or iCal. Learn more about resolving this issue.
    You can make the iCloud calendar your default calendar for all new events. In Calendar on OS X Mountain Lion, choose Calendar > Preferences > General, or in OS X Lion, choose iCal > Preferences > Generaland under the Default Calendar heading, select one of the Calendars under the iCloud heading. Close the Preferences window to save this change.
    If recent changes simply don't appear, try forcing Calendar or iCal to refresh by selecting Refresh All from theCalendar menu.
    Make sure your account was successfully created in Calendar on your Mac (or iCal). After upgrading to iCloud Calendar, you may need to quit and reopen Calendar (or iCal). To confirm your account is configured correctly in iCal:
    Open Calendar (or iCal).
    Open Calendar (or iCal) Preferences.
    Click Accounts. You should see an account with your iCloud member name entered.
    Turn iCloud Calendars off and back on
    Quit Calendar (or iCal).
    Choose Apple () menu > System Preferences > iCloud.
    Remove the checkmark in the checkbox next to Calendars.
    Close System Preferences and wait about a minute.
    Open System Preferences and choose iCloud.
    Replace the checkmark next to Calendars.
    Close System Preferences.
    Open Calendar (or iCal) and test to see if the issue has been resolved.
    Restart your computer. This may sound simple, but it does reinitialize your network and application settings and can frequently resolve issues.
    Take care,
    Sterling

  • CS5 RAW Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit the Camera Raw help documentation for additional information.

    I rented a Nikon D600 & D610 and CS5 cannot open the RAW files, i do not have any issued with my D700 RAW files. I am getting this error message -
    Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw.
    Please visit the Camera Raw help documentation for additional information.
    Can anyone please help?

    yellowmledbetter wrote:
    Sorry, I am on a MAC. I downloaded the link you provided and it's giving the same error message as above. Running CS5.
    The error message you gave is from Camera Raw. I thought you said that DNG Converter didn't work?
    The link I gave you is an article on getting your raw files to open in Camera Raw. Did you read it? I lazily gave you the link because this is one of the most common problems in this forum, and I get tired of saying the same thing over and over again. I could break it down for your specific case, but I was hoping you could read through the article and work it out for yourself.
    But, here goes:
    Your cameras are newer than your raw converter, so it won't understand them.
    CS5 comes with Camera Raw 6, which can only be upgraded as far as 6.7.1. You can find out which version of Camera Raw you are running in three ways: in the settings title bar (Cmd-K), in the plug-in title bar (press F to start/stop full-screen mode to reveal the title bar), or Photoshop's Help menu (About Plug-ins).
    Downloading raw files from newer Nikon cameras with old versions of Nikon Transfer will actually make them unreadable in Adobe software. They can be fixed with a free utility. Again, it's all in the linked article. You should be using up-to-date Nikon Transfer, or Adobe Photodownloader to avoid this problem.
    All being well, you have good raw files on your computer. You can convert them to dng using Adobe DNG Converter. IF you are on OSX Leopard or Snow Leopard, you CAN'T use the latest version, because Adobe stopped support. But, if you ARE on a later OSX, you can download DNG Converter 8.6.
    DNG Converter is designed to convert FOLDERS of raw files at a time. You select a folder of raw files, and tell it to create DNG copies. BUT, you have to set up the converter before you start using it...
    If you load up DNG Converter, you'll notice a button labelled "Change Preferences". Clicking this, you'll see the first option is "Compatibility". Here, you must select the appropriate setting for the version of Camera Raw you HAVE (see above). If you can't work this out, just pick "Camera Raw 5.4 and later". THEN pick a folder of raw files and convert them to DNGs.
    All the above is already in the article, but I gave you a personalised response. If you still can't get it to work, please give us more than one sentence. Tell us exactly what you tried, and describe exactly what happened. Which version of OSX you're running, what device and software you downloaded your raw files with, how you used DNG Converter, and so on.
    I really should be in bed.

  • Request for help in tuning the server which is running opmn process.

    Hi Folks,
    I request for an help in tuning the server which is running oracle app server opmn process , It is chewing arround 40% of the CPU resource,and our sysadmin is back of me to resolve this issues.
    any feedback on this is highly appriciated...
    Thanks in advance

    Re: How to Achieve Performance Tuning
    I hope you may find answers here..
    Sharma

Maybe you are looking for