Recording live video from a streaming source

Hey everyone,
I'm very new to FMS and I have been experimenting around with it as a part of my job. I already have the encoder, FMS, and my AIR application all talking, so that portion is going well.
The problem that I want to tackle next though is to have the FMS server record the live stream to it's hard drive. All of the guides that I've found talk about how to make a DVR stream, but that's not what I want. I want to be able to have the live stream, and then separately I would like to have it recorded.
Thank you all for your time
- Patrick

Hi patrick,
                I have attached one fla with this thread. What you have to do is that, you have to change the path that i used in the rtmp portion of the fla. First of all, in the application folder of FMS, create a folder with your application name. Then you need to give the corresponding path in the rtmp portion. In the fla that i am sending to you, i used the following statement
                         nc.connect("rtmp://192.168.0.74/live_test")
You need to make change on this statement. Change 192.168.0.74 with IP addresss of system in which FMS installed and live_test with the name of folder that you created in the application folder of FMS. If you have any doubts regarding this, mail me on [email protected]
I am also new in FMS. But i have implemented it after a long time of research on it. Hope it will be helpful for you.
Regards,
       Sreelash.S.

Similar Messages

  • Convert live Video from video recording device to a stream

    Hello,
    I want to convert the captured live video from a Windows phone device to a stream so I can Send it over sockets. Any ideas guys?
    in other words, I want to send live video data over sockets.
    Thanks in advance.

    Hello Motasim_Albadarneh,
    the sample at
    [1], the threads at
    [2],
    [3] and
    [4] should be helpful to your problem.
    [1]
    https://code.msdn.microsoft.com/windowsapps/Simple-Communication-Sample-eac73290
    [2]
    http://stackoverflow.com/questions/14187487/windows-phone-camera-feed-over-udp-is-horribly-slow
    [3]
    http://stackoverflow.com/questions/9602582/how-would-i-create-a-windows-phone-live-camera-feed
    [4]
    https://learnwithshahriar.wordpress.com/2015/01/13/guideline-on-how-to-make-a-streaming-app-in-windows-phone
    Regards,
    Bo Liu
    Developer-Hotline for MSDN Online Germany
    Disclaimer:
    Please take into consideration, that further inquiries cannot or will be answered with delay.
    For further information please contact us per telephone through the MSDN-Entwickler-Hotline:
    http://www.msdn-online.de/Hotline
    For this post by the MSDN-Entwickler-Hotline the following terms and conditions
    apply: Trademarks,
    Privacy
    as well as the separate
    terms of use for the MSDN-Entwickler-Hotline .

  • Streaming live video from iPad Air to an projector

    I would like to stream (IPad air) a live video to an projector visa Wi-Fi

    toks2003 wrote:
    ..I am a student trying to work on a project that requires streaming live video from an I.P. camera i have posted this topic earlier and a good friend refered me to this forum. I am not anybody's good friend, as it happens. Also, on your [first thread|http://forums.sun.com/thread.jspa?threadID=5445888], I recommended that ..
    ..If you think your thread will do better there, mention it and I'll get a moderator to move it...which would have been a better option than starting a new thread.
    It is good you took up at least dome of the recommendations, particularly code tags and indenting code, but there were also a number you seem to have missed. To save others the effort of writing what has already been said and seemed to be ignored, I recommend:
    - They look at that thread first.
    - You read it carefully again.

  • Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?

    Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?
    I want to use my iPad as a screen for a reversing camera in my van and want to know if this is possible. do i need a bluetooth camera and is there a specific one that will connect to the iPad? Or is there any form of adaptor that I can plug the camera straight into the iPad?
    Any ideas?

    no
    only "live" thing one can do is to airplay mirror the screen of a ios device or a newer mac with mtn lion

  • Is it possible o stream live video from an ipad to an apple tv

    is it possible to stream live video from an ipad to an apple tv?

    http://support.apple.com/kb/HT4437
    Regards.

  • Can I stream live video from mobile to fms using flashlite?

    Can I stream live video from mobile to fms using flashlite?
    I Know flash lite 4 also not access the mobile camera.  But, I need to develop a application it captures the mobile camera and stream the vedio to fms server and display the live event to other mobile users.
    Is it possible? 
    If possible what are the technologies i can use?
    Thanks for the help in adavance
    Prasad

    i have made a few test with Flash Lite 3.0 and Flash Media Server 3  and I have to say that it is pretty easy to stream FLV Video files and  Live Video from local web camera to mobile phone. Here are a quick  instructions how to do it in Windows (I will publish Linux version  later).
    Play FLV-video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    There are a few sample FLV files in applications/vod/media folder, so you can use one of them for testing
    Create a new Flash Lite 3.0 file in Flash
    Add a new Video symbol to library
    Drag this Video symbol to Stage and give instance name to it: video
    Type following programming to timeline:
    // make a new video-object
    var video:Video;
    // make a new NetConnection-object
    var nc:NetConnection = new NetConnection();
    // check connection status from server
    nc.onStatus = function(info:Object):Void {
      status_txt.text=info.code;
      if (info.code == "NetConnection.Connect.Success") {
        startStreaming();
    // start streaming video to phone
    function startStreaming() {
      ns = new NetStream(nc);
      ns.setBufferTime(5);
      video.attachVideo(ns);
      // play sample.flv from server
      ns.play("sample",0);
    // show info to user
    status_txt.text = "Connecting server...";
    // connect FMS 3 video on demand service (default port 1935)
    nc.connect("rtmp://your.server.ip.here:1935/vod");
    Go to Publish Settings...
    Set Local playback security: Access network only
    Publish your SWF-file
    Send your SWF-file to your phone
    Test and you should see FLV-video playing in your phone
    Play live video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    Install Flash Media Encoder 2 (Windows only)
    Start Flash Media Encoder 2
    You should see your live camera in Input screen
    Press Start-button to start sending live video to Flash Media Server 3
    Create a new Flash Lite 3.0 file in Flash
    Add Video symbol and programming as you did earlier
    Modify your programming:
    // in startStreaming()-function
    // Flash Media Encoder 2 publish stream name is "livestream"
    ns.play("livestream",-1,-1,true);
    // start connection to Flash Media Server 3
    // Flash Media Encoder 2 publishes Flash Media Server's default
    // live publishing point, so connect it
    nc.connect("rtmp://your.server.ip.here:1935/live");
    Publish, test and enjoy
    box office movies

  • Live video from isight embedded into keynote slide

    I have been trying to figure out how to embed live video from my isight camera into keynote. I have tried creating a stream from quicktime broadcaster and import the .sbp file into keynote, but it will not except the stream file. I did not know if there was another way to do it besides the stream or if perhaps I could use another program to help input the video.
    My ultimate goal is to be able to present slides and have a live video from my isight during the slideshow on one of the slides. I guess if there is some other way to get both the slideshow presentation and video on the presentation screen without any program headings, in a clean fashion, that would be acceptable too; even if a different program was handling the video and it wasn't technically embedded.

    Cool, I can see me using this - need to properly test with http://b-l-a-c-k-o-p.com/CamCamX.html#upgrade
    this allows you to choose video sources to play - so i'm betting it will allow video cameras to be used - so it ought to be possible to do live demos/illustrate slides with 3d objects etc ... cool - suspect voice syncing still might be an issue. And KN record doesn't work properly if you have a live movie - it just shows the camera content that's live ... (if you follow me...)
    PS Almost forgot - it will do one of the things I was so desperate to achieve: It would allow you to have a window on the screen with a live feed of a signer for those who use BSL and other sign languages - that's really important. And if you needed to you could use two projectors (see other thread on multiple screens) and put the signer on a nicely designed screen all of their own. WOW!!!
    Message was edited by: Peter D Cox

  • Can't import live video from Sony PD 170.

    Just got Final Cut Pro X. In a New Event I am able to import live video from the new MacBook Pro computer's built-in camera and pre-recorded video from my Sony PD-170 camera. However, when trying to import live video from the PD-170, the program only APPEARS to do so--the clips never show up once I close the import window. Any suggestions?

    I think iMovie is corrupted. I would like to try to uninstall iLife 11 but when I put in the disc there is no uninstall option. I tried trashing iMovie from applications and reinstalled all of iLife (I believe wasted space on my HD) but the issue remains. (Maybe because I didn't delete the receipts?) iMovie can not see any devices or use iSight for capture...

  • Can i take live video from TV tuner? how? urgent help is needed

    can i take live video from TV tuner? how?
    i have downloaded this code for a web cam how can i adjust it to take live video from TV tuner
    * WebcamPlayer.java
    * Created on November 22, 2004, 4:09 PM
    import javax.media.Player;
    import javax.media.CaptureDeviceInfo;
    import javax.media.MediaLocator;
    import javax.media.CaptureDeviceManager;
    import javax.media.Manager;
    import javax.media.format.VideoFormat;
    import java.awt.Component;
    import java.applet.*;
    import java.util.Vector;
    * @author Administrator
    public class WebcamPlayer extends Applet
    private CaptureDeviceInfo device; // Contains the device properties
    private MediaLocator ml; // Contains the location of the media comming from the webcam
    private Player player; // the player
    private Component videoScreen; // Component that is capable to show the player's visual component
    public void init()
    try
    {   //gets a list of devices how support the given videoformat
    Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.MJPG) );
    //device = CaptureDeviceManager.getDevice("vfw:Creative WebCam NX Pro (VFW):0");
    //gets the first device from the deviceList
    device = (CaptureDeviceInfo) deviceList.firstElement();
    System.out.println("Chosen device: "+device.getName());
    //String str1 = "vfw:Creative WebCam NX Pro (VFW):0";
    // de webcam indentifiseren
    //device = CaptureDeviceManager.getDevice(str1);
    //gets the location of the device, is needed for player
    ml = device.getLocator();
    // makes player and gives the streaming video location (that is locate in the MediaLocator)
    // this oparation is blocking until Manager has made a player that is realized.
    player = Manager.createRealizedPlayer(ml);
    //starts the play
    player.start();
    //Gets a component from the player that can show the actual streaming from the
    //webcam.
    videoScreen = player.getVisualComponent();
    //adds the component that displays the streaming to the applet.
    add(videoScreen);
    // Now the user can see the steam that is from the webcam in the applet
    catch(Exception e)
    System.out.println("no device");
    thanks here is my mail if any wants to mail me [email protected]

    just visit
    http://javasolution.blogspot.com/2007/04/java-tv-api-overview.html

  • Can you receive live video from a tv web site on a ipad

    Can you receive live video from a tv web site on your iPad

    If the website you're viewing has HTML5 streaming, or an iPad-specific app, then yes. If the website uses Flash or Java or any "plug-in" technology, then no.

  • Way to use Live video (from camcorder) as a background?

    Hello.
    I was wondering if there's any way to use live video (from camcorder) as a background using Keynote.
    I am trying to add caption/subtitle on live video to projector.

    I haven't tried this myself recently (the last time I tried it, the delay was frozen to no less than 3 seconds), but a user in this thread said he got the delay down to .1 seconds by using QuickTime Broadcaster and altering the .sdp file.
    This technique uses Broadcaster to make your computer stream to itself and use the stream file in Keynote.
    http://discussions.apple.com/message.jspa?messageID=7228452#7228452

  • Recording live video

    hello
    how can one record live video as well as show what is recording ,using JMF
    please help?
    Manmeet Singh

    hello again
    i checked out the site it has one pdf and zip file i already have zip file.
    let me clarify what i want to know
    recording code is given in the guide but i want to use processor (which is created) for recording as well as taking visual component from the same processor.or is there any other way
    please let me know
    Manmeet Singh

  • How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere

    How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere!

    http://support.apple.com/kb/HT4437
    Regards.

  • Can we record a video from a web cam and let saved video take our previous setting

    Can we record a video from a web cam and let saved video take
    our previous setting
    fps: 20
    bitrate: 1000
    Size: 500*400
    can we configure that in code or is it a webcam specs?

    Hi, Vikas-
    After a brief bit of research, you're definitely hitting upon the limitation of the browsers.  Not all of the browsers have implemented this part of the HTML5 standard, so you're going to either have to use Flash or be limited to these specific browsers.
    Thanks,
    -Elaine

  • Can you please record a video from a web cam with inital setting

    Can you please record a video from a web cam that has the
    following specs
    fps: 20
    bitrate: 1000
    Size: 500*400
    can we configure that in code or is it a webcam specs?

    QuickTime Player Pro can't record the screen.
    QuickTime X can record the screen (but only all of it and not just a window). It's a part of Snow Leopard.

Maybe you are looking for

  • [Solved] Xorg 1.5 screwed up my NVIDIA

    Hi, Today I did a pacman -Syu and I got the newest NVIDIA driver installed and the newest Xorg. Everything broke. Well not exactly everything. But my settings are all screwed up. For a start my screen refuses to load at the normal resolution (1680x10

  • Info Record and Purchase Req

    I created a purchase Req and when and I have following doubts in this. 1. Once I entered plant itu2019s automatically populating storage location. Material maintained for different storage locations but I am not sure how it's populating specific one.

  • Xorg.conf - Acer 2016W screen

    Hello, yesterday I bought a new screen (acer 2016W) and I'd like to know how I should reconfigure my xorg.conf to be able to use its maximal resolution (1680*1050). I suppose I should add a line in the modelines but I don't know how. By the alsa supp

  • Another device is using my IP address?

    This morning I started my computer up and a notice popped up on my screen. It said another device was using my IP address and to try again later. I'm not sure what I was supposed to try again later and does this mean my computer has been hacked or is

  • IBM WEBSPHERE EXCEPTION

    I'm getting the following exception while starting the IBM websphere server administrator's console: Exception: Namecom.ibm.ejs.sm.exception.AttributeNotSetException: Name      at com.ibm.ejs.sm.beans.Attributes.getGeneric(Compiled Code)      at com.