How do I use multiple cameras to live stream through FME?

I am looking to live stream pool tournaments from multiple angles but don't know what software or hardware I might need. Anybody have any good how to advice or links they might share? I stream through Ustream.tv if that makes a difference. Should I look for something different? Thanks

I am working on getting just the counter working by using
the program posted previously, and I am running into issues. Periodically I get
the error:
Error -200141
occurred at DAQmx Read (Counter DBL 1Chan 1Samp).vi
Possible reason(s):
Data was overwritten
before it could be read by the system.
If Data Transfer
Mechanism is Interrupts, try using DMA. Otherwise, divide the input signal
before taking the measurement.
It seems to work better if I use cascaded counters, but I need timer 0 for
analog channels when I run this code along with the program for the other
measurements.
I have tried averaging, and selecting different values for the millisecond
timer, and these did not seem to have an effect.
I tried different DAQms configurations and "Counter DBL 1Samp" seemed
to work the best.
The program will work for a while and then it will give me the above error
message.
If I use counter 0 as a cascaded counter input, the program runs fine. If I run
this with other analog channels, it errors out because the analog channels use
counter 0.
If I use counter 1 as a cascaded counter input, it seems to work better than a
single channel, but it will still error out with the above error.
If I use only counter 1, I get the error above even faster.
Also, none of the
configurations give measurements outside the While Loop.
The only place I can add a speed dial for the front panel is within the While
Loop.
Is there someway to get the signal to continuously send out of the while loop?
I thought if I could get the signal out of the while loop, I could condition it
anyway I wanted without the program erroring out.
Any suggestions would be much appreciated.
Thank you.
Attachments:
Counter_error.jpg ‏45 KB

Similar Messages

  • How to use Phone camera for live streaming rather than using WireCast camera in Live streaming using Azure Media Services

    Hi,
    am planning to develop a live streaming app using C# and xaml.
    I have gone through the below sample and am able to stream the live content using wireacst camera.
    Azure Media Services Live Streaming Sample
    But i want to use Phone camera to stream the live video rather using wirecast camera.
    How can i use that? How to get the published URL from the C# code, is there any API to get that?
    Anybody please help me
    Regards,
    Santhosh

    Hello,
    There are no in box components that will allow you to transmit captured video from a Windows Phone device to Azure Media Services. You will need to create you own implementation. You can do this by creating a custom Media Foundation sync that can plug into
    the MediaCapture element's pipeline. You will then need to modify the captured and compressed video to align to one of the two protocols that Azure Media services can use. At this time Azure Media services can use either Smooth Streaming or RTMP for ingestion.
    You will need to create your own packager (or find compatible packager code from a 3rd party) to package the MP4 encoded data into the necessary format.
    Here is an example of how to create a custom Media Foundation sync (please note you must write your Media Foundation components using C++ MoCOM. We do not support Media Foundation components written in managed languages):
    Real-time communication sample
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • How can I use multiple cameras in Quartz Composer?

    Good morning, all. This is a quartz composer question, but I can't see a quartz-composer specific forum to ask it...
    As part of a school project at ACAD we are building a rig to record the output from three video cameras to build a panoramic video. I have played with Quartz Composer to do the melding of videos recorded with this setup into a single image, and it worked very well.
    However, to do so live is the intention for this project as well, so we can build the composite video for recording (the timing of three different cameras is a bit awkward) as well as line up the cameras without having to do so separately.
    In Quartz Composer, however, the video-in plugin only reads the camera model number, not the unique GUID as seen in the System Profiler, so three identical cameras will not be read properly... you can only choose the model number, not the specific id of the camera.
    Is this a bug in Quartz Composer? Is there some top-secret plugin that is hiding somewhere that will allow you to choose the individual camera id's as seen in the system profiler? (Cameras tested have been firewire handycams streamed live, and usb cameras. identical model numbers can't be chosen as individual cameras properly)
    Thanks muchly, and please shuffle this question to the proper forum as necessary.

    I am working on a project where I need the same functionality. But even though I'm using different webcams, and can clearly select them in the menu, still only one camera works at a time. Even if I run two separate patches, with two different camera inputs, only one of them works.
    If you find any solution to this problem, I would really appreciate if you could share it.

  • LIVE VIDEO USING MULTIPLE CAMERA

    iam trying live video streaming using Flash lite + FMS3 +
    Flash Media Encoder
    if i use multiple camera how to switch it..?

    Almost every frame grabber displays live images on the screen. I use the
    falcon board and control it by it's dll. I give it a handle to a window
    by LV to show it there. The DLL supports me with a pointer to the pixel
    data as well does IMAQ vision. That's all I need to move a frame into an
    IMAQ picture for further processing.
    Detlef
    Paul schrieb:
    > Does someone know how i can watch a live image from my camera in
    > labview ? i have imaq, but i don't know if i would be easier using an
    > active x component.
    > thanxs
    >
    > --
    > [email protected]
    >
    > Sent via Deja.com http://www.deja.com/
    > Before you buy.

  • How do you use multiple outputs on a VSTi like Kontakt or Battery?

    how do you use multiple outputs on a VSTi like Kontakt or Battery with Logic Pro 7.1? I've heard someting about using AUX busses, but can anyone please provide an actual clear, step by step basic guide?
    I've had Logic 3 months now and just don't know how to do this yet, and have yet to actually find it in the manual!!
    thx

    http://www.sonikmatter.com/wiki/index.php/Tutorial:MultiChanAudioSetup

  • How can I use multiple row insert or update into DB in JSP?

    Hi all,
    pls help for my question.
    "How can I use multiple rows insert or update into DB in JSP?"
    I mean I will insert or update the multiple records like grid component. All the data I enter will go into the DB.
    With thanks,

    That isn't true. Different SQL databases have
    different capabilities and use different syntax, That's true - every database has its own quirks and extensions. No disagreement there. But they all follow ANSI SQL for CRUD operations. Since the OP said they wanted to do INSERTs and UPDATEs in batches, I assumed that ANSI SQL was sufficient.
    I'd argue that it's best to use ANSI SQL as much as possible, especially if you want your JDBC code to be portable between databases.
    and there are also a lot of different ways of talking to
    SQL databases that are possible in JSP, from using
    plain old java.sql.* in scriptlets to using the
    jstlsql taglib. I've done maintenance on both, and
    they are as different as night and day.Right, because you don't maintain JSP and Java classes the same way. No news there. Both java.sql and JSTL sql taglib are both based on SQL and JDBC. Same difference, except that one uses tags and the other doesn't. Both are Java JDBC code in the end.
    Well, sure. As long as you only want to update rows
    with the same value in column 2. I had the impression
    he wanted to update a whole table. If he only meant
    update all rows with the same value in a given column
    with the same value, that's trivial. All updates do
    that. But as far as I know there's know way to update
    more than one row where the values are different.I used this as an example to demonstrate that it's possible to UPDATE more than one row at a time. If I have 1,000 rows, and each one is a separate UPDATE statement that's unique from all the others, I guess I'd have to write 1,000 UPDATE statements. It's possible to have them all either succeed or fail as a single unit of work. I'm pointing out transaction, because they weren't coming up in the discussion.
    Unless you're using MySQL, for instance. I only have
    experience with MySQL and M$ SQL Server, so I don't
    know what PostgreSQL, Oracle, Sybase, DB2 and all the
    rest are capable of, but I know for sure that MySQL
    can insert multiple rows while SQL Server can't (or at
    least I've never seen the syntax for doing it if it
    does).Right, but this syntax seems to be specific to MySQL The moment you use it, you're locked into MySQL. There are other ways to accomplish the same thing with ANSI SQL.
    Don't assume that all SQL databases are the same.
    They're not, and it can really screw you up badly if
    you assume you can deploy a project you've developed
    with one database in an environment where you have to
    use a different one. Even different versions of the
    same database can have huge differences. I recommend
    you get a copy of the O'Reilly book, SQL in a
    Nutshell. It covers the most common DBMSes and does a
    good job of pointing out the differences.Yes, I understand that.
    It's funny that you're telling me not to assume that all SQL databases are the same. You're the one who's proposing that the OP use a MySQL-specific extension.
    I haven't looked at the MySQL docs to find out how the syntax you're suggesting works. What if one value set INSERT succeeds and the next one fails? Does MySQL roll back the successful INSERT? Is the unit of work under the JDBC driver's control with autoCommit?
    The OP is free to follow your suggestion. I'm pointing out that there are transactions for units of work and ANSI SQL ways to accomplish the same thing.

  • How Can I Use Multiple Weblogic Instances in a Single OS

    Hello Everyone,
    Actually I have to install Some different applications. Few of them need weblogic 10.3.6 and others need 10.3.4. The OS am using is Oracle  Enterprise Linux 5.
    Now I am able to install 2 separate(One of 10.3.4 and 10.3.6) instances with two different users,In two different directories.
    I have installed the weblogic 10.3.6 version with a user webadmin and installed node manager with port 5556. This is working fine.
    The main problem here is :
    In the second instance (10.3.4 ) installed with a a different user and gave the port number to NodeManager as 1600 and its not getting started. Its throwing error and also after some errors in the terminal am able to see that its reverting to port number 5556 only.
    What might be the issue?
    I have to install 2 different versions of weblogic in a single Server. But am failing with NodeManager. What Can I do to have multiple weblogic instances with multiple versions in a single server ?
    Can anyone suggest a resolution for this please ?
    Thanks in advance.

    Pl do not spam these forums with multiple posts - How Can I Use Multiple Weblogic Instances in a Single OS

  • How can i use isight camera to broadcast to web with Mac OS 10.4?

    I am using an iBook G4 running OS 10.4 as a printer server.  I have to do this to be able to print on my HP DeskJet 882c printer from computers running OS 10.6 and above (although I have not been able to get it to work with 10.8).
    I can connect an iSight camera to the iBook via FireWire.  Can I set that up to broadcast a video feed to a web site so I can visually monitor the area near the laptop and printer?

    jrmnewtonma wrote: How can i use isight camera to broadcast to web with Mac OS 10.4?
    You could use compatible older versions of QuickTime professional extensions for your Mac OS X version.
    This professional quality software is very powerful, and it will certainly stream any video you need.  However, it is not simple to use, so be prepared to do some research and study to get it configured and working.
    To use your iBook with its OS X 10.4, you will need QuickTime Broadcaster 1.5.3 
    and Darwin Streaming Server (v5.5.5) (if you need streaming server functions.) 
    Although I have never used it, QuickTime Streaming Server 4.1.1 might be a useable substitute for Darwin.
    Message was edited by: EZ Jim
    Mac OSX 10.8.3

  • How can we use multiple transactions by using bdc_insert.

    HI
    How can we use multiple transactions by using bdc_insert.

    Hi,
    In between the Open and Close we have to use the BDC_INSERT for the Tcodes you have to do.
    BDC_OPEN_GROUP
    BSD_INSERT
    TCODE = tcode1
    BDC_INSERT
    TCODE = tcode 2
    BDC_CLOSE_GROUP
    check the SDN for more on this.
    Regards
    Lekha

  • How can I use my camera from sony xperia z2 on my laptop

    How can I use my camera from sony xperia z 2 on my laptop? Please help me Thanks!

    You need an app, something like this 
    https://play.google.com/store/apps/details?id=com.busywww.cameraremote&hl=en

  • Using Adobe Connect to Live Stream an Event

    Hi everyone,
    I was hoping to get some suggestions about how we could best use Adobe Connect to live stream an upcoming event. Every year we host an event with both a live and an online audience. Traditionally we've asked our presenters to speak into a microphone that is connected to a PA system in the room and then a separate microphone connected to a laptop pics up the audio coming out of the PA system and transmits it through Connect. I suspect that there must be a better way to do this (perhaps using a mixing board?), but I'm not sure how that would work. Does anyone have any ideas/suggestions?
    Similarly, does anyone have any thoughts on adding a live video feed? Ideally I'd like to broadcast a video feed at a resolution around 480, but I'm not sure if that's realistic. Any insights people may have would be greatly appreciated.

    When doing mixed events (live and online) with Connect, I've used an audio out from a mixing board, or if you can off the PA system. This ensures a direct like from the mic being used and eliminates the chance for the PA's audio to be picked up by the mic and creating an echo or disruptive background noise.
    As to the live video feed, that should be easy enough. So long as you can connect your camera (webcam or otherwise) to the computer, there should be a method to get the live stream in Connect. The feed needs to be seen as a webcam by your computer's OS, but this can be worked around with an application called DVdriver ($20), if needed. It is also free to try, so you can test at no additional cost. Connect supports up to 480P.

  • How do I sync multiple cameras in FCPX

    I have been using pluraleyes in FCP7 to sync multiple cameras to a master sound clip.  How can I do this in FCPX?

    Rita, Dazaik is using FCP X not FCP7, Having PluralEyes work in FCP X would be a dream come true
    Dazaik, unfortunately there are some major issues with Syncronize Clips in FCP X. Please read my in-depth post here https://discussions.apple.com/thread/3277834 if there is something you don't understand, let me know and I'll be more than happy to help.

  • How do I use multiple addresses at one time?

    Shouldn't the Adobe server page that allows for the entry of a recipients address tell users how to add another address?  Do we separate them with semicolons? Commas?  Or is it even possible to use multiple addresses?

    Yes, Adobe Send.
    Unfortunately, it is NOT spelled out on the page where you enter email addresses of recipients, nor is it revealed if you click on the question mark box by email address.
    Frank
    =========================
    Frank Schmalleger, Ph.D.
    Distinguished Professor Emeritus
    The University of North Carolina
    Website: www.schmalleger.com
    Amazon Author Page: http://tinyurl.com/78nly4s
    Mailing Address:
    Ste 203-332
    4300 S. U.S. Hwy 1
    Jupiter, FL 33477
    Ph. 561.225.1760

  • How do I use multiple accounts on the same Mac with Apple TV2?

    I have home sharing turned on in two separate accounts on a single MacPro.  When I am logged into both accounts, I can see both accounts' iTunes Libraries available in the AppleTV2.  However, when I try to open each account iTunes Library in the AppleTV2, only one account will open (whichever one I logged into first).  (In other words, I log into Account1 then open iTunes with Home Sharing On, then log into Account2 (while Account1 is still logged on), open iTunes with Home Sharing On. AppleTV2 shows Account1 Library and Account2 Library under Computers, but will only load Account1 Library.  Account2 Library will just cause AppleTV2 to search for the Library then give an error.)  How come AppleTV2 can see both Libraries but will only open one Library?  How can I fix this?
    Thanks,
    zpockets

    Thank you for replying.  Both of the accounts are Admin accounts.  The Libraries are kept in the user/music/itunes/itunes media folder on each account.  However, I do use multiple iTunes Libraries on my Account1.  One of the Libraries I use in Account1 is on a separate internal HD.  However, the other Libraries I use in Account1 are stored in user/music/itunes/itunes media folder on the main HD (which hosts both Account1 and Account2).  It doesn't seem to matter whether I am using an iTunes Library on an external drive or the main drive in Account1, I still get the same problem: only account1 library will load.  AppleTV sees that the Account2 Library is there, but it won't load it.

  • How can I use multiple icloud Accounts with Fotos?

    Hello.
    Yesterday, my wife and I started using the new App "Fotos" on OSX and iOS.
    What I can't figure out, and where I would like to get some insight and help, is how we should use our icloud Accounts.
    How it is right now:
    - Wife (MacBook and iPhone)
    Has her own icloud-Account ([email protected]) for Backup (iOS) and Fotosync, Keychainsync, Bookmarks. 20GB iCloud-Account (18GB free).
    - Husband (MacBook, Mac Mini and iPhone and iPad)
    Has his own icloud-Account ([email protected]) for Backup (iOS) and Fotosync, Keychainsync, Bookmarks. 20GB iCloud Account (10 GB free).
    - Husband has about 400 GB of Photos from over 10 Years on Mac Mini
    How I want it to be:
    - Husband
    upgrades to at least the 500GB Account, to use for all 400GB of Photos and Backup, Keychainsync, Bookmarks.
    - Wife
    Has her own Account ([email protected]) for Keychain and Bookmark, but uses [email protected] on MacBook and iPhone for Backup an Fotosync, so that all Photos are stored in a single one family "container". All Photos in one Place without being able to forget to put them there.
    I don't see, how I can accomplish that, since only one "real" icloud account seems to be possible in iOS, so that if i put my account in her iPhone I would get the Photo and Backup I want, but she would not be able to sync her own bookmarks an keychain any more.
    Any thought on how to resolve this?
    Am I missing something?
    Thanks for your ideas,
    thomas

    Yes, you could have multiple iCloud accounts for Mail, Contacts, Calendars, Reminders, Safari, Notes, and Find My iPhone, but only one primary iCloud account for Photo Stream, Documents & Data, and Storage & Backup.

