Questions tagged [rtsp-client]

147 questions
2
votes
3 answers

Decoding h264 raw stream on Android 2.3.3

I'm trying to decode a raw h264 stream on "older" Android versions. I've tried MediaPlayer class and does not seem to support the stream format. I can see the stream on other Cam Viewer apps from the market, so I figure there must be a way to do it,…
Cheborra
  • 2,627
  • 4
  • 23
  • 39
2
votes
1 answer

RTSP/1.0 459 Aggregate operation not allowed

I'm working to rtsp .I want to develop android by rtsp. The rtsp server is VLC. The client is java. I reveive "RTSP/1.0 459 Aggregate operation not allowed" when I send "SETUP"; My Code Example: DESCRIBE rtsp://192.168.0.196:8554/test.sdp…
cayden
  • 29
  • 3
2
votes
0 answers

Save RTSP stream with Netty

I need to save / capture locally some audio/video stream available via RTSP. Searched for some solution and understand that there is Netty support for such. Can somebody provide a quick example ?
Display Name
  • 349
  • 2
  • 10
  • 19
1
vote
1 answer

Simplest way to proxy RSTP streams

Suppose we have an RTSP stream, which is outside of a companies extranet. Due to certain events, a huge number of employees are likely to view the current live stream. Given the number of employees is > some hundred, the outbound internet connection…
SteAp
  • 11,853
  • 10
  • 53
  • 88
1
vote
1 answer

Implement a simple RTSP Client / Examples

I'm just trying to implement a really really small RTSP Client with Boost Asio. It just needs to SETUP the server then dispatch a PLAY command and then later at some point request the TEARDOWN . What troubles me is the implementation itself. For…
Toby
  • 3,815
  • 14
  • 51
  • 67
1
vote
2 answers

RTSP pipeline implemented via C code not working?

My Scenario is as follows :- I have set up a RTSP server at IP 192.168.1.24 at port 554.I use the following gst-launch command on client side to receive packets and everything works fine. gst-launch rtspsrc location =…
user1031040
  • 82
  • 2
  • 6
1
vote
2 answers

Does RTP Packets using RTSP protocol contain both audio and video

I am developing a client program which will display the media captured from IP camera. So I want to whether the RTP packets using RTSP protocol contain both audio and video if contains both how should I extract it?
user1031040
  • 82
  • 2
  • 6
1
vote
1 answer

Parsing Rtsp response parameter that is sprop-parameter-sets

I just get the response from RTSP DESCRIBE request.[ For H264 stream] a=fmtp:96 profile-level-id=42A01E;packetization-mode=1; sprop-parameter-sets=Z0IAKOkAoAQNgPsgAAADACAAAAMDwWIEJQ==,aM44gA== For the…
Novalis
  • 2,265
  • 6
  • 39
  • 63
1
vote
0 answers

display video frames in web page asp.net razor byte [] array

community I´m trying to display the byte [] array that is taken from the RtspClientSharp.dll into an img tag (HTML), but this only works when the page in loading (ASP.NET). What I´m trying to do is to display every frame as faster as the user can…
1
vote
1 answer

FFMPEG Implement RTSP Client, high speed playback

I am writing software to play videos that have been recorded from NVR. I have completed most of the work, but there is one more feature that allows the user to change the play speed such as 0.5x, 2x, 4x, 8x ... I searched the internet all day and…
TTGroup
  • 3,575
  • 10
  • 47
  • 79
1
vote
1 answer

Is it possible to host multiple aler9/rtsp-simple-server on the same machine

I am using this command to start a server on my linux machine: docker run -d --rm -it --network=host aler9/rtsp-simple-server And this command to connect an rtsp stream docker run -v $(pwd):$(pwd) --network=host linuxserver/ffmpeg:arm64v8-latest…
HighonH
  • 169
  • 3
  • 16
1
vote
1 answer

FFMPEG: 'Nonmatching transport in server reply' But openRTSP works

I bought a cheap chinese ip camera (GWIPC-26xxx/Yoosee). I want to record its stream with ffmpeg. On FFMPEG I manage to make it work only using the RTSP/UDP transport protocol, like bellow. It also plays flawlessly on VLC. ffmpeg -rtsp_transport udp…
imbr
  • 6,226
  • 4
  • 53
  • 65
1
vote
0 answers

ffmpeg: RTP missed many packets

I have an mp4 file named test.mp4, and I'm using VLC player as an RTSP server to convert the file test.mp4 to the RTSP stream and send it to the client. Here is how I configure my VLC to become a RTSP server:…
Yves
  • 11,597
  • 17
  • 83
  • 180
1
vote
0 answers

RTSP client_port definition?

I am having problem in getting response for RTSP Describe option using Socks protocol. I have other question regarding this issue. I just found that RTSP client_port range sometimes work for example with: client_port=56147-56148 and sometimes…
dbsoft
  • 11
  • 3
1
vote
0 answers

How to add custom data in RTSP Video Server?

I developed the RTSP server camera for 640x480 resolution. Its working fine and showing video in VLC Player. Now I am trying to implementing the custom data(user parameter i.e frame count,timestamp etc.) by considering 640x481 resolution. In this…
pallavi
  • 11
  • 1