Storing that Video stream into our local disk in java

Hi frendz,
I want to know how to, Connect to a remote online webcam and store that Video stream into our local disk.
Any java interface tools are there, or can we use java api to do so.
Anybody Please share your valuable suggestions.
thanx,
[email protected]

Hi frendz,
I want to know how to, Connect to a remote online
webcam and store that Video stream into our local
disk. The jennicam is no longer online.

Similar Messages

  • Insert video stream into call

    Hello,
    Does anyone know if it is possible to insert a video stream from an IP camera into a call? The calling device is an intercom with a camera nearby and the call wil lbe going to an 8941 video phone. The camera is H.264 compatible. 

    Hi frendz,
    I want to know how to, Connect to a remote online
    webcam and store that Video stream into our local
    disk. The jennicam is no longer online.

  • How to Save HTML page in Apex application into our local Windows Box

    Hi,
    I am having one HTML page in my Apex Application. I want to download this page into my Local Windows machine. How to do this?
    Thanks
    Yash

    I am having one HTML page in my Apex ApplicationWhat did you mean by this ?
    <li> If you meant an application page, then they are anot stored as html file anywhere as the page that you see is generated at the run time only, however you can can save that run time page , but its of not much use.
    <li> If your intention is to save/backup an apex page, go to the page and export it . This generates a SQL file which you can import into any other apex application and recreate that apex page.
    <li> You can also export the entire application as a single file too.

  • In order to stream into a local radio station, I would need to install Silverlight. Is this compatible with MacBook Air?

    Is Silverlight compatible with MacBook Air and is it OK to install?  I am trying to stream into radio station and cannot, I'm told, w/o installing Silverlight. Please advise. Thank you.

    Hey!
    Silverlight requirements:
    Mac OS X 10.5.7 (Intel-based CPU) or newer and works with browser Firefox 12+ or Safari 4+
    Macintosh (Intel-based)
    Intel Core Duo 1.83-gigahertz (GHz) or higher processor with 512-MB of RAM
    You want to stream into a radio station?
    Like broadcasting signals from you mac to a radio station?
    Or do you want to lisen to radio on you MacBook Air?
    If you want to stream online radio stations on your Macbook Air, it is sevral options.
    1) You can download a app from App Store
    2) Stream online radio from your web browser ( cud be that some websites tell you that you need Silverlight plugin)
    3) You can add an radio station to an iTunes playlist (needs a few steps before you have it in playlist)
    Message was edited by: Kristoffer2

  • Access local disk via Java Web Start??

    HI all ,
    I had saw the JWS document.
    It indicate we can't access local disk via JWS in that Security.
    If I need to access local disk by command, does anyone have better suggestion.
    And can I run *.bat via Java Web Start?
    Thanks very much for your help.
    Morris

    I do the both thing but still don't access to Local disk.
    I just write a simple test class within extend another that create a file (and of course sign it)but still can't create a file Local disk. this MAKE ME MAD and LOOSE MY JOB .
    here is my JNLP file:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for Pensionsrechner -->
    <jnlp
    spec="1.0+"
    codebase="file:///d:/"
    href="test.jnlp">
    <information>
    <title>Me</title>
    <vendor>myself</vendor>
    <homepage href="http://www.me.com"/>
    <description> test test test</description>
    <description kind="short">Test creatin of log file on client </description>
    </information>
    <offline-allowed/>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4"/>
    <jar href="test2.jar"/>
    </resources>
    <application-desc main-class="secMan.Test"/>
    </jnlp>

  • MUXing audio & video streams into one .mpg file

    Hi,
    Anyone had any luck using DVD Studio Pro or Compressor to take a video and audio stream and combine them into one finished MPEG 2 file sutable for use on an MPEG server? I need to do that and haven't found a way with either program to MUX audio and video together.

    Build your DVD. Each track will be a different VOB in the Video_TS folder. menus in VTS0[1]0.VOB where the [1] changes based on VOB, video/audio starts with VTS0[1]1.VOB
    They will be in the order they appear in the track layout in DVD SP (unless you change them in VTS view in DVD SP 4+) If there is alot of material you will see
    VTS0[1]1.VOB
    VTS0[1]2.VOB
    etc.
    Open the appropriate VOB in MPEGSTREAMCLIP

  • Capturing multiple video streams into a movie file

    I am using QTKit to capture 3 media streams simultaneously: audio, video, and display (display is screen capture), and would like to capture them in a time-synchronized fashion to a single .mov file.
    I have been able to successfully capture these three streams to 2 separate .mov files by using 2 QTCaptureSessions (one for audio/video, one for display video), but the problem here is that the 2 files are not time-synchronized (I have no idea how to synch them after the fact).
    The more intuitively correct thing to do is to use a single QTCaptureSession instance with 3 inputs (2 video inputs and one audio) to do the capture, which should automatically synch all the streams. Furthermore, since the .mov file can support an arbitary number of streams, I figured wiring up the QTCaptureSession to output to a single .mov file would be easy. I was wrong.
    The problem is that even though my QTCaptureSession has 3 nice input connections (2 video and 1 audio), when I wire up a QTCaptureMovieFileOutput to it, the resulting QTCaptureMovieFileOutput object has ONLY 2 connections: a single video and a single audio.
    Here is snippets of what I am doing:
    // add audio input: (type of media is QTMediaTypeAudio), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtAudioDevice] error:&qtError]
    // add video input: (type of media is QTMediaTypeVideo), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtVideoDevice] error:&qtError]
    // add display input: (type of media is QTMediaTypeVideo), succeeds
    [qtSession addInput:[QTCaptureDeviceInput deviceInputWithDevice: qtDisplayDevice] error:&qtError]
    // create file output
    QTCaptureMovieFileOutput * qtFile = [[QTCaptureMovieFileOutput alloc] init];
    [qtSession addOutput:qtFile error:&qtError];
    // PROBLEM: if I look at this array of connections, it has ONLY 2 connections
    // 1 video, 1 audio!!!
    NSArray *connections = [qtFile connections];
    // start capture running
    [qtSession startRunning];
    // wire up to my file
    [qtFileOutput recordToOutputFileURL:[NSURL fileURLWithPath:outputFileName]];
    I desperately need help....my questions:
    1. Since QTCaptureSession supports arbitary inputs, and QTMovie supports arbitrary # of streams, I can't believe it's not possible for me to simply "hook" all the inputs of QTCap to output connections that will write to streams in one movie file. Clearly, QTCaptureMovieFileOutput is not doing this...can anyone tell me how to do this? This can't be hard, right?
    2. If I have to fall back on the ridiculous approach of capturing 2 unsynchronized .mov files and somehow synching them after the fact, can anyone provide a pointer on how to do that?
    Thanks VERY much!
    Steve

    As posted by Andy Mees...
    perhaps more realistic (and fcp friendly) would be this:
    http://www.virtualvtr.com/pictureready/index.html
    or this gem that popped up on the LAFCPUG boards a few days ago ... well worth a gander
    http://www.softronmedia.com/products/products/mvr.html
    ...in this thread...
    http://discussions.apple.com/thread.jspa?messageID=5968334&#5968334
    Hope that helps,
    K

  • Is it possible to dwnload a file from web with given URL into our local sap

    Hi every Body!
    Is it possible to download a file from web with given URL into local PC with abap.
    thanks
    vikram.c

    hi
    good
    go through this link, i hope this ll help you solve your problem
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f5d3c40a-0801-0010-55b7-9e3b01745a40
    thanks
    mrutyun^

  • Internet video streaming on G5 laggy, choppy

    I have a G5 Mac Pro. Latest OSX one can put on it. Currently hooked up via DVI to HDMI to 46" LCD TV. Largely, everything works great. All sound and video and software works fine. The one problem I have run into which could be a deal breaker is that video streaming from the web is terrible. It is laggy, choppy, slow, etc. Sometimes the sound is off. The install is pretty fresh. I haven't checked to see what media apps might be installed, for example Flip4Mac. I have hunted around and heard things like Flash, Silverlight, or just that PPC processors cannot handle video streaming from the Internet. The video card seems standard and DVD and local video files play fine. All updates are installed. It is also like this when using a regular Dell LCD using DVI. Any suggestions?

      Model Name:          Power Mac G5
      Model Identifier:          PowerMac7,2
      Processor Name:          PowerPC 970  (2.2)
      Processor Speed:          1.8 GHz
      Number Of CPUs:          1
      L2 Cache (per CPU):          512 KB
      Memory:          2.5 GB
      Bus Speed:          900 MHz
      Boot ROM Version:          5.1.5f2

  • IIS7 configuration, blocked broadcast video stream from third party host

    I have a client that recently replaced a windows server 2003 with windows server 2008 R2 as their webserver.  This was a big change to IIS7.  An application that I developed for them has stopped working and I believe this is related to the IIS7
    configuration.  The application uses SilverLight technology to display a broadcast video along with some powerpoint slides.
    Here is the URL going to the server from a link on an html page. 
    http://iiscast.wlf.org/vod/broadcast/sctr01/0/start.html?media=http://iiscast.wlf.org/vod/broadcast/unit2.asx
    The iiscast.wlf.org is the public name for the IIS server.  When we click on the link it does properly display the start.html content but fails to connect to the video stream.  The video stream is hosted by a third party and the contents of the
    unit2.asx file has the url for that video stream.  When a put the
    http://iiscast.wlf.org/vod/broadcast/unit2.asx portion in IE it does properly display the video stream on mediaplayer.   All this worked prior to moving to the new server.   When I use F12 in IE to debug this, I see a brief message appear
    in the debugger that it is opening unit2.asx.  After that the debugging is very limited except I know I’m getting an exception in the silverlight and the video doesn’t display.   Other similar Silverlight apps on the same server that display
    archived video are working.
    Here is the content of unit2.asx
    <asx version = "3.0">
      <Title>Unit2 Bdct</Title>
      <entry>
        <ref href = "http://easylink.playstream.com/winlive/wlforg2.wvx"/>
      </entry>
    </asx>
    Playstream is a video stream hosting company.  When someone links to them, it pulls the video stream from my clients media server broadcast point. 
    wlforg2.wvx contains the link back to the media server broadcast point at my client.
    We have a lot of connections going on but keeping in mind that  http://iiscast.wlf.org/vod/broadcast/unit2.asx will display the video and
    http://iiscast.wlf.org/vod/broadcast/sctr01/0/start.html?media=http://iiscast.wlf.org/vod/broadcast/unit2.asx
    Is not displaying the video although all this worked on the old server.
    My guess is that something in the IIS7 is blocking this process.
    FYI the old server completely died so I can’t look into its configuration which was done in 2004 by someone else.

    This was entered in the iis.net forum as suggested.  The problem has been resolved.  The hosting service determined they had an edge server that was faulting.  Their edge servers were automatically assigned by geography which meant
    that depending on how/where we accessed the system for troubleshooting we used a different edge server.  Hence some tests always failed and others always passed.  FYI the hosting service had this problem for over a month and did not detect it
    themselves.  Fortunately we connected with a dedicated service technician late on a Saturday night and he figured it out.  

  • Using a video stream (NOT streaming a video clip) in Flash?

    Hello,
    I need to get a RTSP video stream into Flash but I can't
    figure out if it is possible to do. Also, the stream is encoded
    using H.264 for video and AAC for audio. Any suggestions on how to
    make this fly is more than welcome.
    Best regards from a sunny Stockholm - spring is finally here!
    /Cristian

    Just check it with the .flv files. If it works fine for them
    then your code is fine and you have to search for your format or convert it in flv my any means.
    with Regards,
    Shardul Singh Bartwal

  • Getting the classical report's output automatically to local disk

    hi gurus,
                 i need to save the classical report's output into my local disk as soon as the user executes the report or press F8. Mind well, it should not be manual. I know the manual way system->list->save.
    Gaurav

    Check this function module.
    "SO_NEW_DOCUMENT_SEND_API1"
    Check this link for ,Download a report to excel with format .
    http://www.sap-img.com/abap/download-to-excel-with-format-border-color-cell-etc.htm
    Check this link for sample program.
    How to download a ABAP report to text file
    Regards,
    Maha

  • Problem when importing several (2,3 or 4) video files into one project.

    Im creating a project video with several videos running at the same time in one screen.  Sort of like a surveillance with different videos but for some reason one of the video file seems to change from 45 seconds to 3 minutes.  When all of the video files are 45 seconds but after effects seems to put that video file into 3 minutes.  I even deleted the file and imported another video just like it and it works fine until I open the project again.  I am using AE CS4.

    I hope I did this correct.  The first link shows the video length of the videos, this is how it is suppose to be.  Then the second link shows the problem in which one of the videos after (after effects) is closed and then opened again.  One of the video seems to malfunction and shows that it is longer then 45 seconds.  I tried to delete it and open up another one... and then another video seems to malfunction.

  • NetBoot : any way to disable local disk in non disk less mode?

    Hello
    Is there any way to disable the local disk of any client booting from a NetBoot image in the non disk less mode? I guess unmounting the local disk is not possible in the non disk less mode, as the local disk is used for local shadowing/caching thus to "boost" performance - but is there any other way that users can not see the local disk as they are irritated about this second disk they are asked to not save any file on it? To disable the local disk would also have the purpose, that applications located on the local disk are not runnable/startable as long the client is booting from a NetBoot image, but would be runnable when the client is booting from the local disk.
    Thanks for any hint, best regards, relume

    Don’t enable Full Screen and it won’t make another Desktop. That is the way Full Screen is implemented. No way around that.
    If you are clicking the Zoom button (green dot), then they have altered the default behavior to go to Full Screen, but you can get the alternate behavior by holding down the Option key (alt) when clicking the green dot. It will then Zoom. You can also double-click the empty space in the window frame. However, if you have it set to minimize on double-click, you will have to disable that to get the Zoom mode.

  • DVR Software for Video Streaming and Viewing with a Mac on a LAN

    I can purchase 4 video cameras. I can purchase a DVR.
    However, I do not know who makes any software to take 4 video streams into the DVR and either
    (1) write them on a DVD which can be viewed on my G5, or
    (2) provide a LAN interface from my G5 to the DVR to download the files over the LAN to my hard drive and view (and potentially edit) them on my Apple G5 and monitor system.
    The PC world requires a PC software with ActiveX which I do not believe is available on Macs. Is there any reliable way of getting ActiveX operational on a MacOS 10.4 G5 system?
    Will this become easier when Apple fully migrates to Intel chips. Can any of the Intel chip Mac systems sold by Apple today using MacOS 4.X be used with ActiveX (or equivalent)?
    Now, aren't these interesting questions. Will Apple move into 2006 with a bang and provide a wireless DVR????

    *"Apple states this is possible, but I don't see much in the ARD manual about using Java viewers."*
    As stated on the page you linked to...yes it's possible...with VNC client/server packages, not ARD.
    Or try LogMeIn: https://secure.logmein.com/products/mac/Default.asp?lang=en

Maybe you are looking for