Streaming Video from a serial camera using JMF

Hello, I have problems implementing video streaming with a serial camera.
The data for a frame of the camera is like an array of RGB integer values starting from the first pixel until the last. I've implement the code to get the values and store in an integer array.
how to generate video from the data i get?

Hi,
If you really want to do it yourself using TCP/IP you will have to read the standard : http://www.machinevisiononline.org/vision-standards-details.cfm?type=5
Another way is to use NI Vision Acquisition Software, it include all the VI you will need to do image acquisition.
More doc :
Acquiring from GigE Vision Cameras with Vision Acquisition Software - Part I
Acquiring from GigE Vision Cameras with Vision Acquisition Software - Part II
Hope this helps
When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

Similar Messages

  • Can i stream video from an hd camera to an ipad?

    can i stream video from an hd camera to an ipad?

    It would depend on the camera, and the software, there are items like airparrot, drone camera, or video surveilance cameras that have ipad apps for viewing. A great deal more research is in store I'm afraid.
    Google the following for an example
    can you connect a go pro to an ipad and capture the video

  • Is there a way to stream video from an external camera to the iPad? Ultimately, I would like to have an app to annotate content and save video and stills. Thanks

    Hi - I am completely new to the iPad apps world (other than as a consumer). My current laboratory workflow takes live analog video from a high quality camera mounted on a microscope, passes the composite signal through a digitizer and displays the digitized stream via USB with a program on my computer. I can watch, resize, and capture stills or video segments from the live video feed. I have good solultions to accomplish this for both Mac and the PC.
    What I would really like is to get that live video on an iPad in the context of an application where users can capture still pictures and short video segments of the streamed content, annotate them with descriptive observations, and search in a  database for comparable images. Is there an existing technology that would allow me to handle at least the video display and capture aspect around which a specific app could be built? I am new to iPad so I have no idea how to do this. Everything I've seen is about watching pre-stored video programs that are already  on the Mac. Thanks so much.

    Hello Sugeet Posey
    Check out the article below to troubleshoot issues with connecting to your iSight camera.
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Regards,
    -Norm G.

  • How to acquire a video from a ip camera using TCP/IP?

    I have a ip camera connected to a router and I want to acquire its video using tcp/ip. Could anyone help me?
    Thanks in advance,
    Celia

    Hi,
    If you really want to do it yourself using TCP/IP you will have to read the standard : http://www.machinevisiononline.org/vision-standards-details.cfm?type=5
    Another way is to use NI Vision Acquisition Software, it include all the VI you will need to do image acquisition.
    More doc :
    Acquiring from GigE Vision Cameras with Vision Acquisition Software - Part I
    Acquiring from GigE Vision Cameras with Vision Acquisition Software - Part II
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How to stream video from external storage disc using Apple TV

    I have a large (1-1/2 TB) library of movies stored on an external hard disc.  How do I play these videos on my Apple TV.  There is not enough memory on my iMac to move all the movies into iTunes.  How can I move my iTunes library (music & video) to the external hard disc?

    Hi @Elkayj. In order to play your videos and/or music on your Apple TV, you will need to turn On Home Sharing in iTunes. This will allow you to access your iTunes library on Apple TV, turn on Home Sharing in iTunes on your computer using your iTumes Apple ID.
    As for moving your iTunes library to an external drive, you will no to go to iTunes Preferences and select Advanced. There you will see ITunes Media folder location. Click the Change button and select the external drive and directory where you wish to keep your media files. I would suggest you also check "Keep iTunes Media folder organized" and "Copy files to iTunes folder when adding to library".
    For more detailed instructions, the following two links may be very helpful to you:
    iTunes for Mac: Moving your iTunes Media folder: http://support.apple.com/kb/HT1449
    How to move your music to a new computer: http://support.apple.com/kb/HT4527
    I hope that helps. Good luck!

  • Streaming video from phone

    I want to stream video from phone's cam to a server.
    I found MMAPI, with RecordControl I can:
    try
    Player player = Manager.createPlayer("capture://video ?encoding=gray8");
    player.realize();
    RecordControl rc = (RecordControl)player.getControl("RecordControl");
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    rc.setRecordStream(output);
    rc.startRecord();
    p.start();
    //Thread.currentThread().sleep(5000);
    rc.commit();
    p.close();
    catch (Exception e)
    this way the video is in "output" only after "commit()", then I could send it. Is there any way to have real streaming??

    What do you understand with "real streaming"? Do you refer to frequency of transmission? The real time streaming is "not so real". If you put a small sleep time you will get a higher frequency and it will simulate a "real-time" streaming. To speed up your transmission, use UDP protocol instead of TCP, because media streaming in all techs is on top of UDP.

  • 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

  • TS3989 How can I load videos from a GoPro camera to photo stream?

    How can I load videos from a GoPro camera to photo stream? I can download pictures but no videos.

    Helllo AM and Bob,
    It sounds like you are wanitng to add video to your Shared Photo Stream. this article outlines the requirements for video that can be used, named:
    iCloud: iCloud Photo Sharing FAQ
    http://support.apple.com/kb/HT5902
    iCloud Photo Sharing supports both MP4 and QuickTime video file types, and H.264 and MPEG-4 Video file formats. Videos can be up to 5 minutes in length and are delivered at up to 720p resolution.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Is there a way I can stream video from my 2012 AirMac to the Apple TV using airplay and at the same time stream the audio to an air speaker?

    Is there a way stream video from a 2012 MacBook Air to a TV using Apple TV and at the same time steam the audio to an air speaker. Also the same question but using an ipad

    You can try one thing. Follow these steps:
    1. On your Mac, turn on AirPlay Mirroring and connect it to the Apple TV, so audio and video will stream from the Apple TV.
    2. Turn off the sound of the TV where you have connected the Apple TV.
    3. Then, make sure that you have turned on the AirPlay speakers. Then, open System Preferences > Sound > Output, and choose the external speakers, so sound will stream from these external speakers.
    This should work correctly

  • How can i stream video from mac os x 10 using roku to my tv?

    how can i stream video from mac os x 10 using roku to my tv?

    Welcome to Apple Support Communities
    OS X can't write in NTFS disks. If you want to write in NTFS drives, you have to use a third-party app like Paragon for NTFS, being this application the best one to write in those disks.
    Another option is to format the external disk in FAT32 or exFAT on a PC, so you will be able to read and write in Macs and PCs without having to use third-party apps. Do it on a PC and copy the files of your external drive to the internal disk first

  • Hi when I stream video content to my Tv using Apple from my Ipad3 I find the Ipad goes to sleep after 2/3 minutes and disconects, the only way I have found to stop this is to continually tap the Ipad screen but there has to be a simpler method/ any help

    Hi when I stream video content to my Tv using Apple tv from my Ipad3 I find the Ipad goes to sleep after 2/3 minutes and disconects, the only way I have found to stop this is to continually tap the Ipad screen but there has to be a simpler method/ any help would be most welcome.

    Welcome to the Apple Community.
    Contact the developer of the Air Video app.

  • When I stream videos from my laptop onto my Apple TV via my iPad 2 using the Air Video app/server the video plays great however when I pause the video the Apple TV reverts back to the home screen within a few seconds and then when I want to restart watchi

    When I stream videos from my laptop onto my Apple TV via my iPad 2 using the Air Video app/server the video plays great however when I pause the video the Apple TV reverts back to the home screen within a few seconds and then when I want to restart watching the video I have to re-buffer the video. Is there any way I can stop the Apple TV from reverting back to the home screen when I pause the video I’m watching?

    Welcome to the Apple Community.
    Contact the developer of the Air Video app.

  • I need to stream video from itunes to apple tv with out using my 40gb hd.

    i need to stream video from itunes to apple tv with out using my 40gb apple tv can it be done you see i have a 40gb apple tv and it's full and i still have lots more video (movies) in my itunes can i stream movies from itunes to apple tv with my memory full in apple tv??????????

    Select the iTunes library on your computer from the Sources menu in Apple TV and then you can stream. If streaming is not smooth and your router has a multicast setting, try increasing the multicast bit rate. To return to the synced content on your Apple TV, select the Apple TV logo at the top of the Sources menu.

  • I cannot stream video from my local public library on my iPad Air 2 using Overdrive Media Console

    I am unable to stream videos from my local public library on my iPad Air 2 using the Overdrive
    Media Console App. I can stream videos on my older iPad 1st generation.  Anyone else
    having his problem?

    The app gives you instructions to browse to the Overdrive site and put in your Zip Code. You can do this from Safari on the iPad. When you find your local library, you will be asked to log in with your Library Card and PIN. When you select compatible content, the Overdrive app will automatically launch, where it will give you the ability to download content segments, or even all segments. It will also help you keep track of when the book will expire etc. The books are broken up into many segments so that you can manage how much content is stored on your iPad. I did this just this morning, and downloaded 8 of 38 segments of the book 2666.

  • Use of PlayMemory on ipad to read video from a sony camera

    how can I read the videos taken from my Sony camera TX10 format TS (AVC)? Videos from a Canon camera appear amonst the photos but not with the Sony camera
    I have dowloaded the PlayMemory Mobile application but it is still not working.
    Thanks for your help

    I have used Canon still cameras for more than 20 years, always with great results. I love my Canon digital cameras. However, I have not purchased a video camera.
    I like Canon too.
    USB is not a good way to import Video.
    USB camcorders use formats that use high compression to store the video files thereby lowering quality. This may be good enough to give you "decent footage" if so, then you won't have a problem using a USB camcorder. However I have never been happy with the quality that a USB camcorder provides (they always look grainy to me).
    A miniDV tape cam will give you lossless quality video and is best for any editing purposes (iMovie, Final Cut etc.). So without Firewire make sure you get a chance to try out any USB camcorder before you buy.
    Having a tape cam also allows you to always safely keep your original footage, plus make a tape copy of your finished movie by exporting from iMovie HD6 back to your cam. Tapes are far more reliable long term storage media, if stored properly, than any DVD or hard drive will ever be.

Maybe you are looking for

  • BAPI to read and change schedule lines in APO

    Hello experts, We want to firm schedule lines inside the firm zone of the APO procurement scheduling agreements with a daily job. For this we are trying to use BAPI BAPI_POSRVAPS_GETLIST3 and BAPI_POSRVAPS_SAVEMULTI3. The getlist one does not return

  • System.UnauthorizedAccessException: Retrieving the COM class factory

    System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {5EFA39FA-B2C4-4A6E-84D6-C3333D1A3D07} failed due to the following error: 80070005. I'm trying to deploy asp.net 2005 app with Crystal Reports XI Release 2.

  • OVERHEATING MESSAGE THEN BLANK SCREEN

    There was an overheating message on a blank screen after leaving it in the car. After a brief moment the screen went blanl and it will not power on. It will not charge from the computer nor the wall outlet.

  • Will outlook pc multiple categories be supported when syncing to apple contacts via iCloud ?

    I ve got contacts with multiple categories in outlook 2007 on a pc, i would love them to be grouped in my contacts on apple imac, ipad, iphone... I use icloud to do the syncing (i ve installed icloud control panel on the pc) and i also turned contact

  • How iPhone differs from iPhone 3G in looks

    how to know which model is of iPhone and which of iPhone 3G by just seeing its outlook features. In my iPhone 16 GB is wriiten in its back side. But in package box iPhone is written instead of iPHONE 3G. Please tell me its 3G model or just a simple o