Maybe you are looking for

  • Is there a way to reuse an image placed in a document without copying it into the file again?

    I recently completed my first eBook with iBooks Author.  It is a photo essay and contains primarily photographic images.  In some places, I used the same image, or parts of the same image, in more than one place.  I could not find a way to locate the

  • Flatten to sring doesn't work properly.

    Using LV8.20, found "flatten to string" function under 7.x function group. but it doesn't work properly in lv8.20. Is there a function "flatten to string" function in LV8? Thanks.

  • Easy DMS  - problem with  object linking (unicode client)

    Hi Gurus, I have a problem concerning linking a materialmaster to a DIR in a uniciode environment. I tested following scenarios: 1) Easy DMS 6.00 SP10 non unicode  +  non unicode Backend  -->  no problem 2) Easy DMS 6.00 SP10 non unicode  +  unicode

  • Optional target message - no errors raised

    HI all, I have been trying to find some information on how to deal with optional target messages in a message mapping/interface mapping. I have a situation where one file can potentially create between 0 to 4 files and I don't want errors in producti

  • Collection comparison

    Hello pepole, Two questions to you all: 1) Where can i find a comparison between java collections, like arraylist, array, list, vector - comparison of performance, memory usage etc. 2) In case i need this collection type: adding in the end, sorted, s