Upconversion from LV5 to LV8 for use in LV10 & LV11

Kindly assist with conversion of the attached Vis from LV5 to LV8. The end use is in LV10 & LV11.
Many thanks,
Ifeanyi
Attachments:
epr.zip ‏126 KB

see here: http://forums.ni.com/t5/LabVIEW/convert-5-0-LLB-to-8-6/m-p/1104333#M488028

Similar Messages

  • Extract closed captions from OTA HD broadcast for use with DVD SP?

    Hi, I'm out of my league here, trying to do a favor for a deaf friend. He will appear on a national TV show, and I'd like to capture his appearance and (if possible) burn it to DVD.
    Of course, being deaf, he needs to see the closed captions.
    What I've done so far is buy Elgato's eyeTV Hybrid. I can successfully capture HD broadcasts with their embedded closed captions (wow, is that gorgeous!).
    I can use the eyeTV software to recompress the audio and video for DVD SP, but the captions don't end up anywhere that I can tell.
    Is there any way to extract the closed captioning information for use with DVD SP?
    Thanks very much.

    I don't think FCP will ever have captioning tools, due to it is a specilized area of post production and third party companies have developed captioning software that addresses this area.
    I use the only Mac captioning software, (Mac Caption, made by CPC) that runs on the Mac. The cost for the SD captioning version of Mac Caption retail cost $6,995 USD and the HD version is an additional $2000.00 USD. If your an educational institution, then the price is about half the list, (price can be negotiated with the company at the time of purchase.)
    As you can see, this is about half the cost of the FCP suite and I really don't think that Apple will ever get into this area. Most production companies rely on captioning services. In our case, we are an educational facility and therefore must comply with ferderal law, so we caption everything we do, thus why we had to purchase our own software.
    The software we use, can do what it is that you are seeking, it can read the caption data from a live video image an convert it to a .scc file, that can be then used in DVD authoring or tape production. It can also read the raster area of a 720x 486 video file and also convert the caption information to a .scc file, as well as creating subtitlilng .stl files for DVD's.
    It can also do original captioning, as well as add a text track to QT streaming files, which is how you caption QT steraming files. You can even burn captions into the video image of a steaming file.
    Again, most production facilities are going to have to rely on a captioning service, but because we have to caption everything, and most captioning services don't caption QT streaming files, this was another reason we had to purchase our own captioning software.

  • How do you save dynamic data type, from the DAQ assistant, for use in Excel or matlab?

    Currently, I have the following basic VI setup to save Data from my PCI6221 Data Aquisition Card.  The problem I'm having is I keep getting the last iteration of the while loop in the measurement file and that's pretty much it.  When I try to index the data leaving the loop it gives me a 2D array of Data which cannot be input into the "Write to Measurement File" VI.  How would I save this to a useful Data/time step format?  I was wondering of a way to continuously collect the Data and then save it in a large measurement file that I would manipulate in Matlab/excel?  Am I using the wrong type of loop for this application?  I also noticed my Dynamic Data array consists of data, time, timestep and then a vector of the data taken.  Is it possible to just get a vector of the time change per sample alongside the data?    Sorry for the barrage of questions but any help would be greatly appreciated, and thanks in advance!
    -Bryan
    Attachments:
    basic DAQ.vi ‏120 KB

    There is a VI in the Express > Signal Manipulation palette called "From DDT" that lets you convert from the Dynamic Data Type to other data types that are more compatible with operations like File I/O....for instance, you could convert your DDT into a 2D array and use the Write To Spreadsheet File.vi.  Just a thought...
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • How can I use an image from an ip address for use in labview as image data?

    I want to use a stand-alone webcam on ethernet as the source for imaging control.

    Greg,
    Lots of possibilities here, depending on what your Webcam software serves up and how flexible you need to be with image types and whatnot.
    Assuming the Webcam server provides raw JPG images that you can get at with a simple URL, one way to go is to use DataSocket, using a little trick where you append "[txt]" to the end of the URL and get the raw content back. I've attached an example that grabs a JPG from the NI site and displays it.
    Best Regards,
    John Lum
    National Instruments
    Attachments:
    JPG_to_picture.vi ‏50 KB

  • Export MPEG2 from Final Cut, HDV  for use it on PC platform

    My client needs to upload the videos in a PC network, he asked me to deliver the final videos on MPEG 2. I have tried to export by using compressor but the clips come out without sound. How can I have the videos with sound and in MPEG 2?
    Or is there any other format that I can export on, so the videos can run on a PC? I tried WMP from Quicktime but it only exports up to 30 seconds. Do I have to buy a Flip4mac to be able to export a longer file ? and if so which version of Flip4mac is advisable?
    Please help me. Thanks.

    I noted that by doing WMP videos the files are way smaller in size, which is very good for me because I have to FTP 20 videos of 2 min. each to my client. Is WMP the same quality or equivalent to MPEG 2?
    I assume you mean WMV files?
    Yes, WMVs can be superior to MPEG2 files, but it's all about the choices you make when you encode encoding them. It's also possible to get very acceptable WMVs at very small file sizes, again depending on your content and your encoding expertise.
    Flip4Mac's documentation will take you through the steps and the choices. Pay attention to the details and test, test test.
    I've found that Windows users are always happier with WMVs, as there are never any compatibility issues - and the last thing I need when the deadline is getting closer is troubleshooting my client's windows installations.
    Best of luck.

  • Migration from Designer: wrong alias for used table/view in views

    Hello,
    I am using SQL DM version 3.3.0.744.
    when importing a view from Designer, a query is build with aliases for the used tables/views which are the same as the table/view name. When using a where clause in Designer, you refer to the alias of the table/view, like t1.col1= t2.cola. Here t1 and t2 are the aliases of the underlying tables.
    In Designer the following DDL is generated:
    CREATE OR REPLACE FORCE VIEW VIEW5
    (COL2
    ,COL1)
    AS SELECT T2.COLA COL2
    ,T1.COL1 COL1
    FROM TAB2 T2
    ,TAB1 T1
    WHERE t1.col1= t2.cola
    After importing the view in Data Modeler, the following DDL is generated:
    CREATE OR REPLACE VIEW VIEW5 ( COL2,
    COL1 )
    AS SELECT
    TAB2.COLA COL2,
    TAB1.COL1 COL1
    FROM
    TAB2 TAB2,
    TAB1 TAB1
    WHERE
    t1.col1= t2.cola ;
    So by using the wrong alias, the where clause is invalid and the query builder doesn't show the joins.
    The solution for this is to use the alias of the used table/view instead of the table/view name. Can you raise a bug for this?
    Thanks in advance,
    Joop

    Thanks for your time. I did all possible way, but still the same problem. I mean
    EXP 8... IMP 8
    EXP 8... IMP 9
    EXP 9... IMP 9
    Today I found that, NLS_LANG of two databases are different. Oracle 8i is : WE8ISO8859P1
    AND Oracle9i is : WE8MSWIN1252
    So I created a new database from scratch with Oracle 8i character set :WE8ISO8859P1 and then use imp9i to import the file. Still the same problem.
    Thanks,
    Arash

  • How doI Import HD clips from HTC Desire HD for use in Final Cut Express?

    Before anyone says it I know it's dead easy with and iPhone but how difficult is it to import video from the HTC Desire HD to use with Final Cut Express? I am looking at purchasing this phone and would be interested in people's thoughts.

    Hi Tom,
    Pleased to make your acquaintance, having recently used your FCE4 editing workshop as a bible I'd like to thank you for making an understandable read! Re my comments: This was early days with the application and I have a lot of work to catch up on before I get to work with it properly. In a test I set it up using the 720p25 apple intermediate codec and it needed rendering. the phone uses 3gp to record. I haven't gone into any detail with it yet, still busy trying to migrate from windows mid project from adobe premiere before even attempting to provide any focus to my camera on my phone. I will report back when I get there if anyone is interested!

  • How do I migrate metadata from Final Cut Server for use in Premiere?

    We're one of many companies looking to move to Premiere Pro from Final Cut.
    We have thousands of tagged clips in Final Cut Server and I'm trying to find a way to export all that metadata so it can be used, and searched for, within Premiere Pro.
    Does anyone know if/how this could be achieved?
    The only thing I've found online that seems to be relevant is this:
    http://www.andre-aulich.de/en/perm/export-asset-metadata-from-final-cut-server-using-built in-tools-only
    This seems to explain how to export the metadata (although I don't fully understand it) but not how to make it useful for Premiere.
    Any help would be greatly appreciated!

    Well... I'm a librarian by training so I use Cat-DV a little differently.
    I use it to make a searchable archive of proxy files for entire hard drives.  I hook up a hard drive (say an old external) and point Cat-DV at it.  It makes a catalog (locally) that has all the metadata (most importantly "date created") and a small proxy or thumbnail if it's a still.  Then I unplug the drive, label it and put it on a shelf.  When I need to find something all I have to do is consult the local catalog.  I can search it (if I included any metadata) or, most likely, I'll just scrub around for date created.  Cat-DV will display the exact path to where the asset is.  I can search across multiple catalogs of drives without ever having to plug one in,  Once I find the file I want, I just plug in that drive to retreive the file.
    I use it mostly for stills and some b-roll that gets used over and over.  For a variety of reasons, we never opted to make it a full replacement for FC Server. 
    And another thing... you can do a heck of a lot with the $99 or $300 version.  You don't need to go the full enterprise server route (though you do have to do that to use the server functions). 
    You might also want to try Adobe Bridge for searching and editing metadata.  In my experience, it's always been slow with video but that may well have changed.  I haven't played with it in a while

  • Not SURE HOW TO TRANSFER PHOTOS  FROM A "MAC CD" FOR USE A PC

    I didn't expect a problem, but have run into one this weekend.
    Looking thru old photos, I came across a photo disk from Ritz Camera containing pix from 2006. Wanted to pass along the pix (along with other photos and documents) to a friend who has a PC.
    After burning all the data onto a fresh CD, I tested the disk on a PC and found all the other files could be opened except for the items from the original Ritz CD.
    Those items included three separate folders, nested within a single fourth one.
    The folders were labeled "Ritz Documentation" . . . "Preview" and "Pictures".
    The last two appeared to contain identical JPG items, but I left them all intact.
    I'm not particularly PC savvy, and the owner of the PC computer has departed, so I had to wing it on my own. The only thing close to a photo manipulation application I could find on the PC was Picassa, which located the disk and files in the CD drive and was able to read the three other individual items, but could only recognize the three Ritz files. When I clicked on them it said they were "invalid" documents.
    Any idea on what I'm doing wrong?
    I know the files were readable by the owner's previous PC in 2004, so assumed they would be now, as well. I also still can see clearly the copies I transfered to my Mac and did nothing to them, except drag the entire original folder from my Mac to the new CD.
    If the files can't be copied this way, would it make any more sense to transfer all the files directly from the Ritz CD to the PC and add the other 3 files from the CD I created . . . then transfer them all to a new CD for burning?
    Sounds convoluted and time consuming, but I need to complete this project today, so am ready to try anything.
    Any insight or suggestions?
    Thanks in advance.

    Sory, I can't find the name of the MacUser who steered me onto the right path, but do think I remember thanking him via e-mail.
    If I'm mistaken, thanks a bunch. I finally finished transferring all the photos onto a CD. Actually completed one project , which I was able to test on a PC.
    Have run into a second, smaller one on the current project, which I I think I probably should post separately.

  • Convert Keithley 6485 Driver and Examples Libraries from LV5 to LV8.6

    Can someone please convert the attached Keithley 6485 Driver Library and Examples Library from LabView v5 up to LabView v8.6 - these are the current libraries that Keithley have on their website.
    Photon999
    Attachments:
    KE6485.LLB ‏2952 KB
    KE6485 Examples.llb ‏795 KB

    Forum member smercurio_fc converted these files for another member to 8.2 which you should be able to open in 8.6.  Below is the link.
    http://forums.ni.com/t5/Version-Conversion/Upconve​rt-Keithley-6485-to-10-from-5-1/m-p/2108260#M1151
    Hope this helps.

  • How does songs from ipad become available for use on your iphone?, how does songs from ipad become available for use on your iphone?

    How does songs on my ipad become available for my iphone

    Get the mini 2 when the prices come down. The mini 2 is baically a smaller iPad Air. The improvements over the mini are well worth the money.
    http://www.apple.com/ipad/compare/#comparison-chart

  • How can I view and convert .264 files from my security cameras for use on my Mac and the web?

    My security cams record in a .264 file format HD.  I want to view, edit, etc on my Mac, what software will do that and are there any easy tips to do this?  I'm new to Mac's so I'm not sure what is the best format to convert to?  mp4?  Suggestions?
    Thanks in advance.  I do love the Mac so far.

    I have downloaded the trail....and it won't recognize my .264 files....not sure what the deal is?  Here is a screen shot-they files are "grayed" out....and won't highlight.  Do you see anything wrong?  I'm pulling the files off of a Lorex DVR security system.  LHD200

  • Problems installing Sonata Std font for use in Word 2011 for Mac

    I just purchased and installed Sonata Std font (downloaded from the Adobe website) for use on my 2009 MacBook, running OSX 5.8. I'm trying to use the font in MS Word for Mac 2011. Sonata Std is now showing up in the list of available fonts within Word, but when I select the font and go to type in characters within the font (such as flat and sharp signs, using the proper keystrokes), the characters are not displaying correctly (not at all, in fact — I get a series of boxy-looking glyphs rather than proper music accidentals). Are there any additional steps that I need to do in order to install the font and get it to work properly in Word?

    What are your language & region settings? Have you tried inserting those characters via your keyboard/ charmap utility? What is your default language/ encoding/ compatibility setting in Word? Definitely some sort of Unicode issue...
    Mylenium

  • I downloaded Motion 5 onto my laptop for working while on the road. I want to put it my desktop for use at home how do I transfer the software to the desktop?

    Super new to Motion 5
    First..the easy ?,  I want to transfer the software from laptoip to desktop for use at home.
    Second, I bought this to try to animate a steam engine and the various implements that it can power. I started with a jpeg and then wanted to make a flickering fire in the cumbustor, show the heat rising up through the boiler, piston moving etc.. does that need to be done in separate layers like in photoshop elements and then attach the behavior or separate groups?
    Thanks!!

    Reply to "First ... the easy?" Hopefully it is easy. If the desktop has the same log-in to the App Store as the laptop then all you have to do is:
    1. boot up the desktop and log in.
    2. go to the App Store and check for software updates (click on the apple in the upper left corner - it's a Mac, isn't it? - and select "Software updates ...")
    2a. If it isn't a Mac, then go to the App Store and log in with the same name and password as what the application was bought with,
    3. With a Mac, the App Store will check the computer for for updates, discover Motion 5 isn't there, and let you download it.
    Unless there is something unusual, that should about do it. Hopefully I haven't muddled a step, but if so, hopefully you can work your way through.
    As for the Part B of the post, the flickering flame, that's going to take more work. Sounds like an interesting project, though.

  • Where to buy responsive website templates for use with Dreamweaver CS6

    I know you can create responsive designs from scratch easy enough once you get going, but I'm in a hurry to get an existing site changed over to a responsive layout and was wanting recommendations for sites to buy ready done templates from that are designed for using in DWCS6
    Thanks

    This free of charge extension comes complete with starter templates.

Maybe you are looking for