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.

Similar Messages

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

  • No video stream when calling 3rd party endpoint from Jabber client

    I use my own H323 client based on the H323Plus open source. It works very well with VCS and all endpoints we tried (a dozen or so from every vendor). We have a problem with Jabber Video though, across all versions from MOVI to 4.4.3. When my own client calls Jabber everything works as it should. However, when Jabber calls my client then (1) it takes up to a minute for Jabber to display incoming video and (2) Jabber does not create outgoing video stream. This behavior is 100%  reproducible across all PCs we tried. Jabber is registered with either VCS Starter Pack or VCS Control, sofwtare version 6.1 in both cases. We do not use provisioning at this time.
    In Jabber logs there is a unclear hint about insufficient resources (bandwidth?) for the video stream. VCS configuration is fine (it works with all other clients like e20) and I do not see anything useful in VCS logs.
    To narrow the discussion, this is NOT a firewall, client camera or driver, OS misconfiguration or any other external issue. It is Jabber video having problem negotiating capabilities and/or resources but only it initiates the call. Where should I look for a solution?

    I was afraid this will end this way. I hoped you might have had such a case solved already :-).
    Audio works fine, no problem at all. The video packets are not sent from my client to Jabber while in the 1 minute wait; the stream from Jabber  is not even started. I still think I need Wireshark to decode H225 traffic. Good idea with the interworking log - I was too lazy to go the OS layer. As you surely know, only 2 of the VCS logs are available from the Web interface.
    thanks for your help!

  • ?Inserting video/media into applet

    I've just gotten into applets. I found and finally today figured out how to insert audioClips into the applet, but i cannot find a way to insert video (wma, mov, ect..) files into the applet. I would greatly apreciate it if someone could NOT give me the code to do it, but tell me what classes to look in so that i may try and figure it out myself.
    I am using Java 1.4.2
    I used the following code for my sound/image to appear, but have not been able to find anything concerning video:
    import java.awt.*;
    import java.applet.*;
    public class Applets extends Applet
         public void init()
         public void paint(Graphics g)
              sound();
              picture(g);
              video();
         public void sound()
              AudioClip x = super.getAudioClip(getCodeBase(),"Wonders.wav");
              x.play();
         public void picture(Graphics g)
              Image x = super.getImage(getCodeBase(),"htgnlogo.jpg");     
              g.drawImage(x, 0, 0, this);
         public void video()
              //help?
    }

    You can use the dbms_lob package to store BLOBs in the database. See: http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10802/d_lob.htm
    If you want to do someting else, please specify what you want to do exactly, the versions of the products you are using etc.

  • 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

  • Inserting video into templates

    I am extremely new to AE. I have CS6 and am trying to learn it on my own... but it's very complicated.
    I have a template I am working with that I want to insert video clips into. The template has jpegs that say "insert photo or video here". How do I swap the jpeg with the video clip without losing the keyframes and effects? I'm not well-versed enough to just re-do them all. I am using the templates to learn the program but to also build a few videos for the non-profit I work for.
    Another thought I had was if it was possible to copy all the attributes/effects/keyframes from one media piece to another. So if I were to add the video clip to the composition and copy the attributes from the template photo to the video clip I just added and then make the template photo invisible. But I haven't been able to figure that out. :/
    Thanks!

    Welcome to the world of After Effects! As you've noticed, it can be pretty complicated. I highly recommend that you start here. That is a set of resources specifically curated to help people new to AE get started off on the right foot.
    To your question, this page in the AE help has what you need. It says to select the layer you want to replace in the Timeline panel then Alt-drag (Windows) or Option-drag (Mac OS) your new footage item from the Project panel onto the selected layer in the Timeline panel.

  • Inserting video clips

    My group are fairly new ussers of Vis. Com.  Today we inserted video clips into a program and immediate were given the message that the program was not responding and would close.  Three hours later we tried to open that program and review it to be given the same message.  Does processing a video clip need this much time or have we overlooked some detail?

    Actually, no, that's not how I did it . . . I used the advanced tools/replace clip feature.  It took me a while to figure out though, it's not explained clearly in the app help, but you have to separate longer clips to isolate the section you want to replace.  Then choose a section from the  replacement clip that's  the same  length, with accurate in and out points so it lines up with the existing audio track (if that's a factor)... sometimes needs some trial and error to make it work, but the results are exactly what I'm looking for.  Thanks for the reply, the 'cutaway clip' thing looks good too!

  • 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

  • How to import video files  into BLOB datatypes

    Dear ,
    Can any one help me to find out the way throuh which i insert video files into tables using BLOB data type.
    Faheem Latif
    Team Lead - Lease Soft
    NetSol Technologies Limited Pakistan.
    www.netsoltek.com, www.leasesoft.biz

    http://www.oracle-base.com/articles/8i/ImportBlob.php
    This is to import any BLOB file onto table column.
    Cheers
    Sarma.

  • Importing video clips into slide shows

    I often insert video clips into slide shows.  They mix nicely with pan and zoom still photos.  However, the type of video clips that can be inserted is very restricted.  Why is this?
    Elements can deal with a wide variety of video formats but, as far as I can see, only AVI and WMV videos can be imported into slide shows.  Compact digital cameras typically use AVI, MOV and MP4 formats.  My camera produces MPG videos, which I cannot import.  I have to convert the clips into AVI format and reimport these into Organiser etc - which is very fiddly. I am considering buying a new camera that produces AVI video clips as standard.
    Why is the choice of video formats so limited? I cannot find a list of allowable formats on the Adobe site.

    Hi David
    Thanks for this. I tried that, but again, Streamclip only imported content from the first clip, ignoring the rest...on further inspection, all the VOB files were sub-divisions of the the first item (in essence, the system had chopped up the first recording into sections and formatted them as VOB files, but failed to do that for the remaining content of the DVD).
    I booked an appt with a Mac Genius today and he downloaded Handbrake and this appears to be the way forward - you can isolate any of the content from the DVD, and save into either avi or mp4 files. I currently don't need Streamclip, since after my selection's been saved unto the desktop it can be dragged into iMovie and edited from there. I'll be keeping Steamclip though...after all of the aggro, it seems to good to be true!
    Thanks again for responding to my query. Really appreciated that you took the time.

  • 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

  • DVR Software for Video Streaming

    Subject: DVR Software for Video Streaming
    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 of course is not available on Macs.
    If my need can't be fullfilled, then 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????
    Power Mac G5   Mac OS X (10.3.9)  
    Power Mac G5   Mac OS X (10.3.9)  

    Two good places to look for software:
    http://www.versiontracker.com/macosx/
    http://www.macupdate.com/

  • How do I insert a video clip into the timeline?

    Do you happen to know how I could insert a video clip into the middle of a movie like you do in FCP? Can you add tracks and insert the clip above the spot i need to change for each movie.
    I don't want to render the whole movie (convert it into a MPeg2) each time.

    No - DVD timelines are a little different to FCP. If you need to add a clip to the stream, you need to split the exisitng clip (you could trim it back to where you want to insert the new piece) and drag the new piece onto the same timeline. If you trimmed the existing piece then add another instance of it to the timeline and trim the new part from the left until you get to what you want as the out point.
    If you have a collection of video clips on your DVDSP timeline, simply dragging a new one on will shuffle the others along appropriately. However, the audio will not shuffle with them, and you'll end up moving it all manually.
    The very best thing is to create the timeline precisely as you want it in FCP and encode it to MPEG2 before bringing it in to DVDSP. Remember that DVDSP is not an editor, it is a place to assemble your work - it won't do anything remotely like FCP in that respect.

  • Videos I burnt to disc on my pc won't play on my macbook, when I insert the disc into the macbook it says it's blank but plays fine on the pc

    Videos I burnt to disc on my pc won't play on my macbook, when I insert the disc into the macbook it says it's blank but plays fine on the pc, does anyone know how to fix this?  The photo's I burnt on the exact same type of disc work fine in both pc and macbook but the videos will only play on the pc.

    If you are trying to play these on quicktime then what video format are those videos?
    Wmp's?  You need to install Flip4Mac. 
    Most other formats?  Install Perian.
    Or just use vlc instead.  It's a much better, more powerful, and more general video player.

Maybe you are looking for