Results 1 to 5 of 5

Thread: Live video streaming for remote desktop application in C#

  1. #1
    Join Date
    Jul 2009
    Posts
    154

    Live video streaming for remote desktop application in C#

    I need some guidance about how can I create an remote desktop application in C#.In case,if I have Windows Forms or web as a client and the server which sends streaming video and audio that is captured from the remote computer screen.
    Most important is to be real-time and performance rather than high quality.
    So I would need a method to record the screen, send the stream to the client and play it there in a reliable way.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Live video streaming for remote desktop application in C#

    Palantir is an application which facilitate to the users to configure and administrate the remote desktop connections in one window and the users can be able to save existing connections for later use.

    The remote desktop connection is administrate with MS RDP Client control. The control contains the various properties like Server, UserName, Domain, etc for setting up the remote desktop connection.

    The configurations are saved into the file and restored from a setting file.The Users can also get connect to the machine through console.The remote connections established by the user is saved in application's .settings file.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Live video streaming for remote desktop application in C#

    Remote Desktop Services can be helpful for you to establish the desired concept between client and server,It is one of the component of Microsoft which is used to access a remote computer in the network environment.

    It facilitates us to login into a remote server to perform health checks, deploy applications, troubleshoot problems and many more.One of the small example is given below -

    Code:
    rmtdp.Server = txtServer.Text;
    rmtdp.UserName = txtUserName.Text;
    IMsTscNonScriptable secured = (IMsTscNonScriptable)rdp.GetOcx();
    secured.ClearTextPassword = txtPassword.Text;
    rmtdp.Connect();

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Live video streaming for remote desktop application in C#

    I got your point what you wanted to do,Using C#,you wanted to stream the videos which is captured from the server by your specified client.

    I searched a lot on internet and find one of the solution which can help you to solve your problem.It is very interesting creation of application which is used to capture the videos of the conferencing.

    http://www.codeproject.com/KB/IP/Vid...ew=Quick&fr=51

    The above given link can help you to solve the problem as a little bit guidance,actually the code is given there,it just as a demo to show you.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Live video streaming for remote desktop application in C#

    Creating an MJPEG video stream in c#

    I have some images that is sent to the database from a remote location and treated as video source at about 5 frames per second as JPEG images.I am going to show you the code which can help you to figure out the problem and you can be helpful form this .

    Code:
    Response.Clear();
        Response.ContentType = "multipart/x-mixed-replace; boundary=--myboundary";
        ASCIIEncoding Ascen = new ASCIIEncoding();
        HCData Hdata = new HCData();
        var vds = (from v in Hdata.Vds
                     select v).Take(50); 
        foreach (Video frame in vds)
        {
            byte[] boundary = Ascen.GetBytes("\r\n--myboundary\r\nContent-Type: image/jpeg\r\nContent-Length:" + frame.VideoData.ToArray().Length + "\r\n\r\n");
            var memo = new MemoryStream(boundary);
            memo.WriteTo(Response.OutputStream);
            memo = new MemoryStream(frame.VideoData.ToArray());
            memo.WriteTo(Response.OutputStream);
            Response.Flush();
            Thread.Sleep(200);
        }

Similar Threads

  1. Poor audio/video with WD TV Live Hub Streaming
    By Chung Ae in forum Networking & Security
    Replies: 2
    Last Post: 09-12-2011, 07:59 AM
  2. Baby Monitor - view live streaming video on iPhone
    By Tiger Memon in forum Portable Devices
    Replies: 5
    Last Post: 18-09-2010, 06:48 PM
  3. Live Cricket video streaming
    By ROSENDO33 in forum Technology & Internet
    Replies: 5
    Last Post: 26-12-2009, 04:19 AM
  4. Live webcam video streaming over the Internet
    By Segvoia in forum Technology & Internet
    Replies: 5
    Last Post: 10-07-2009, 06:25 PM
  5. i-frames drag and drop with live streaming video
    By Zecho in forum Software Development
    Replies: 2
    Last Post: 06-02-2009, 06:39 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,501,788.51269 seconds with 17 queries