Форум программистов, компьютерный форум, киберфорум
C# для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.77/13: Рейтинг темы: голосов - 13, средняя оценка - 4.77
2 / 2 / 1
Регистрация: 23.03.2011
Сообщений: 94
1

Подскажите как вставить RSTP ссылку в WindowsMediaPlayer

13.07.2011, 17:29. Показов 2434. Ответов 1
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
C#
1
2
3
4
private void axWindowsMediaPlayer1_Enter(object sender, EventArgs e)
        {
            axWindowsMediaPlayer1.URL = "rtsp://admin:@192.168.1.102:554/play1.sdp";
        }
так не работает.
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
13.07.2011, 17:29
Ответы с готовыми решениями:

RSTP ссылка в WindowsMediaPlayer
у меня есть камера, доступ к камере происходит через rtsp поток...

Как получить rstp ссылку?
Здравствуйте. Занимаюсь разработкой сайтов, сейчас нужно заказчику сделать трансляцию с камер...

Подскажите как вставить ссылку
Вводная: нужно вставить ссылку в меню на моём сайте - на другой сайт. [URL="<?php...

Как вставить в Excel активную ссылку, активировать ссылку
Здравствуйте. Такой вот вопрос. Если программно записывать ссылки или емейлы в ячейки Excel, то...

1
161 / 101 / 22
Регистрация: 11.05.2009
Сообщений: 628
15.07.2011, 12:40 2
Может быть этот код будет полезен (Взято здесь).

Еще посмотрите тему ссылка удалена
 Комментарий модератора 
Запрещено публиковать ссылки на другие форумы.


C#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
using System;
using System.Collections.Generic;
using System.Text;
 
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Threading;
 
namespace Uniriotec.DC.RTSP
{
    public class Client
    {
        private const bool DebugTimeStamp = false;
 
        #region Private Fields
 
        private static int RTSP_server_port;
        private static String ServerHost;
        private int receivedFrames = 0;
        private int lostFrames = 0;
        private int lastFrameReceived = 0;
        private long bytesReceived = 0;
 
 
        private byte[] rcvdp; //UDP packet received from the server
        private UdpClient RTPsocket; //socket to be used to send and receive UDP packets
        private int RTP_RCV_PORT = 25000; //port where the client will receive the RTP packets
        private byte[] buf; //buffer used to store data received from the server 
        private int FRAME_PERIOD = 100; //Frame period of the video to stream, in ms
        private int VIDEO_LENGTH = 500; //length of the video in frames
 
        private RtspStates connectionState;
 
        private Thread receiveVideoThread;
        private Socket RTSPsocket; //socket used to send/receive RTSP messages
 
        //input and output stream filters
 
        private BufferedReader<NetworkStream> RTSPBufferedReader;
        private BufferedWriter<NetworkStream> RTSPBufferedWriter;
 
        private String videoFileName; //video file to request to the server
 
 
        private int RTSPSeqNb = 0; //Sequence number of RTSP messages within the session
        private int RTSPid = 0; //ID of the RTSP session (given by the RTSP Server)
 
        static String CRLF = "\r\n";
 
        #endregion
 
        #region Properties
 
        public int LastFrameReceived
        {
            get { return lastFrameReceived; }
        }
 
        public int ReceivedFrames
        {
            get { return receivedFrames; }
        }
 
        public int LostFrames
        {
            get { return lostFrames; }
        }
 
        public int RTP_RCV_PORT1
        {
            get { return RTP_RCV_PORT; }
            set { RTP_RCV_PORT = value; }
        }
 
        public RtspStates RtspConnectionState
        {
            get
            {
                return connectionState;
            }
            set
            {
                connectionState = value;
 
                #region raise ConnectionStateChanged Event
 
                try
                {
                    EventHandler handler = ConnectionStateChanged;
 
                    if (handler != null)
                    {
                        handler(this, null);
                    }
                }
                catch
                {
                    // Handle exceptions here
                }
 
                #endregion
 
 
            }
        }
 
        public String VideoFileName
        {
            get { return videoFileName; }
            set { videoFileName = value; }
        }
 
        public String RequestVideoURL
        {
            get
            {
                return @"rtsp://" + ServerHost + ":" + RTSP_server_port + "/" + videoFileName;
            }
        }
 
        #endregion
 
        #region Events
 
        public event EventHandler ConnectionStateChanged;
        public event EventHandler<RTPPacketReceivedEventArgs> RTPPacketReceived;
 
        #endregion
 
        public Client()
        {
            InitializeVideoThread();
            //allocate enough memory for the buffer used to receive data from the server
            buf = new byte[15000];
        }
 
        void InitializeVideoThread()
        {
            receiveVideoThread = new Thread(new ThreadStart(backgroundWorker1_DoWork));
        }
 
        public void PrepareToReceiveVideo()
        {
            //construct a new DatagramSocket to receive RTP packets from the server, on port RTP_RCV_PORT
            if (RTPsocket == null)
                RTPsocket = new UdpClient(RTP_RCV_PORT);
 
        }
        //------------------------------------
        //Parse Server Response
        //------------------------------------
        public int parse_server_response()
        {
            int reply_code = 0;
 
            try
            {
                //parse status line and extract the reply_code:
                String StatusLine = RTSPBufferedReader.ReadLine();
                if (StatusLine == null)
                    return -1;
                string[] tokens = StatusLine.Split(' ');
 
                reply_code = int.Parse(tokens[1]);
 
                //if reply code is OK get and print the 2 other lines
                if (reply_code == 200)
                {
                    String SeqNumLine = RTSPBufferedReader.ReadLine();
                    String SessionLine = RTSPBufferedReader.ReadLine();
 
                    //if state == INIT gets the Session Id from the SessionLine
                    tokens = SessionLine.Split(' ');
 
                    RTSPid = int.Parse(tokens[1]);
 
                    RTSPBufferedReader.ReadLine(); // throw the final \n out
                }
            }
            catch (Exception ex)
            {
                Console.Out.WriteLine("Exception caught : " + ex);
            }
 
            return (reply_code);
        }
 
        public void StartReceivingVideo()
        {
            //start the timer
            if (receiveVideoThread.ThreadState == ThreadState.Unstarted)
                receiveVideoThread.Start();
            else if (receiveVideoThread.ThreadState == ThreadState.Suspended)
                receiveVideoThread.Resume();
            else
            {
                InitializeVideoThread();
                receiveVideoThread.Start();
            }
        }
 
        //------------------------------------
        //Send RTSP Request
        //------------------------------------
 
        public void send_RTSP_request(RTSPAction request_type)
        {
            send_RTSP_request(RTSPHelper.GetActionText(request_type));
        }
 
        public void send_RTSP_request(String request_type)
        {
            send_RTSP_request(request_type, -1);
        }
 
        public void send_RTSP_request(RTSPAction request_type, int time)
        {
            send_RTSP_request(RTSPHelper.GetActionText(request_type), time);
        }
 
        /// <summary>
        /// Send a RTSP Request to the server
        /// </summary>
        /// <param name="request_type">The request command - PLAY, SETUP, TEARDOWN, etc</param>
        /// <param name="time">The time to start playing on PLAY request_type</param>
        public void send_RTSP_request(String request_type, int time)
        {
            //increase RTSP sequence number
            RTSPSeqNb++;
 
            try
            {
                if (RTSPsocket == null)
                    throw new Exception("No connection");
 
                //Use the RTSPBufferedWriter to write to the RTSP socket
 
                string command = String.Empty;
                //write the request line:
                command = request_type + " " + RequestVideoURL + " RTSP/1.0" + CRLF;
                RTSPBufferedWriter.Write(command);
                //write the CSeq line: 
                command = "CSeq: " + RTSPSeqNb + CRLF;
                RTSPBufferedWriter.Write(command);
 
                //check if request_type is equal to "SETUP" and in this case write the Transport: line advertising to the server the port used to receive the RTP packets RTP_RCV_PORT
                if (request_type == "SETUP")
                    command = "Transport: RTP/UDP; client_port= " + RTP_RCV_PORT + CRLF;
                else
                    command = "Session: " + RTSPid + "\n";
 
                RTSPBufferedWriter.Write(command);
 
                if (request_type == "PLAY" && time != -1)
                {
                    string timerange = "Range: npt =" + time + "-" + CRLF;
                    RTSPBufferedWriter.Write(timerange);
                    lastFrameReceived = time * 10;
                }
 
                RTSPBufferedWriter.Write("\n");
 
                RTSPBufferedWriter.Flush();
            }
            catch (Exception ex)
            {
                Console.Out.WriteLine("Exception caught : " + ex);
                return;
            }
        }
 
        private void backgroundWorker1_DoWork()
        {
            bool process = true;
            DateTime startTime = DateTime.Now;
            receivedFrames = 0;
            lostFrames = 0;
            bytesReceived = 0;
 
            while (process)
            {
                try
                {
                    //receive the DP from the socket :
                    IPEndPoint server = new IPEndPoint(IPHelper.GetIP(ServerHost), RTSP_server_port);
 
                    rcvdp = RTPsocket.Receive(ref server);
 
                    //create an RTPpacket object from the DP
                    RTPpacket rtp_packet = new RTPpacket(rcvdp, rcvdp.Length);
 
                    int DiffToLastFrame = (rtp_packet.getsequencenumber() - lastFrameReceived) - 1;
                    if (DiffToLastFrame < 0)
                        continue;
 
                    receivedFrames++;
                    lostFrames += DiffToLastFrame;
                    lastFrameReceived = rtp_packet.getsequencenumber();
                    bytesReceived += rcvdp.LongLength;
 
                    //print important header fields of the RTP packet received: 
                    TimeSpan time = DateTime.Now - startTime;
 
                    if (!DebugTimeStamp)
                        Console.Out.WriteLine("#Rcvd: " + ReceivedFrames + " Lost: " + LostFrames +
                                          " Last: " + LastFrameReceived + " Acum Bytes: " +
                                          bytesReceived + " Bytes: " + rcvdp.LongLength + " Tax: " +
                                          String.Format("{0:f}", (bytesReceived / 1024) / time.TotalSeconds)
                                          + " kB/s");
 
                    if (DebugTimeStamp)
                        Console.Out.WriteLine("Got RTP packet with SeqNum # " + rtp_packet.getsequencenumber() +
                                        " TimeStamp " + rtp_packet.gettimestamp() + " ms, of type " + rtp_packet.getpayloadtype());
 
 
                    //print header bitstream:
                    rtp_packet.printheader();
 
 
                    #region raise RTPPacketReceived Event
 
                    try
                    {
                        EventHandler<RTPPacketReceivedEventArgs> handler = RTPPacketReceived;
 
                        if (handler != null)
                        {
                            RTPPacketReceivedEventArgs e = new RTPPacketReceivedEventArgs();
                            e.Packet = rtp_packet;
 
                            handler(this, e);
                        }
                    }
                    catch
                    {
                        // Handle exceptions here
                    }
 
                    #endregion
 
 
 
 
                    //Delay to lose some data
                    Random rnd = new Random();
                    Thread.Sleep(rnd.Next(90)); //needed on local
                }
                catch (IOException ioe)
                {
                    throw ioe;
                }
            }
        }
 
        public void PauseReceivingVideo()
        {
            //stop the timer
            receiveVideoThread.Abort();
        }
 
        public void DoTearDown()
        {
            //stop receiving
            receiveVideoThread.Abort();
 
 
        }
 
 
        //------------------------------------
        //main
        //------------------------------------
        public void Connect(IPEndPoint remoteEndPoint)
        {
            Connect(remoteEndPoint.Address.ToString(), remoteEndPoint.Port);
        }
        public void Connect(string server, int port)
        {
            ServerHost = server;
            RTSP_server_port = port;
 
            ThreadStart doConnect = new ThreadStart(Connect);
            Thread connectionThread = new Thread(doConnect);
            connectionThread.Name = "ConnectionThread";
            connectionThread.Start();
 
        }
 
        public void Connect()
        {
 
            //Establish a TCP connection with the server to exchange RTSP messages
            //------------------
            try
            {
                RTSPsocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                RTSPsocket.Connect(ServerHost, RTSP_server_port);
            }
            catch (SocketException e)
            {
                RtspConnectionState = RtspStates.DISCONNECTED;
                return;
            }
 
            //Set input and output stream filters:
            RTSPBufferedReader = new BufferedReader<NetworkStream>(RTSPsocket);
            RTSPBufferedWriter = new BufferedWriter<NetworkStream>(RTSPsocket);
 
            //init RTSP sequence number
            RTSPSeqNb = 1;
 
            //init RTSP state:
            RtspConnectionState = RtspStates.INIT;
        }
    }
}
0
15.07.2011, 12:40
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
15.07.2011, 12:40
Помогаю со студенческими работами здесь

Как вставить ссылку в ссылку
Добрый день, Есть следующий скрипт http://netilligence.ae/display.html По нажатию на любой из...

Как вставить ссылку
Здравствуйте, я начинающий программист, подскажите пожалуйста как мне в программу вставить ссылку...

Как вставить ссылку в JS
Все привет! Подскажите пожалуйста!!! Как вставить ссылку формата :...

Как вставить ссылку?
У меня возникла маленькая проблема - не получается вставлять ссылки в свои комментарии в блогах....


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
2
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru