Search found 22 matches

Go to advanced search

by badgeror
20 May 2020 15:52
Forum: Development around libVLC
Topic: Is there a way to retrieve raw frame data from RTSP?
Replies: 2
Views: 236

Re: Is there a way to retrieve raw frame data from RTSP?

From what I see in modules\access\live555.cpp, the "application" subsession is not handled by VLC. Am I right in thinking so?
by badgeror
20 May 2020 15:48
Forum: Development around libVLC
Topic: Is there a way to retrieve raw frame data from RTSP?
Replies: 2
Views: 236

Re: Is there a way to retrieve raw frame data from RTSP?

Some additional info: the custom stream has 2 sub-sessions: a "video/H264" and a "application/VND.ONVIF.METADATA" The H264 session is actually empty but the METADATA one has the image data live555 will correctly see both sessions, issue a PLAY on both and retrieve frames coming o...
by badgeror
20 May 2020 14:25
Forum: Development around libVLC
Topic: Is there a way to retrieve raw frame data from RTSP?
Replies: 2
Views: 236

Is there a way to retrieve raw frame data from RTSP?

Hi I'm trying to retrieve a custom video feed that transits through RTSP but is sent without any compression. Each RTP frame contains a full image. Using lib555 openRTSP I can dump the raw images to file using the following command line: ./openRTSP -m -t -b 1000000 Is there a way to get the equivale...
by badgeror
13 Nov 2019 15:39
Forum: Development around libVLC
Topic: RTSP/HTTPS support with TLS
Replies: 6
Views: 5680

Re: RTSP/HTTPS support with TLS

I can totally relate to that. So i guess the only way forward on this problem is to use FFMPEG? as latest version support RTSP over HTTPS and RTSPS
by badgeror
04 Oct 2019 11:52
Forum: Development around libVLC
Topic: RTSP/HTTPS support with TLS
Replies: 6
Views: 5680

Re: RTSP/HTTPS support with TLS

Digging back this question as Ffmpeg now can be compiled with OpenSSL support giving it direct support for RTSP over TLS Apparently it's also part of the RTSP 2.0 RFC (https://tools.ietf.org/id/draft-ietf-mmusic-rfc2326bis-33.html#rfc.section.19.2) So once again same question : do you plan on addin ...
by badgeror
26 Nov 2018 15:00
Forum: Development around libVLC
Topic: RTSP/HTTPS support with TLS
Replies: 6
Views: 5680

Re: RTSP/HTTPS support with TLS

Indeed but some people are keen on encrypting all traffic, hence the use for RTSP over HTTPS... but I guess your answer means it's not supported by VLC :-)
by badgeror
21 Nov 2018 10:23
Forum: Development around libVLC
Topic: RTSP/HTTPS support with TLS
Replies: 6
Views: 5680

RTSP/HTTPS support with TLS

Hi A long time ago (2006) the question of support for RTSP over HTTPS had been asked and debunked as not useful... Since then the ONVIF protocol has issued the following guidelines: https://www.onvif.org/specs/stream/ONVIF-Streaming-Spec.pdf especially section 5.1.1.4 which specifies that if a devic...
by badgeror
04 May 2016 11:28
Forum: VLC media player for Windows Troubleshooting
Topic: VLC 2.2.3 crashing when playing some RTSP streams
Replies: 10
Views: 5185

VLC 2.2.3 crashing when playing some RTSP streams

Hi I've just installed latest win32 version and all of a sudden VLC crashes when opening some RTSP streams that used to work before. I can't get any more log as logging doesn't output anything and VLC doesn't catch that crash to send a crash report back to you guys. Is there a way to get VLC officia...
by badgeror
09 Mar 2016 11:54
Forum: Development around libVLC
Topic: Video callbacks called even though no new image is available
Replies: 3
Views: 641

Re: Video callbacks called even though no new image is available

Hmmmm
a ten year old bug to fix which impacts a LARGE part of the VLC code? sounds awfully promising.... :cry:

I'll try to find a way around then

Thanks for the reply though

Sebastien
by badgeror
07 Mar 2016 15:55
Forum: Development around libVLC
Topic: Video callbacks called even though no new image is available
Replies: 3
Views: 641

Re: Video callbacks called even though no new image is available

Hi
Am I the only one to have noticed that?

Sebastien
by badgeror
18 Feb 2016 14:31
Forum: Development around libVLC
Topic: Video callbacks called even though no new image is available
Replies: 3
Views: 641

Video callbacks called even though no new image is available

