Still Web Cam

I would like to set up several still Nikon cameras in three buildings to capture the construction of a rooftop sign. Each camera will be connected to a Mac with internet access. Each camera will be controlled by Nikon Camera Control Pro. I would like to place the images, at low res, onto the internet each day in real time. What do I need for each camera/Mac combo to get the images onto the internet? Will each combo need to be a server?

You will probably need this and a Mac Driver for this cam. (See this Camera List from Ecamm as well.)
I don't actually recognise the Camera model number you list.
If you are on OS 10.4.9 or above you will not need a Mac Driver if the camera is UVC (USB Video Class) compliant.
12:57 PM Saturday; March 8, 2008

Similar Messages

  • Satellite A505-S6973 Web Cam won't turn off

    I recently signed up for Google Chat with the option to use the Video Chat feature.  Ever since I can't get the web cam to turn off, even when I'm not even logged on the Internet!  I don't like having the little light shining in my face every time I turn on the computer.
    How can I turn off the camera when I'm not using it?

    If you can get it to boot up again, I'd suggest doing a restore to out-of-box state to see if you have a hardware issue or software.  If after restoring it to out-of-box state you are still experiencing problems, it is likely hardware failure (i.e., cpu, hdd, motherboard, etc.).
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • How do i use my FaceTime camera as a web cam?

    I am trying to figure out how to use the facetime camera on my macbook pro as a web cam with non apple users. Please help.

    If you are trying to use Flash based web sites that you open in your browser, there is no difference in operation regardless of whether your webcam is being viewed by a PC or by another Mac user.  However, if you are having problems with Flash sites, verify that your Flash plug-in is the latest one that is compatible with your system.
      • You can find the latest Flash version that works with your OS X 10.7.3 using this page:
          http://www.adobe.com/software/flash/about/
    If you need to update, use your Mac's Disk Utility to repair permissions.  Then follow Adobe's instructions here: http://kb2.adobe.com/cps/908/cpsid_90893.html
    Be sure to uninstall your current Flash player before installing the new one.
    Repair permissions again immediately following installation of the updated Flash player.
      • Be aware that the current Flash Player Preferences can  be configured in your
         Lion Mac's  > System Preferences... These settings may be blocking Flash on a system-wide basis.
      •  Individual Flash settings are still configured in the same way as older versions:
          http://tinyurl.com/5kjv3
    Message was edited by: EZ Jim
    Mac OSX 10.7.3

  • How to enable multiple access to a web cam?

    Hi... I am using JMF to develop an online monitoring web page with Java Applet.
    However, as i tried it just now, when one browser is rendering that page, others can not even lauch the web cam.
    I am using Logitech QuickCam. Is it because of the web cam is possessed by one application, and others have to wait? Or the client should also install JMF in order to view the page successfully?
    Can anyone please tell me?
    Thanks in advace.

    Let me get this straight. You have a web application that uses spring framework and hibernate to access the database. You want the user to be able to select the database that he wants to access using spring and hibernate.
    Hopefully you are using the Spring Framework Hibernate DAO. I know you can have more that one spring application context. You can then trying to load a seperate spring application context for each database. Each application context would have it's own configuration files with the connection parameters for each datasource. You could still use JNDi entries in the web.xml for each datasource.
    Then you would need a service locater so that when a user selected a datasource he would get the application context for that datasource which he would use for the rest of his session.
    I think it is doable. It means a long load time. And you'll need to keep the application contexts as small as possible to conserve resources.

  • Web cam is not recognized properly on Satellite L500D

    Hi
    I have a Satellite L500D when I login in the web cam app pops up and say web camera initialization failed. Please check your camera device and restart application or computer.
    I press ok and the app closes down so I checked the device manager and there were no camera devices.
    I downloaded the driver twice and still can`t see the driver in the device manager area.

    Hi
    Thats pretty strange.
    Is your notebook preinstalled with original Toshiba recovery image (factory state)?
    Everything is possible and it can be defective cam but best way to find it out is to install OS again using Toshiba HDD recovery installation. After doing this you will have factory state again.
    With factory settings every hardware component should work properly.
    Do not install any additional software. After finishing OS installation check webcam functionality to see if the same will happen again. if there is the same situation contact nearest Toshiba service and explain the situation.

  • Web-cam is not detected yet installed

    Hi!
    I m doing a program tat can capture movie from available video capturing devices, i hav installed web-cam, but while searching for the devices available(Detecting the device) , it is not identifing the device. And still if i m giving direct the device info to the program("vfj//0")then movie is captured from web-cam.
    Program is listed below which is not detecting the web-cam:
    public void setMainSource(){
    setProcessing(false);
    VideoFormat vidformat = new VideoFormat(VideoFormat.YUV);
    Vector devices = CaptureDeviceManager.getDeviceList(vidformat);
    CaptureDeviceInfo di = null;
    if (devices.size() > 0) di = (CaptureDeviceInfo) devices.elementAt(0);
    else {
    /* I got exception here */
    JOptionPane.showMessageDialog(parent,
    "Your camera is not connected", "No webcam found", JOptionPane.WARNING_MESSAGE);
    return;
    try {
    ml = di.getLocator();
    setMainCamSource(Manager.createDataSource(ml));
    } catch (Exception e) {
    JOptionPane.showMessageDialog(parent,
    "Exception locating media: " + e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
    return;
    Output:
    Web cam not found....
    So wht shd be the problem , nyone please explain the problem how to overcome from it.
    Thank you

    First of all sorry for spelling mistake i write ("vfj//0") rather then "vfw://0"
    Yeh! i read your code n your code is also giving the same error
    like
    Web cam not detected/installed(like something this).
    But still i hav attached cam n capturing movie from the code shown below:
    //This will not detect the webcam n directly captures the movie, try it out so now wht to do so tat will detect the webcam properly....
    CODE:
    import javax.media.*;
    import javax.media.util.*;
    import javax.media.format.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.control.*;
    class testing extends JFrame implements ControllerListener,ActionListener
         //Variables for gui
         public JButton play=new JButton("Play");
         public JButton stop=new JButton("Stop");
         public JPanel p1=new JPanel();
         public JPanel p2=new JPanel();
         Container c;
         //Variables for videocapturing
         boolean stateTransitionOK = true;
         Object waitSync = new Object();
         Processor p;
         ///Variables required to store the movie
         DataSink sink;
         MediaLocator dest = new MediaLocator("save_video.wav");
         ///methods
         public testing()
              super("Video Capture Demo");
              setupvideocapture();
              setupgui();
         public void setupgui()
              c.add(play);
              c.add(stop);
              addWindowListener(new WindowHandler());
              stop.addActionListener(this);
              play.addActionListener(this);
              setSize(350,350);
              setVisible(true);
              show();
         public void actionPerformed(ActionEvent ae)
              String str;
              str=ae.getActionCommand();
              if(str=="Play")
                   try
                        //Before starting capturing store the movie to the HDD
                        p.start();
                        sink = Manager.createDataSink(p.getDataOutput(), dest);
                        sink.open();
                        sink.start();
                   catch(Exception e)
              else if(str=="Stop")
                   try
                   //     sink.stop();
                        p.stop();
                   catch(Exception e)
         public void setupvideocapture()
              c=getContentPane();
              c.setLayout(new FlowLayout());
              try
                   p = Manager.createProcessor(new MediaLocator("vfw://0"));
                   p.addControllerListener(this);
                   p.configure();
                   waitForState(p.Configured);
                   p.setContentDescriptor(null);
                   p.prefetch();
                   waitForState(p.Prefetched);
                   c.add(p.getVisualComponent());
                   ///Intializing the saving procedure
              catch(Exception e)
                   System.out.println(e);
              public void controllerUpdate(ControllerEvent evt)
                   if (evt instanceof ConfigureCompleteEvent || evt instanceof RealizeCompleteEvent || evt instanceof PrefetchCompleteEvent)
                        synchronized (waitSync)
                             stateTransitionOK = true;
                             waitSync.notifyAll();
                   else if (evt instanceof ResourceUnavailableEvent)
                        synchronized (waitSync)
                        System.out.println("ResourceUnavailable");
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   else if (evt instanceof EndOfMediaEvent)
                        p.close();
                        System.exit(0);
              boolean waitForState(int state)
                   synchronized (waitSync)
                        try
                             while (p.getState() != state && stateTransitionOK)
                                  waitSync.wait();
                        catch (Exception e) {}
                   return stateTransitionOK;
         //Entry point
         public static void main(String args[])
              testing t=new testing();
    class WindowHandler extends WindowAdapter
         public void windowClosing(WindowEvent e)
              System.exit(0);
    This is working properly........ so plz if other option plz notify me.
    Thank you for helping me.......

  • My tx is so slow, the web cam is not working, the screen freezes and got color distortions

    - My tx is so slow, and heats up very fast... so i think that the advance is not working properly
    - the web cam is not working, since the 3th time iused... when i try to use it with my msn... got freezed, then y try ending the process and doesnt work, y     have to restart it but it stay just on logging off... and do nothing more... so i have to switch off directly from the power button
    - The screen freezes... some thimes the screen got freezed... and got color distortions too... so i have to to switch off again directly from the power button
    i was thinking that it was a software problem... but i restore my lap and it doesnt work cuz it still being with the same problems... so lately im thinking that its a hardware problem... i call to technical support from mexico... but they can do nothing for me cuz i bought my lap at circuitcity from el paso... and that store close a few months ago... so i need help before de warrantie expires...
    This is the second time that my lap gives me problems, last time I made the change at the store but this time it will be impossible cuz is now closed...
    that is why I seek your help...
    i will be grateful if you answer in Spanish because my English is not very good...
    thankyou so much...

    If your warranty has not yet run out get it serviced, now!  All of the comments seem to indicate that it is the motherboard>

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • Why doesn't my web cam work

    I bought my HP netbook about the 27th Nov 2011, the web cam worked a treat, but during the x-mas week it started playing up and now doesn't work at all. Can you give me some info as to what to do about this problem. I have reset the computer to the original factory settings but the camera still doesn't work.

    Hi,
    Please try this:
      http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02452221&lc=en&cc=us&dlc=en&product=3761191
    (Links for XP & Vista are in there).
    Regards
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Tecra M11-17V with Windows 7 - Web Cam image is very grainy

    Hi,
    Yesterday my webcam (built into the laptop) worked perfectly, today it doesn't....
    Whenever I use it now, the image is very grainy, almost like a tartan pattern of criss-crossing lines, but I can still just about make out myself in the background. Movement and sound are still being recorded, just the image is strange.
    Please help! Has anyone else had this happen? Is this something I can fix myself, or is it a hardware problem? I have had this laptop about 3months, from brand new, and this is the first problem I've had...
    Many thanks,
    Dom

    Hi Paolo,
    Thanks for the tips, but I'm afraid my camera is still out of action....
    I've double checked that the protective lens film has been removed, and I've disabled/re-enabled the camera device, updated the camera driver, and completely reinstalled all the camera software to no effect. I've also ruled out conflicting software issues, as the problem persists for both skype calls and the laptop's face recognition software used when logging into my account.
    The frustrating thing is that the fault happened suddenly halfway through a skype call. It was working perfectly on minute, and broken the next (seemingly irreversible.... fingers crossed). I had used skype for a mammoth 3hr call the night before, but I hope that wouldn't have "burnt out" the brand new camera...
    Do you, or anyone else, know if sounds like a physical problem? Are web cam hardware faults common? I have never dropped the laptop, though it does commute with me on the train into work everyday...
    When I first got the laptop, the inbuilt fingerprint scanner didn't work very accurately until I updated the driver software. Is it common for faults to suddenly appear when drivers become "out of date"? Any chance these problems could be related?
    Thanks again for your help,
    Dom

  • Problem with image control using more than 1 web cam

    Hi,
    I am using logitech quickcam pro 4000.Actually I want to get image from
    3 web cam at a time wich will act as a CCTV.I want to get picture from
    more than 1 web cam at a time.But,When I start the .vi,than I get image
    from 1 web cam.I have attached the vi and the demonstration file.
    If anyone  has any idea please send me a reply.
    (The code was constructed using information
    from the Logitech Software Development Kit, downloaded from the Logitech web
    site January 4th 2004.  This
    package includes the royalty free distribution with the camera driver.
    To install the package, download and unzip
    LabVIEW Logitech UWA.zip and run Setup.exe in the 'redist' folder.  This installs drivers (if not already
    installed).  Then run LabVIEW and open
    Logitech Image Acquisition Master.vi. 
    Click the LabVIEW run button.
    Notes for Understanding the Code
    [1] The camera is controlled by an Active-X
    reference from a front panel Acitve-X container that displays the pre-view
    image.  To create this, create a blank
    Active-X container on the front panel and select the Active-X Hydra Video
    Portal class.
    [2] Three methods are called, following the
    Visual Basic guide from Logitech.  The
    first establishes a connection to the Active-X server.  The status bar is activated in the preview
    window (EnableUIElements), and we connect a camera (ConnectCamera2).
    [3] Here we set the value of property
    'EnablePreview' to turn on the preview panel.
    [4] We can get the camera description for
    camera zero here (the first camera connected).
    [5] Here we select the video format (64x480
    – can change it later).  The next call
    establishes the preview size by setting property values.  The preview size should be the same as the
    video format for fastest image acquisition.
    [6] We are restricted to saving the picture
    to a BMP file and then reading it in again. 
    This is a limitation of the SDK. 
    After reading the image file we can change it to a JPG if we wish to.
    [7] Here we re-read the image file and
    provide it to ImageDisplay.vi.
    Other methods and property values are
    reasonably self evident.  In LabVIEW, if
    you right click the Active-X reference terminal on any method, you can create a
    new method by simply selecting the appropriate one from a list.  The parameters for the method appear
    automatically and should be reasonably self-evident from the names.  If you want more details, download the SDK
    from Logitech.
    Other methods allow you to make movies in
    real-time or time-lapse sequences.
    Note that you can also monitor Active-X
    events to detect inputs or parameter changes made elsewhere.  For example it is possible to detect when
    the button on the camera is pressed.)
    Thanks
    Kabir
    Kabir mamun
    PhD Student,DCU
    [email protected]
    www.iward2010.blogspot.com
    Attachments:
    Logitech Image Acquisition Master.vi ‏98 KB

    Hi Peter,
    Thanks for your e-mail.And sorry for late.
    I have changed my activex server in my labview programme.Current 
    server name is XVideoOCX.I have attached 1 example.Still I am facing
    the same problem that I am not getting disply from more than 1 web
    cam.So would you be able to advice me,what should I do regarding this
    matter.
    Actually,This is a part  of my M.Sc project.I am under pressure.Peter,Please do me  this fevour.
    Thanks
    Kabir
    1 eample from help file:
    Video Disply
    1. Choose the input mode (Video, Single Image Files, Screen, etc.)
    XSetInputMode(0) // This
    chooses video as input
    2. Choose the video device
    XSetVideoInput(0) //
    Choose the first available video input device
    3. Initialize XVideoOCX
    XInit() // Initialize
    XVideoOCX
    4. Start internal video capture
    XStart()
    now XVideoOCX should display the live video
    5. Stop internal video capture
    XStop()
    6. Close XVideoOCX
    XClose()
    Kabir mamun
    PhD Student,DCU
    [email protected]
    www.iward2010.blogspot.com
    Attachments:
    ax2.vi ‏23 KB

  • Yahoo Msger with Web-cam view support

    Does anyone know of any other client besides Gyach Enhanced that allows web-cam viewing using Yahoo Messenger?  I am unable to compile Gyach Enhanced and I have not found another client that supports this.  If you have been able to compile Gyach Enhanced on Arch could you please provide me the details?  Any help will be appreciated.
    Thank you

    I found http://gyachi.sourceforge.net/ and I attempting to compile, however, I receive the error:
    checking for GTKHTML... configure: error: Package requirements (libgtkhtml-2.0 >= 2.0) were not met:
    No package 'libgtkhtml-2.0' found
    Consider adjusting the PKG_CONFIG_PATH environment variable if you
    installed software in a non-standard prefix.
    Alternatively, you may set the environment variables GTKHTML_CFLAGS
    and GTKHTML_LIBS to avoid the need to call pkg-config.
    See the pkg-config man page for more details.
    I have libgtkhtml-2.6.3-2 and it seems to be located in /opt/gnome/include/gtkhtml-2.0/libgtkhtml .  Does anyone have any suggestions on getting this to compile or how to edit the PKG_CONFIG_PATH ?  I attempted GTKHTML_LIBS=/opt/gnome/include/gtkhtml-2.0/libgtkhtml  but I still receive the same error.
    Thank you.

  • 1st Generation 2GHz G5 & Web Cams

    I have a G5 dual 2GHz Tower from I think 2003 or so. Just purchased a Creative Live! Optia AF Web Camera. It seems to work with all my applications but not sure it is 100% in terms of speed. I believe my G5, all 3 USB ports should be USB 2.0. This camera is also USb 2.0. So, I believe it should be doing 480MB speed like USB 2.0 does. I am not sure what the iSights with firewire were but my guess they were 400MB speed so these USB 2.0 should be equivelant.
    Anyway, I launch my Quicktime Pro 7 and do a recording with it. I talk and the mics pick it all up. Video looks decent. Just choppy when I play it back and watch it as I record. For example, if I move around, my lips don't look fluid so it does not look like a nice smooth movie would, looks more like I am playing it over the internet at slow speeds.
    Is this how web cams look? They record but choppy or should the recording look smooth and lifelike and not choppy?
    I do a few karate chop moves and move my hands around and it all looks choppy as heck.
    Just curious if this is the norm. When I play it back in Quicktime and have it show data, it shows recorded 30fps and playback is normally around the same. Sometimes more like 27fps to 30fps. It changes around as it records.
    So, does 30fps supposed to look fluid?
    tj

    Is your camera plugged directly into the computer or is it through a hub?
    I have an iSight with my G5. I just made a simple 15 second recording and it was fluid and chop-free. I used to have a Powerbook G4 (1.67) and movies on that were fluid as well. This is both in QT Pro and iMovie HD. So its either the camera or some USB camera driver issues. I mention the USB drivers because USB cameras were not always natively supported. So maybe there's still some bugs in there.
    Hope that helps.

  • I am looking to purchase a monitor for a Power Mac G4 OR a Web cam that is compatible with the the Power Mac G4.

    I have a G4 Power Mac without the original monitor - I am using a monitor from a PC that does not have a built in webcam. I have also tried a "Blue" brand webcam that was received as a gift for me that does not work...and went to best buy to buy a compatable one and they had none that they thought would work w/ the G4 power mac  What are my options? Ideally the cheapest would be a compatable webcam. any thoughts/suggestions? or thoughts about where to get a replacement original monitor.
    thanks!

    HI,
    ON the cam front.
    The OS will support UVC compliant camera (USB Video Class) since 10.4.9  in iChat (Slightly earlier in other apps)
    The issue for older G4 macs is that these are always USB 2.0 cameras (Used to be marked "Vista Ready" or "Certified" as Windows went USB 2.0 about the same time).
    I have a G4/1ghz Dual Processor tower (So called Mirrored Doors)
    This can have extra PCI cards and have installed one with 4 USB 2.0 ports  (Remove blank, insert and secure with screw and away it went)
    Nowadays virtually any USB webcam will be UVC compliant and USB 2.0  (Meaning no Windows or Mac Drivers to download and Install)
    The abilities of the Drivers in the OS do vary between Windows and Macs of this age.  (Lion on Intels does bring face tracking).
    Anyways, once you solve the USB 2.0 input issue then virtually any USB 2.0 camera will work including the X-Box 360 cam or a PalyStation 3 one
    Firewire
    The Original External iSight was of course Firewire.
    There were a number of other around the same time (Until USB cameras took over).
    This means that some DV convertors that use Firewire to get Analogue CamCorders signals into a Mac will work (some digital camcorders may not produce a DV signal as such and will need a convertor)
    The camera may have options on it's playback that mean it can be in 4:3 ratio if used with iChat.  It also cannot be HDV (or any propriatary form)  (You have to have an Intel and Lion/iChat 6 for HD).
    Of course some DV camcorders  do use Firewire to connect to a computer  (although this has dropped off as USB 2.0 is actually slightly faster)
    iMovie will accept many more formats than iChat will but you were talking about Web Cams.
    NOTES 
    You may find sites still trading the external iSight.  They are going to be at least 8 years old now and you will need to check so how that they are working
    USB 1.1
    If you can find a USB 1.1 Camera for sale or tucked in a drawer  it will need two things:-
    1) A Mac Driver
    2) This Utility for iChat http://www.ecamm.com/mac/iusbcam/
    Some manufacturers did have web sites with Downloads.
    The Camera Guide page at Ecamm shows the links to two third Party Drivers from macam and IOXperts.
    You will note the first Ecamm page says that iUSBCam does not work in Snow Leopard but you specs do say you are using Leopard (10.5)
    Back to Screens
    My tower has a card that supports two monitors.
    The one I bought with my Tower was the Studio Display (Same Acrylic type surround to the screen as the Tower).  (It does have USB 1.1 ports on the back)
    This used the then Apple Display Connector (ADC)
    It also had a DVI output.
    Ergo any DVI Screen will work.
    As to whether a  DVI screen/display with a camera can use that DVI connector to feed the Camera to the Mac I don't know.
    9:27 PM      Saturday; December 24, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Mozilla won't display web cam feed from web site

    Mozilla won't display web cam feed from web site: http://www.fs.usda.gov/wps/portal/fsinternet/!ut/p/c4/04_SB8K8xLLM9MSSzPy8xBz9CP0os3gDfxMDT8MwRydLA1cj72DTUE8TAwjQL8h2VAQAMtzFUw!!/?ss=110803&navtype=BROWSEBYSUBJECT&cid=fsm9_029107&navid=091000000000000&pnavid=null&position=Not%2520Yet%2520Determined.Html&ttype=detailfull&pname=Chattahoochee-Oconee%2520National%2520Forest-%2520Home
    I have the latest Java software and can load the above feed in IE but not Mozilla. I can also load a similar Java feed from
    http://www.brmemc.net/brasstown/ in both IE and Mozilla.

    (Glad to see you're still lurking around here, Wyrenut.  Your posts have helped me tremendously.  And this comes form somebody who has run and internal developer's support group for quite a few years.)
    I also started having this problem after getting my TX hooked up through my home network.  I had to set up a wireless access point with only WPA security to get around having to change the WPA2 security on all my other equipment.  I applied the ESU upgrade, but that didn't seem to help with WPA2 Personal.  Previously, I could get at least half of the pages to come up through the open hotspot in the lobby of our building at work, but I haven't tried that since I applied the ESU upgrade this morning.
     I can get to the internet through the access point using a laptop, and I can see the IP address of the Palm coming through the access point on the router's admin page, and the DNS addresses of the PC and the Palm are the same.  So I think I'm through, but every page I try gets the 'Page not available' message, even if I enter the IP address of the page rather than the URL.
    Is there any other method of debugging available to see if the page is really coming back and locking up Blazer, or whether it's really not coming back at all?  Or any other suggestions? 
    Personally, I sort of liked the old Internet Explorer that counted off how many K were coming through as the page was being loaded.  At least you could tell something was happening.
    Thanks,

Maybe you are looking for

  • I am trying to display my Mac Pro on a PANASONIC TX-L32E3B TV

    Hi Having trouble with this. HDMI input gives me a desktop image larger than the screen. Dock and top menus off screen and no matter what res settings I use they don't get pulled in. None of the resolution settings give me crisp detail, the fonts are

  • N97 Ovi Maps on memory card

    How do I install ovi maps on e: memory card not phone memory C:

  • RunTimeEngine linked to my application

    I would like to know what are the possibility with executable file built with LabVIEW. Is it possible to compile our application with the RunTimeEngine linked to it. Why other version of LabVIEW's executable are not supported by the latest RTE. Thank

  • Automatically add Creator metadata to Illustrator files?

    I'm trying to figure out a way for Illustrator to grab the "Owner" information (what you see when you command+I the .ai in the Finder) and copy that into the Creator metadata field everytime the file is altered and saved. Any ideas on how to do this?

  • Too Much Contaianer

    Sorry about that. Here's the code to one of the affected pages. Kate <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head> <meta