Hello again i did some code to open up my rtsp stream with ffplay after a button click, that now works good, but i would allso like to have the output written in a tmemo, to read eventually errors when connecting to it. So this is my code so far in a click button event:
RunProgram := TProcess.Create(nil);
RunProgram.CommandLine := ('/bin/ffplay -rtsp_transport tcp -i rtsp://myuser:mypass@192.168.0.50:554');
RunProgram.Execute;
RunProgram.Free;
I have tried some examples that i found on internet, but i dont really get any output, and the app freezes.
If some one could tell me i would be happy...
/Mathias