Embedding cam feed in web page

There have been a number of postings on this topic but here is a new thread.
Users (me included) have noted that it is possible to embed a feed as shown here:
http://fentyler.pwp.blueyonder.co.uk/mike-cam.htm
This technique does however require Windows Media Player and many users have also noted that the feed may stop after an arbitrary period.
Here is a much better technique:
http://fentyler.pwp.blueyonder.co.uk/cam.htm
I have deliberately kept the code to a minimum to allow users to copy and paste to their own pages.
NOTE  It is very important that you copy NetCamPlayerWeb11gv2.cab to the same folder that holds your web page. To obtain this file do the following.
Download the page above and accept the active content (you won't be able to if your security settings are set to 'High')  The .cab file can then be found in your Temporary Internet Files folder.
Do not use a URL in the Codebase statement !! It may work on your machine but others will find it impossible to download the active content.

In response to an email enquiry.
If you have already downloaded the control and flushed your temporary internet files then the cab file won't be available.
In IE go to Tools - Manage Add-ons and remove the NetCamPlayerWeb11gv2 control.
Go to c:\windows\system32 and delete NetCamPlayerWeb11gv2.ocx
Reload http://www.fentyler.pwp.blueyonder.co.uk/cam.htm and accept the Cisco-Linksys control when prompted.
The cab file should now be available in the Temporary Internet Files folder

Similar Messages

  • 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,

  • Code for Embedding Quicktime Movies in Web Pages-Question

    I have been embedding QT movies in web pages for years. I used to use the embed and object tags, but due to the problems with the default settings of IE7, in regards to ActiveX, I recently changed to the javascript method.
    I will paste sample code below, of how I use it, with the movie title change to sample: (of course I change the dimensions, depending on the movie size.)
    <script language="JavaScript" type="text/javascript"><!--
    QT_WriteOBJECT('sample.mov', '644', '76','','controller','true','autoplay','true','showlogo','true','cache','false' ,'enablejavascript','true');
    // --></script>
    and I put at the top of the page, right before </head>
    <script src="AC_QuickTime.js" language="JavaScript" type="text/javascript"></script>
    I forgot where I got this code. Perhaps from someone on this forum, or elsewhere. It seems to work with the default settings on most browsers.
    I have a couple questions, however, regarding fine-tuning it a little more.
    1) If it takes a while for the movie to load, users who open my pages see a static Q QT icon. How would one make the icon flash, with flashing text that says "Loading", so that the user knows that the video is loading? (I have seen that on other sites, and don't know how to do that.)
    2)As said the javascript works with most browser default settings, as most have javascript enabled by default. But what if a user does not have javascript enabled? Could the code sense that, and if non-existent, tell the user to enable javascript? Or, if javascript is disabled, could the embed and/or object tags be activated?
    3) The code above, that I got from someone, says "cache=false". That means that each time someone sees the movie, it has to be reloaded from the net, and not from the browser cache, correct? If so, why would one want it to be set that way? If it's a large movie, a user with a slower computer and/or internet connection would certainly prefer if it could play from the cache the next time, loading much faster. Is there any reason to prefer "cache=false"?
    4)Is there any code that could be put in, to allow the user, if they prefer, to download the file,(perhaps with a right-click or CTRL-Click), instead of playing it in the browser?
    Thank you very much in advance, to whomever can help with these code questions.

    Thank you for your reply, Kirk,
    1)Yes, I do have "fast start" enabled in my files, and they were made with QT Pro, newest version. So no, there is no "trouble with my files".
    However, I would still like to have that flashing "Loading" icon when the file is loading, as I see on other sites. (And yes, even with "Fast Start" enabled, depending on the size of the file, the speed of the computer and internet connection, it can take a little time beforeit starts.) Anyone know how to create that flashing "Loading" icon, rather than just the static Q?
    2)I just wondered if there was a way for the javascript to recognize if the user does not have javascript, and bring up a message if that is the case, telling the user they need to enable it to see the content. (As would happen if the user does not have the QT plugin installed.) Yes, I realize it would not work to include in the normal way the embed and object tags as well, I wondered if there was a way to invoke them only if the user doesn't have javascript. Perhaps impossible, but I thought I'd ask, in case someone knows of a way to do that.
    4)Yes, I guess I could just put a separate direct text link to the movie file for downloading. I just wondered if there was a way to put that in the javascript, so that if someone right-clicks on the QT icon, they can download rather than view it, rather than use a separate link. That may also be impossible, but I thought I'd ask, and see if there is a way to do that.
    Your question to me regarding dimensions--I forget which was the QT movie, that I took that sample from. Yes, I have some in unusual sizes. They are not normal movies. I don't have time to explain more now though, and that has no bearing on the questions I asked.
    Once again, thanks for replying, and if you or someone else could help further with my questions, I would appreciate it very much.
    Have a nice day!

  • Embedded Camera Feed

    I have a camera that can be accessed via web.  It's just a generic camera but it does have a username and password associated with it.  Is there a way to load a page that automatically loads the page with the username and password so that the camera feed just loads.  Is this possible?  Bandwidth won't be an issue as I can limit the number of connections via the camera side.  Just curious if it's possible, not neccesarily recommended.  Thanks!!

    It's a standard Axis Camera.  it's access from the outside via http://camera.domain.com.  A windows login screen pops up and ask for username and password.  Is there a way to automatically load that info?

  • Embedding iCal calendars in web pages?

    Is it possible to embedded your iCal calendars in web pages (either a .mac page or a privately owned page)?
    Katie

    You can publish calendars live to both .mac and webdav enabled private servers.
    It becomes difficult to place other content on the same page.
    hth,
    b.

  • Embedding .swf file into web pages

    What's the best way of embedding a flash file into web pages?
    After Microsoft introduce something about the active object (need
    to click on the Flash file first on IE to activate it) it seems
    like the best way is to use 'FlashObject'. Is there any other
    better way? Thanks a lot.

    SWFObject, which
    used to be FlashObject.

  • Embedded or in-line web page in mail!  Almost there but not quite.

    I have successfuly made a small web page in GoLive ( one small images, an animation GIF and a short block of text to act as an extended signature) then rendered/ viewed the page in Safari and everything looks OK at this stage. Then from file menu gone to 'Mail contents of this page' which of course opens the Mail.app and I can then see the images and text embedded into the mail and not as an attachment.
    Sending to myself it works fine so that when I receive it the images appear as part of the message but send out to others and they just see ? marks in blue boxes.
    What have I missed. Is there something I need to put into the header?

    Which options do you see enabled and which greyed out in the bottom part of the View > Message menu? If Best Alternative or Next Alternative are enabled, does choosing them fix the problem?
    There is a hidden setting that makes Plain Text the preferred alternative for viewing messages. Maybe something has caused that setting to be turned ON, in which case you might be able to fix the problem by turning it OFF.
    Open /Applications/Utilities/Terminal, type the following command (you can just copy it here and paste it in Terminal), and press <Return>:
    defaults write com.apple.mail PreferPlainText -bool FALSE
    Alternatively, you could issue the following command to revert to the default setting (which should accomplish the same, since the default is to not prefer Plain Text):
    defaults delete com.apple.mail PreferPlainText

  • Embedding QuickTime Video om Web Page

    Hello,
    Thank you in advance for any help someone can provide. I am trying to embed a quick time movie on a web page. I have received the reference file from the company that will host the quick time movie and I successfully can embed the movie. How do I embed the movie with a frame of the movie with the controller to display when a visitor initially visits my page? Do I need to have the reference file recreated?

    http://www.oreillynet.com/pub/a/javascript/excerpt/learnwebdesign_chap22/index.html
    scoot down the page and you will see
    Use the autoplay parameter and attribute to set whether the
    movie starts
    playing automatically when the page loads (true) or if the
    user needs to hit
    the Play button to start the movie (false).
    regards
    kenny
    "Chris Jumonville" <[email protected]> wrote in
    message
    news:elqq1l$27f$[email protected]..
    > Simple question. I have a quicktime .dv video on my site
    and I want to
    > embed it on a page so when you click on the page it
    automatically brings
    > up the movie on the page but doesn't start it
    automatically, you have to
    > start it manually. How do I do this?
    >
    > --
    > Best Regards,
    >
    > Chris Jumonville
    >

  • EMBEDDING AUDIO IN A WEB PAGE

    I have placed a mp3 file in a flash document and exported it
    to a .swf file and inserted it in a web page and it does not play
    the music on the web site

    Did you set it to AutoStart?
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "PONY_PIRATE" <[email protected]> wrote in
    message
    news:e6n4m3$7r1$[email protected]..
    >I have placed a mp3 file in a flash document and exported
    it to a .swf file
    >and inserted it in a web page and it does not play the
    music on the web
    >site

  • How to create a jquery as a table instead of a web page so that it can be embedded into an existing web page

    I am new to Dreamweaver and I just built a jquery with 3 tabs of information I want to put into my existing web page.  It has saved it as an entire webpage, but it needs to be a table that I can insert into my existing web page.  It's 3 tabs that have product information under each tab for my customers to view. How do I do this?

    Let's start at the very beginning.
    #1 Have you defined a Local Site in DW yet?  Without this critical step, DW can't manage links & assets for you.
    Simplified site setup in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV
    Once your site is defined -- including the remote server log-in credentials, you can upload files or folders of files by simply clicking the UP arrow which PUTS files to remote server.  See screenshot.  Conversely, the DOWN arrow GETS files from the remote server and saves them to your Local hard drive.
    Nancy O.

  • Embedding video in a web page

    One of my looming projects is to redo part of my own little
    DVD site, particularly the page with the demos :
    existing page
    ie by embedding the video, so you can just click play etc as
    on you tube etc, ie something more like this example :
    video example
    It's probably pretty painless, but not sure where to start -
    plus there are probably countless different options, so if anyone
    could point me in the direction of putting up something like the
    example above, that would be great.
    Cheers.

    I haven't had a chance to look at this yet, but assuming it
    is using Flash, I had a google, and found stuff like this :
    how
    to...
    Or, in fact this -
    Flash
    Video Player

  • Embedding WebI and Crystal reports on a web page

    Hi,
    I'm new to BO, so please bear with me. I've also posted this to the .NET-side, so sorry if you've seen this post before.
    We have a project where we will need to embed WebI and Crystal reports on a web page, i.e. we want the people who access the web page to get the reports (mainly graphs) as embedded content on the web page without any controls and other clutter.
    Is this possible and what's the correct way of doing this?
    Thanks,
    Carl

    Hi,
    Thanks for the help!
    We still face the original problem, though. I.e. with openDocoument we get the report, controls, tab selections, scroll bars etc. What we actually would like is to get just the contents of a report.
    Is there any way of doing it? We're not afraid of coding, we have good developers. Or do we need to schedule report creation to some format (e.g. PDF) and then load the PDF to the web page?
    Basicaly it's more important to get this working for WebI reports as we can redo almost all reports from Crystal to WebI. Of course we are happy to find a resolution for both cases.
    Br,
    Carl-Gustaf

  • Printing forms imbedded in web page

    Hi All,
    This is my first post, and I need some help.
    HP Officejet 8615
    Several doctors and dentists have embedded forms on their web page for new patients to complete.  I can't get these forms to print.
    I have tried printing the form from the web page = unsuccessful.
    I have tried saving the form to my desktop and printing it = unsuccessful
    I have run the HP diagnostics and successfully printed a test page.
    My computer:
    Windows 7 Pro 64-bit with SP1
    3.00 gigahertz Intel Pentium G3220 Processor
    6 GB RAM
    Adobe Acrobat 9.0 Standard, updated
    All MS Security updates installed. Kaspersky Anti- Virus installed. Updated, returns clean scans.
    Malwarebytes Pro up dated and returns clean scans.
    I have no problems with my computer or printer, except I can’t get these embedded forms to print.
    Any Suggestions?
    Thanks in advance,
    Owl69
    This question was solved.
    View Solution.

    Owl69
    Welcome to the HP Community Forum.
    Ideas and thoughts on the subject...
    You mentioned the word "Acrobat" -- this makes me think you are dealing with a PDF form??
    PDF format can be tricky.  Forms that look OK may or may not actually be something the printer can translate into printer language and spit out as actual print on a page. 
    You could try printing the PDF file as in Image -- this is a tried and true method of printing out PDF files that may be stubborn and won't otherwise print.  See below...
    Things that are PDF:
    PDF file will not print
    Quick fix | Print PDF as image | Acrobat, Reader
    PDF file will not print (2)
    Check your PDF viewer in your browser > Options
    Example
    Firefox > Tools > Options > Applications >
    Portable Document Format (PDF) >> select Use Adobe Reader
    Adobe Reader Download
    ===================================================
    If you get desperate, and you can SEE the form you need on the screen, you can use Snip to grab a screen shot of the form, save the file as an Image, and print that.
    Snipping Tool - Windows 7
    Snipping Tool- Windows 8.x
    Apple-Talk
    How to Print Screen on a Mac, 6 different ways to capture screenshot on a Mac
    ===================================================
    If you can get the saved form, whatever the format, into a Word file and then perhaps save that Word file into a new PDF file -- and maybe use Word's embedded font feature -- then you might be able get the file to print.
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • How to take parts of a web page and feed into a PDF template to create a PDF

    Interesting quesiton that I think was what LiveCycle was for: How can someone take parts of a web page or xml document (say by id name or a specialized tag) and feed the chosen items into different regions inside a PDF template?
    Basically, can you identify areas on a page and then tie them to place holders in a pdf template (with high res graphics say) and create a PDF?
    Please note: this is not about converting a whole webpage to a pdf, but select portions of it.
    Anyone have experiences in doing this? So far, it appears to require a toolset like LiveCycle or Adlib to utilize only selected items and not the whole page.

    The lack of answers is likely due to folks having no clue. What you have asked is not really the purpose of either Acrobat or LiveCycle, but that is not to say it can not be done. A starting point is to bring a WEB page into Acrobat as a PDF. This can be done by printing from the browser to the Adobe PDF printer, using PDF Maker with IE or FIrefox, or simply creating directly in Acrobat. Those are the normal ways to get things from a web page to a PDF.
    That said, it is not what you asked. You are asking about being able to parse parts of the web page. That is a lot more work and may not be directly possible, though with JavaScript it might be possible. I suspect that if it is possible you would require a lot of extra programming to allow the material selection. It may be the folks in the SDK sub-forum can help.
    Being I have no clue how to implement what you have asked (and probably no one else either), I can only suggest some things to look at or other places to inquire. If you think the XML of LiveCycle would help, then you might try the LiveCycle forum.
    In terms of your post, I really don't remember seeing the original, but that was right near the end of the semester and I was not checking the forum very much. There are various reasons folks may not reply, typically because they have no clue. Templates are also somewhat specialized and there are not many posts about them. My guess is that the template aspect may have had a lot of folks skip the post. In any case, I have tried to give you some thoughts.

  • Embedding flash movie in a web page

    I have created a flash movie using actionscript 3 and an xml file with a list of images for a slideshow. After clicking publish, I can view the slideshow by previewing the html file it creates for you. However, I want to embed this flash movie in a different web page. When I try to add it in Dreamweaver, by dragging and dropping the swf file into the page, a flash placeholder is generated, but the movie does not play when previewed. It is just blank white space.
    Now I watched the Tom Green tutorials on "flash the easy way" and my flash (CS4 professional) did NOT generate the AC_RunActiveContent.js files. I did find and download the file and manually added it to my Scripts folder. Still no joy.
    I will note that the html file that embeds the flash video is in a different directory than the movie itself. Surely this cannot be the issue, otherwise people's websites would be incredibly messy with multiple flash videos. I am trying to put all the flash movies in their own child directories of a /flash directory to keep them neat and organized.
    I am not sure what to do next. How do you make the dang thing play on a web page that is in another directory?

    If you are loading content ala using an xml file, that may be the source of the problem.  When you load a Flash file into a web page, that web page becomes the frame of reference for any files that the swf loads.  So if you tested this where the html file was in the same folder, but then moved things into different folders, then you need to adjust the Flash to load things as if it is in the html file's folder

Maybe you are looking for

  • Problem in communicating with ports

    dear friend, i have written code for listing ports. code is listed below import java.io.InputStream; import java.io.OutputStream; import java.util.Enumeration; import java.util.Formatter; import org.smslib.helper.CommPortIdentifier; import org.smslib

  • Cancel of order

    i want cancel order <Edited by Host> which was by mistake order pls help us thanking u

  • Print booklet in Preview

    I have four pages of A4 portrait size. I want to turn them into a booklet, so that one sheet of paper has all four pages on it. I can print doubled sided on my printer, so that part is taken care of, but I can format them as I need to for printing.

  • How to revert back the changes that are moved to Production

    Hi all, We have done changes to my DC.We moved the activity into production.We need to revert back the changes in all the systems. Is there any procedure to acheive this? Thanks and Regards, Rajesh.A

  • Ideal hardware setup for Aperture

    Is there an ideal hardware setup for working with 18megapixel raw files in aperture? Of the three...graphics card, cpu and ram...which are the most important to processing the raw image. I am running 10.6.3 on a macbookpro 2.2GHz core 2 duo, 4G ram a