Hi I've just stumbled across this particular issue with the video callbacks using libVLC 2.2.1 on windows: - I'm opening an RTSP stream on a network camera (Axis camera in this case with a required framerate at 8 fps) - I'm setting the video callbacks using libvlc_video_set_callbacks - In the unlock...
by badgeror
05 Nov 2015 11:38
Forum: Development around libVLC
Topic: What resize method is used when displaying stream
Replies: 4
Views: 737

Re: What resize method is used when displaying stream

Ok I get that, but in my case I'm doing processing on the image received so I'm taking images straight out of the libvlc_video_set_callbacks mechanism At that point a 1088x1922 image is generated with the scaled contents of the original 1080x1920 image calling libvlc_video_get_size in the call back ...
by badgeror
05 Nov 2015 09:09
Forum: Development around libVLC
Topic: What resize method is used when displaying stream
Replies: 4
Views: 737

Re: What resize method is used when displaying stream

Ok I get it but here I'm getting increased width as well and image is not padded but extended... I'd expect padding to be done with random/fixed contents not by extending the image. Am I missing something here? The real question is how does VLC display the full image at the correct resolution? Is th...
by badgeror
04 Nov 2015 17:08
Forum: Development around libVLC
Topic: What resize method is used when displaying stream
Replies: 4
Views: 737

What resize method is used when displaying stream

Hi Following my play with libvlc_video_set_format_callbacks I was pretty happy with getting video size on first image with libvlc_video_get_size and using this as output Well that works perfectly unless the source video received (from an RTSP camera) is not 16 pixels aligned... So here's my case: I'...
by badgeror
08 Oct 2015 17:26
Forum: General VLC media player Troubleshooting
Topic: VLC 2.2.2 release?
Replies: 0
Views: 263

VLC 2.2.2 release?

Hi guys
I couldn't find the info on the website so here it is: Is there a planned release date for 2.2.2? A few bugs fixed in there are eagerly awaited here :-)

Thanks
by badgeror
14 Sep 2015 10:00
Forum: Development around libVLC
Topic: libvlc_video_set_format_callbacks cb returns bad image height
Replies: 5
Views: 925

Re: libvlc_video_set_format_callbacks cb returns bad image height

Seems obvious.... I must have had a momentary lapse of logic...
by badgeror
10 Sep 2015 18:00
Forum: Development around libVLC
Topic: libvlc_video_set_format_callbacks cb returns bad image height
Replies: 5
Views: 925

libvlc_video_set_format_callbacks cb returns bad image height

Hi I'm trying to get a video stream to open in its native resolution rather than in a resolution I'd pre-program (which is obviously better to fit with anything the player maybe sent). After fiddling around for a while I found that libvlc_video_set_format_callbacks was the way to go. Unfortunately I...
by badgeror
20 Oct 2014 15:33
Forum: Development around libVLC
Topic: libvlc_release: can we know when refcounter reaches 0
Replies: 2
Views: 304

Re: libvlc_release: can we know when refcounter reaches 0

Ok seems good to me, I'll just stop retaining and release instance at program exit...
by badgeror
20 Oct 2014 14:53
Forum: Development around libVLC
Topic: libvlc_release: can we know when refcounter reaches 0
Replies: 2
Views: 304

libvlc_release: can we know when refcounter reaches 0

Hi, Ok here's my problem: - I'm doing multiple streams in a multi-threaded software. No problem. - I'm creating a libvlc_instance on first connection then retaining each time a new connection comes in. Still no problem. - When stopping one of the streams I make a call to libvlc_release. still no pro...
by badgeror
20 Oct 2014 14:47
Forum: Development around libVLC
Topic: libvlc: callbacks still received after player stop/release
Replies: 3
Views: 708

Re: libvlc: callbacks still received after player stop/relea

Ok I just found out the source of the issue:
I was opening the stream twice (second time through a non trivial code path) but kept track of the last opening only so I stopped only one of the streams...
Next time I should check my code first
by badgeror
15 Oct 2014 16:09
Forum: Development around libVLC
Topic: libvlc: callbacks still received after player stop/release
Replies: 3
Views: 708

Re: libvlc: callbacks still received after player stop/relea

Well that's the behavior I expected but even after libvlc_release I'm still getting some which cause my app to crash as the object used in the callbacks has been destroyed... I'm running with VLC 2.1.5 on a windows 8.1 64. code is compiled as 32 bits exe with VS2010
by badgeror
15 Oct 2014 15:44
Forum: Development around libVLC
Topic: libvlc: callbacks still received after player stop/release
Replies: 3
Views: 708

libvlc: callbacks still received after player stop/release

Hi all I'm having strange problems with a RTSP stream decoder that I'm building based on libvlc. It uses callbacks (registered with libvlc_video_set_callbacks) to receive images and provide them to the application. This works fine thanks for the work guys btw. The issue comes when deleting the decod...

Go to advanced search

cron