How to make a video in Labview that synchronize with the case data?

Hi guys,.

I do a program which displays the case data from a satellite to different positions. (For example, to position more near the Sun, the temperature data are higher...)

To make the most interesting façade, I add in a video of a satellite in orbit around the Earth. The video must synchronize with the data that I show.

My satellite orbital time is 90 minutes = 5400 seconds. If I use the method of control of ring photo, I have to import 5820 photo frames in the control of ring image. My understanding is that every time that the user can import an image (correct me if I'm wrong). That would mean that I have to import the photos in 5400 times.

Is there another way to do this? I don't want to waste my time on the import of so many images.

Vanessa

If it's a video you have, I would have a look at the incorporation of some sort of video player in the façade through ActiveX. It is not something I've ever tried, but it should be possible and will save you having to generate 5000 + images!

There is a resource here on the use of VLC with LabVIEW: https://decibel.ni.com/content/docs/DOC-24114

If you can embed a video player and can be driven through ActiveX, then you should be able to do what you want!

Tags: NI Software

Similar Questions

  • How to make a video DVD of myself I use the webcam for laptop?

    How to make a video DVD of myself I use the webcam for laptop? I never did a video before, and I am a teacher who wants to put my sessions on DVD now. How and what do I do?
    Thanks in advance.

    Hi Sdashe,

    You need to browse for some third-party applications that could support the web cam video, and you can use windows media center media player to burn DVD.

    http://Windows.Microsoft.com/en-us/Windows-Vista/burn-a-CD-or-DVD-in-Windows-Media-Center

    http://Windows.Microsoft.com/en-us/Windows-Vista/burn-a-CD-or-DVD-in-Windows-Media-Player

    Bindu S - Microsoft Support
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I have a Macbook Pro which is not a hard drive.  How to install Adobe Photoshop elements 11 that came with the Epson scanner, I bought.  I registered S/N, and I can't find the free download anywhere alone trials.

    I have a Macbook Pro which is not a hard drive.  How to install Adobe Photoshop elements 11 that came with the Epson scanner, I bought.  I registered S/N, and I can't find the free download anywhere alone trials.

    Downloads available:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • Re: How to make a video to a Web site on the first

    bit of a luddite here.  first pro has just started, it's a blank slate.  How to make a video of a website in preview?

    [Branched out in a new thread, mod]

    Hi Eric,.

    At the bottom of the video screen, there are tools for users to modify and use portions for your personal use.

    I tried. You must have an account first. Then, drag the handles to pick your snippet. The clip will be saved in your account page. At the bottom right are the download options. Only the version low quality is free. The superior quality that would work very well in Premiere Pro require a small fee. Pay for the file download and then import them into Premiere Pro. Hope that helps.

    Kind regards

    Kevin

  • How to make a hyperlink in labview that connects my text to a folder on the desktop

    Hello

    I have boxes of text yellow explaining my code in labview and would like to link project C:\Users\Brett\Desktop\Chemostat 21/05/13.

    It would be easier for the user to simply click on the text. Instead of it looking up.

    Lydia

    Already done

    https://decibel.NI.com/content/docs/doc-15362

    See you soon!

  • How to make a video downloaded from my camera with an extension. MOV to work in Media Player or moviemaker?

    I need to edit a video that I downloaded from my camera.  He got a .mov for file extension.  Doesn't work in all Microsoft products.

    Wow! 18 Megapixel,... who are quite a camera.

    I downloaded a file .mov on the following site
    and it was too advanced for my system to cope.

    Canon - EOS Digital Rebel T2i SLR
    http://www.steves-digicams.com/camera-reviews/Canon/EOS-Digital-Rebel-T2i-SLR/sample-photos-83.html

    I don't have a copy of the commercial version of Apple Quick
    Pro time, but maybe he could convert.

    Anyway... you can try the following converters but I
    cannot guarantee that they work for you.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    (1) format Factory (freeware)
    http://www.videohelp.com/tools/Format_Factory
    (the 'direct link' is faster)
    (the file you want to download is: > FFSetup260.zip<>
    (FWIW... installation..., you can uncheck
    ('all' boxes on the last screen)
    (Windows XP / Vista / 7)

    First, you will need to decompress the file or just open the
    Drag FFSetup260.exe out of the folder
    and drop it on your desktop. To install left click.

    (2) SUPER © Simplified Universal Player Encoder & Renderer
    http://www.filehippo.com/download_super/
    (Windows XP / Vista / 7)

    (3) Freemake Free Video Converter (freeware)
    http://www.Freemake.com/free_video_converter/
    (Windows XP / Vista / 7)

    (4) Koyotesoft Free Video Converter
    http://www.koyotesoft.com/indexEn.html
    (2000/XP/2003/Vista/Seven)

    (5) Xilisoft Video Converter
    http://www.Xilisoft.com/video-converter.html
    (not freeware but receives good reviews)
    (Windows XP (SP2 or later) / Vista / 7)

    Although it is not freeware... the Xilisoft Video Converter
    has seemed to make the best conversion.

  • How to make a form field validate that it is the sum of the other two fields?

    Hello

    I'm creating a form, and I'd like one of the fields to validate by making sure that this field is the sum of the other two fields of the form.  Anyone have any ideas on how to go about it?  I know that I need to run a custom validation script, but I don't know where to start - I have never made one for before validation.

    Thanks for any help!

    OK, here's a sample script that I hope will clearly demonstrate the general approach. It is intended to be the validation script custom field that the user enters the value which is supposed to be equal to the sum of the other two.

    Custom validation script

    (function () {}

    Get the value that the user entered

    sVal var = event.value;

    If it is empty, do nothing else

    If (! sVal) {}

    return;

    }

    Converts a string to a number

    nVal = + sVal;

    Get the values of the fields in the form of numbers

    var v1 = + getField("text1").value;

    var v2 = + getField("text2").value;

    Add them together, rounded to two decimals, converting to the number

    var sum = + util.printf ("%.2f", v1 + v2);

    Compare the value of the sum of the other two fields

    Change the user if they do not match

    If (nVal! == $) {}

    App.Alert ("the value entered does not equal to the sum of text1 and text2. Please correct. «, 3) ;

    If you want the value entered was rejected, include the following

    Event.RC = false;

    }

    })();

    Replace "text1" and "text2" with real field names.

  • How to get rid of extra bar that comes with the new update?

    I'm a big fan of Mozilla and have used FireFox for many years. The new update messed up the way I had my browser, but I found an addon which allow me to move things where I wanted them once more. There is one thing that I could not fix well - the empty bar under tabs that extend horizontally over the entire screen. I unchecked toolbar bookmarks, addon bar tools and additional toolbar, but that bar it won't go away.

    I completely understand the need for the redesign of the user interface and do not complain.

    I have uploaded an image here.

    http://imgur.com/h0f9NRE

    As you can see, I like the minimalist look and this bar is trampling on this look. Once more I complain on the new UI, but this bar will be removable in a future update?

    Is not an additional bar; This is the navigation bar which has always been there.

    1. Open the modules (Ctrl + Shift + A Manager; Mac: Command + shift + A), then the Extensions category.
    2. Next to Restorer of classic theme, click the Options button.
    3. On the main tab, under general UI, check "hide navigation bar.
  • How to make a video to display horizontally on iPhone?

    How to make a video to display horizontally on iPhone?

    Not sure where but your get video, put your phone horizontally.

  • How to make a video of my dvd creator to post!

    How to make a video I did with my Windows DVD maker to post on say Face book?

    Hello

    Check with Facebook help and Support and their Forums.

    Facebook - help and Support
    http://www.Facebook.com/help.php

    Facebook - Facebook Contact and support of Facebook
    http://www.Facebook.com/help/?page=835

    Facebook - Forums
    http://getsatisfaction.com/Facebook

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How to make a link in textflow that send parameters to a function?

    How to make a link in textflow that send parameters to a function?

    In the examples included with the weekly builds, there is an example of CustomLinkEventHandler.as.  Passing parameters would be in the CustomClickHandler function.  You can set the parameters to the LinkElement that user using the setStyle API styles.

    Hope that helps,

    Richard

  • PHP: The partition on my solitaire game that come with the computer has a prefix of Php.How can I get rid of php?

    The partition on my solitaire game that come with the computer (but not on the same computer system of woman) has a prefix of Php.

    How can I get rid of the php?

    Hi pichick,

    1. what operating system is installed on your computer?

    2. when the question is is produced?

    3. you remember to make changes to your computer before the problem?

    4. are you referring to the solitaire game that is already installed in your operating system, the solitaire online game or the game of solitaire that is downloaded from the Internet?

    In the meantime, follow these methods.

    Method 1:

    Step 1:

    I suggest you Uninstall and reinstall the game and check (if referring to downloaded the game)

    Note: Specific measures for Windows 7 and Vista

    Step 2:

    If you are referring to the solitary of the Games Explorer, you can disable the feature, restart the computer and then turn on the game and check its features.
     
    a. click the Start button, select Control Panel, click programs and then click turn on turn Windows features on or off.

    If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    b. develop the Games folder, clear the check box next to solitaire to turn a Windows feature (game) off

    c. click OK.
     
    That repeat steps but next time make sure that the box next to solitaire.
     
    Turn on or off Windows features
    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-features-on-or-off

    Note: Specific measures for Windows 7 and Vista

    Method 2:

    If the issue took place recently, you can perform a System Restore to the point that it was working fine.

    Note: Specific measures for Windows 7

    Aziz Nadeem - Microsoft Support

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • BlackBerry Smartphones how many mAh is the battery that comes with the 8130?

    How mAh is the battery that comes with the 8130?

    I opened my phone and it does not say how many mAh it is. I'm looking on ebay for an extra battery and want to get an equal or better than the current

    The 8130 comes with a 900mAh battery. Make sure you get a compatible battery for the BlackBerry device. Are listed here:

    http://www.blackberrysource.com/store/catalog.asp?item=782

  • My panels disappeared.  How to make a comeback?  (I all checked, including the histogram, layers, actions and adjustments)

    My panels disappeared.  How to make a comeback?  (I all checked, including the histogram, layers, actions and adjustments)

    Hello madeline,

    Please check that you have selected the correct "essentials" workspace, if you already correct then try to restore Photoshop preferences to default.

    Steps to follow:

    To re-create the Photoshop preferences files, start the application while pressing Ctrl + Alt + Shift (Windows) or command + Option + shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop settings file?"

    Let us know if that helps.

    Kind regards

    ~ Mohit

  • How I replace the toolbar firefox... and remove the toolbar that starts with the MOST VISITED and SUGGESTED SITES

    Somehow lost the toolbar that has the page back arrow and refresh and stop icons. How can I replace those and remove a toolbar that starts with the MOST VISITED and lists several SUGGESTED SITES.

    Hello kittyheckel, please see the Navigation buttons such as back, home, bookmarks and recharge are missing. You'll want to disable the bookmarks toolbar and enable the navigation toolbar.

Maybe you are looking for