How can I display a avi-file while acquiring data from a DAQ-CARD at the same time

While my system is acquiring analog data and controlling a motor, I want to display a avi-film (preferably in full-screen, so that the LabView GUI disapears during this process). Are there any VI's to open external players? May I face some problems to lose samples, due to the calling of external players?

mhi wrote in message news:<[email protected]>...
> I've already found this example, but it doesn't work with the latest
> media-player. Anyhow, thank you for your answer!
you can also try out this free vi from my website:
http://www.geocities.com/irene_he/FunStuff.html
Irene

Similar Messages

  • How can I record an Audio Instrument (saxophone) and listen to a reference track at the same time?

    How can I record an Audio Instrument, and listen to a reference track at the same time?

    Are you using an external audio controller or the line-in and headphone jacks on the side of your computer? You shouldn't have an issue using headphones when you're recording through the line-in but you may want to make sure you have monitoring on and it's going to the right place.
    If you're using an external audio controller, try making an aggregate device combining the controller and the "built-in output" into the same device. Go to Applications/Utilities/Audio MIDI Setup, click the "+" sign at the bottom left to make a new device and check the "use" boxes to the left of the physical devices you want to use as part of that aggregate device. That is how I use the computer's speakers or headphones to monitor my input as opposed to only being able to use the output on my audio controller.
    Now that I see some of the questions on the side of this page I realize that the 13" MBPs seem to have only one combined input/output jack... That is an incredibly stupid feature. What on Earth could possibly justify that design decision? I suppose if that's the problem you're having you'll have to buy some sort of splitter (if they even make them) or get an external audio controller like an Apogee Duet or something along those lines. I would be furious if they combined those two jacks on all of the MBPs.

  • How can I move my address file and mail folders from one drive image to the active drive?

    I have a drive with recovered data from a crashed drive. How do I import the Thunderbird address file to the new, current drive ( also the mail folders ) ?

    Look at https://support.mozilla.org/en-US/kb/profiles-tb#w_how-to-find-your-profile to locate your profile on the recovered disk.
    If you are just starting TB with a new profile, the simplest thing to do would be to copy the recovered profile to the directory where your current profile is located. Then switch; see https://support.mozilla.org/en-US/kb/using-multiple-profiles to switch to the other profile
    If you have stuff in your current profile you need to save or merge, let me know and I will give you further instructions.

  • How can I download apps on my Ipad4 without having it on my Iphone in the same time?

    Why when I download new apps on my Ipad 4 the apps goes on my Iphone too? I know this is the same Apple id but how can I resolve this? Do I have to have anothe apple id for each ?

    Do you currently have automatic downloads turned 'on' for apps on your iPhone : Settings > iTunes & App Stores (Settings > Stores if it's not on iOS 6) ? If you do then try turning it off, that should then mean that any apps that you buy on your iPad don't automatically download on your phone as well.
    Or if it happens when you sync the phone to your computer's iTunes, then when you next connect the phone on its Apps tab make sure that the 'automatically sync new apps' tickbox under the listbox of apps is unticked

  • Data Writing Speed for Excel Sheet while taking data from PCI DAQ card

    Dear All,
              I am taking the data form the card EX-92026 pci card and writing those datas into the Excel sheet, now i want the data at the speed of max of 10 miliseconds but while writing the data into excel sheet, it shows the diff of 15 ms betn 2 readings, and the card specs says it takes the time of 500 microsecs to give the data, so is there any effect of timing, while writing data into excel sheet? is labview take more time, i am using the Open file, write file and close file method and write to spreadsheet file method, but none of them is giving me the effective timing that i wamt, so can u tell me how can i reduce it??????
    Thanks,
    Nishant

    Hi Nishant:
    I think I don't understand you very well. If you are using OpenFile, CloseFile and WriteToSpreadsheet VIs, you are not dealing with excel files, but text files.
    Writing to file is costly in time. You can:
    Open the file just once and
    during de process use just file writing VIs as 'write to spreadsheet'... or a more simple one 'write file'
    Close the file once at the end.
    If you need the process to be faster, you can save all the data at 10ms rate in an array and write to file at the end.
    Or write to file every second what you got the last second.
    Hope it helps
    Aitortxo.
    Aitortxo.

  • How can i display a image file which is placed in the applications server

    Hi all,
    Can any one help me how can I display a image file which is present in the application server.
    With regards,
    M.Ramana Murthy

    hi,
    *& Form TOP_OF_PAGE
    * text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    * I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    rgds
    Anver

  • How can i bulk rename music files in reverse order from artist - song name to songname - artist

    How can I bulk rename music files in reverse order from artist - song name to songname - artist.
    I actually dont need to rename the actual files.
    Its just i have a huge txt list of 100,000 music names that are listed as so..
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    and i need this list to reverse it self so it is listed in the list as
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Im sure there is some kinda way to auto a mix of applescript/automator/terminal to do something like:  all char before the "-" replace with the chars after the "-".
    Please some one help me if you know how I can pull this off

    How can I bulk rename music files in reverse order from artist - song name to songname - artist.
    I actually dont need to rename the actual files.
    Its just i have a huge txt list of 100,000 music names that are listed as so.
    I wonder if we haven't misunderstood what you were asking for. Could it be that you have not a huge file, but just a huge list of names in many small files. If that's the case, you should rather use the following script instead of the previous one.
    Since this script does not rename the files, make a backup of your files before running it.
    set theFolder to choose folder -- the folder containing your text files
    tell application "Finder"
        set theNames to name of files of theFolder whose name extension is "txt"
    end tell
    set theTextFiles to {}
    set theFolderPath to POSIX path of theFolder
    repeat with thisName in theNames
        copy theFolderPath & thisName to the end of theTextFiles
    end repeat
    repeat with thisFile in theTextFiles
        set F1 to open for access thisFile
        set theText to read F1
        close access F1
        set theParagraphs to paragraphs of theText
        set bigList to (a reference to theParagraphs)
        set theNewParagraphs to {}
        set bigNewList to (a reference to theNewParagraphs)
        repeat with X in bigList
            set P to offset of " - " in X
            if P = 0 then
                set Y to X
            else
                set Y to text (P + 3) through -1 of X & " - " & text 1 through (P - 1) of X
            end if
            copy Y & return to the end of bigNewList
        end repeat
        set theNewText to text 1 through -2 of (bigNewList as text)
        set F2 to open for access thisFile with write permission
        set eof F2 to 0
        write theNewText to F2
        close access F2
    end repeat
    display dialog "Done!" buttons {"OK"} default button 1 with icon 1
    Message was edited by: Pierre L.

  • How can I attach a pdf file to outgoing mail without it opening up within the message?

    How can I attach a pdf file to outgoing mail without in opening up within the message?

    You can use the Share button on Preview's toolbar. Choosing Email pops open Mail with the PDF already iconified as an attachment. If it doesn't behave this nicely for you, select the PDF in Mail and choose the right contextual menu, where you will find View as Icon. I also have Send Windows-Friendly attachments enabled.

  • How to use for all entires clause while fetching data from archived tables

    How to use for all entires clause while fetching data from archived tables using the FM
    /PBS/SELECT_INTO_TABLE' .
    I need to fetch data from an Archived table for all the entries in an internal table.
    Kindly provide some inputs for the same.
    thanks n Regards
    Ramesh

    Hi Ramesh,
    I have a query regarding accessing archived data through PBS.
    I have archived SAP FI data ( Object FI_DOCUMNT) using SAP standard process through TCODE : SARA.
    Now please tell me can I acees this archived data through the PBS add on FM : '/PBS/SELECT_INTO_TABLE'.
    Do I need to do something else to access data archived through SAP standard process ot not ? If yes, then please tell me as I am not able to get the data using the above FM.
    The call to the above FM is as follows :
    CALL FUNCTION '/PBS/SELECT_INTO_TABLE'
      EXPORTING
        archiv           = 'CFI'
        OPTION           = ''
        tabname          = 'BKPF'
        SCHL1_NAME       = 'BELNR'
        SCHL1_VON        =  belnr-low
        SCHL1_BIS        =  belnr-low
        SCHL2_NAME       = 'GJAHR'
        SCHL2_VON        =  GJAHR-LOW
        SCHL2_BIS        =  GJAHR-LOW
        SCHL3_NAME       =  'BUKRS'
        SCHL3_VON        =  bukrs-low
        SCHL3_BIS        =  bukrs-low
      SCHL4_NAME       =
      SCHL4_VON        =
      SCHL4_BIS        =
        CLR_ITAB         = 'X'
      MAX_ZAHL         =
      tables
        i_tabelle        =  t_bkpf
      SCHL1_IN         =
      SCHL2_IN         =
      SCHL3_IN         =
      SCHL4_IN         =
    EXCEPTIONS
       EOF              = 1
       OTHERS           = 2
       OTHERS           = 3
    It gives me the following error :
    Index for table not supported ! BKPF BELNR.
    Please help ASAP.
    Thnaks and Regards
    Gurpreet Singh

  • How do I print to wifi printer while keeping data from cellular?

    How do I print to wifi printer while keeping data from cellular?

    If you print to a WiFi printer no Cellular Data will be used.

  • Hi, I have a macbook air os x 10.9.5 and I have problems with the app store. It doesn't open anyway. so, how can I install it again or update. I have problems with preview too, the same, doesn't open the application

    Hi, I have a macbook air os x 10.9.5 and I have problems with the app store. It doesn't open anyway. so, how can I install it again or update. I have problems with preview too, the same, doesn't open the application

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • How can I uninstall Maverick and reinstall snow leopard? My mac hasn't been the same since I upgrading to maverick. Runs slow, crashes, can't cope with normal functions.... Help, please help

    How can I uninstall Maverick and reinstall snow leopard?
    My mac hasn't been the same since I upgrading to maverick. Runs slow, crashes, can't cope with normal functions....
    I need to go back to leopard or buy a new MacBook Pro!
    Help, please help

    Revert to a Previous OS X
    Revert to former OS from Mavericks
    Revert to Snow Leopard

  • How can I add an AVI file to iMovie?

    I have iMovie '11. It won't let me add a .AVI file. If I can't add a .AVI file what is the best FREE software to convert it and what should I convert it to? Thanks!

    I agree with the Streamclip suggestion for two reasons.
    The first is that it is free and works well.
    The second is that Streamclip is so essential that if one doesn't have it on one's computer, one is missing a very fascinating piece of software. Free, converts faster than anything Apple uses, and gives you a little window to see the conversion to make sure everything is going ok.
    Hugh

  • How can I get my AVI files to play on my PC?

    How can i get my AVI's to play with sound, whenever i load them there is a pop up directing me towards the quicktime page that has the add ons (CC, xvid, dvix etc) i tried converitng to divx and still no sound. HELP!
    I have downloaded DVIX and XVID and then i purchases QUICK TIME PRO. Nothing works. THANKS!

    The following link may be of help with .avi's
    http://www.headbands.com/gspot/
    In this discussion I posted two links with info for Divx and Xvid, how accurate I don't know, but the info is from their own websites
    http://discussions.apple.com/thread.jspa?messageID=6572561&#6572561

  • How can I display de last items of a region from other page in Portal?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format these attributes).
    Thanks a lot.

    How can I display the last items of a region from other Oracle Portal page?

Maybe you are looking for

  • How to  install 10.6 with no cd drive into Macbook Pro

    I have a 2011 mac book pro - I've removed the DVD and replaced with a second internal hard drive and have been running on 10.7.5 Now I need to re-install 10.6 from DVD but without a drive - made a bootable USB flash drive with 10.6 on it - but it doe

  • F110 payment run free selections

    Hi, I am doing a payment run with free selection. The 'parameter' has vendor and customer accounts, and in 'free selection' I select some groups of vendor (LFA1-KTOKK). The problem is that the proposal takes some vendor which not are includes in the

  • DMS Integration Issues

    Hi All, I have integrated  DMS with KM. I am able to see the files. But I have 2 probs 1: the file names are displayed like this. 10000001,TEC,000,00,469BB43537697394E10000000A02107C  I want to change this. The last part is the "loio" . I want to rem

  • Default Data Is Executed When in the GTS Interface

    Hello, I just want to confirm with the group of when the Default Data is executed in the GTS Interface.  When the interface is running on the GTS-side, there are several user exits (BaDIs) that are available. Does anyone know if the Default Data is e

  • Photo RAW (NEF) et Element 5.0

    Bonjour  Je ne peux plus ouvrir mes photos en format Raw. Je suis en Windows XP, j'utilise PhotoShop Element 5.0 (dont je suis enchanté), J'utilise un Nikon 300s. Je suis persuadé que je pouvais ouvrir le format.Nef de Nikon avec mon D200. Depuis le