Jump to content

Interactive command line using .NET


Recommended Posts

Thx for your sharing sir! But at my current project, I got the a EXE file, and I would write some commands after i execute it, and i can't finished it with SYSTEM Exec or your tool, could you pls help me to figure out it ? the yellow part below are the commands, thx again!

D:\DESKTOP\VIG\BLE>BLE_GET_RSSI.exe
Loading...
<<READY>>
Connect FDB06556E922
<<READY>>
7C1ABEE86B33
Connectng
Connecting to FDB06556E922, Device name: VIG2_BLE_FDB06556E922
Connected to FDB06556E922
Discover Complete
SEND VIG_BYPASS
TX: VIG_BYPASS
<<READY>>
RX: MAC CHK OK
SEND soc_ver?
TX: soc_ver?
<<READY>>
RX: 0.762
quit

D:\DESKTOP\VIG\BLE>

Link to comment
  • 9 months later...

Thanks for posting this. I am trying to use FFmpeg in LabView as well (Proving to be a real pain but this has made it a lot easier!!)

Do you find that closing the FFmpeg isntance sometimes causes LabView to crash, especially if FFmpeg hasn't started processing frames yet so sending q doesn't work (Whilst it is waiting for a stream for example)

My shutdown process is to send a'q' character, if the process has exited that's fine, if not send a ctrl-c. In this case I am finding that whilst the FFmpeg instace ends the wait on exit either hangs indefinitely or causes LabView to crash and close. 

This is the most stable implementation I have managed so far.

image.png.9e0ddd2cf7388c3f9ff9ea941c69b76e.png

Any suggestions on better ways of closing FFmpeg?

 

Also, have you worked out a way of sharing data between FFmpeg and LabVIEW. (Use LabVIEW to provide image data or get image data into LabView) I know you can use the stdin and stdout. I haven't tried stdin for providing image data to FFmpeg yet but stdout does have a tendency to loose data, There is something blocking your stdout callback code causing it to miss stdout events (Or it just takes too long) I have had to resort to TCP mjpeg streams directed to 127.0.0.1.

 

Link to comment

I've not run into a situation where I've needed to get the actual image data into LabVIEW.  I've mostly needed to handle file streaming to/from disk.  It would be easier to use files on disk as a middleman between LabVIEW and FFMPEG.  If you need a live streaming solution to LabVIEW, then you probably need a different technology

I've never run into the situation where I've needed to send the "q" command.  The ctrl-c command exits properly for everything I've needed, even for bad commands or non-connected cameras.  I've not run into any crashing

I've attached an example of a piece of code that will stream an RTSP stream to a file on disk.  This also contains a copy of a FFMPEG build that I've found to be pretty stable.

I'm not sure that I fully understand what you're trying to do

 

distro.zip

Link to comment

I am trying to solve two problems, in the same application. I am open to alternatives because I am really not happy with how it is working at the moment.

I need to get live image data from 3-4 cameras to about 30 clients on a WiFi network simultaneously. Originally I planned on doing this by transmitting the JPEG binary data via UDP multicast which works well on a wired network but I was getting to many dropped fragments (and therefore dropped datagrams) over WiFi for it to be useful. I can't use TCP because there would not be enough bandwidth to do that to 30 clients. I started looking into MPEG4 streaming, and therefore FFmpeg. As part of the application I need to do some image manipulation within LabVIEW. My current dataflow is:

Cameras ---IMAQdx-----> LabVIEW -----MJPEG via TCP---- -> MPEG4 stream via UDP (FFmpeg) --------WiFi--------> Client reciever (FFmpeg) -------MJPEG via TCP------> LabView

Next week I am going to revisit trying to just do a MJPEG stream in LabView over UDP becasue what I have described above is currently quite ropey.

Second problem. It is a bit of a bodge, but I need to stream a screen capture of a particular application which is running on the server to all of the tablets. Again I need to do a little bit of manipulation before it goes to the tablets. I don't know of another way of bringing a live screen capture of an individual window into LabVIEW apart from FFmpeg (I know you can use some windows API's for screen capture  but FFmpeg still works if the application is behind other windows). Beyond that I have got the same issues with streaming the data and was planning on using FFmpeg.

I was sending the q command so that FFmpeg would close its network connections so that I can reopen them later...may not be necessary so I will test it without.

In summary, my questions are:

- My internal MJPEG stream over TCP to 127.0.0.1 works fine but I am sure there is a neater way if you know of one...I did consider using a file as the middle man but could think of a way of doing this other than writing indiviudal frames to disk as seperate files which I though was just as bad...if not worse from a CPU and disk usage point of view

- As I said previously, sometimes when I try to close the FFMPEG instance, it crashes LabView with no error. I haven't been able to identify a pattern so far. 

I am open to other suggestions as far as the overall system is concerned.

Link to comment
  • 1 month later...
  • 3 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.