Search found 24 matches

Go to advanced search

by marranxo
05 Apr 2016 15:56
Forum: VLC stream-output (sout)
Topic: Streaming FULL HD, low latency high quality
Replies: 1
Views: 1201

Re: Streaming FULL HD, low latency high quality

Did I asked something wrong? 0 responses is alarming...
by marranxo
30 Mar 2016 12:44
Forum: VLC stream-output (sout)
Topic: Streaming FULL HD, low latency high quality
Replies: 1
Views: 1201

Streaming FULL HD, low latency high quality

Hi, I'd like to stream video from my HD-SDI capture card. I don't mind about bandwidth but I'd need the lowest latency and the highest quality. Witch codecs/param should I look for? Also, I suppose I'll have to emit with RTP or RTSP to avoid TCP latency compared to UDP. Any tips or recomendations? T...
by marranxo
03 Dec 2015 13:17
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc raspbery b+ doesn't play mjpeg
Replies: 1
Views: 646

Re: vlc raspbery b+ doesn't play mjpeg

main debug: adding item `http://192.168.0.102/mjpg/video.mjpg' ( TOO_MANY_URLS/mjpg/video.mjpg ) main debug: processing request item: TOO_MANY_URLS/mjpg/video.mjpg, node: null, skip: 0 main debug: no fetch required for (null) (art currently (null)) main debug: rebuilding array of current - root List...
by marranxo
03 Dec 2015 13:09
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc raspbery b+ doesn't play mjpeg
Replies: 1
Views: 646

vlc raspbery b+ doesn't play mjpeg

Hi. I'm trying to access a mjpeg video stream from an axis encoder. VLC player just plays the first 5-6 frames (with a delay of 5-6s) and then keeps playing the last frame of the sequence. Is there any way to play it successfully? I've enabled both vlc and ffmpeg hardware acceleration and set the de...
by marranxo
09 Apr 2015 16:34
Forum: Development around libVLC
Topic: dshow passing me just the first frame forever
Replies: 3
Views: 884

Re: dshow passing me just the first frame forever

void MyClass::video_display_cb(void *opaque, void *picture) { MyClass *this_class = (MyClass*)opaque; static unsigned char *last_buff = NULL; if (last_buff == NULL) { last_buff = (unsigned char *)_aligned_malloc(this_class->_w * this_class->_h * 4, 32); } if (memcmp(last_buff, this_class->_input_buf...
by marranxo
09 Apr 2015 16:04
Forum: Development around libVLC
Topic: dshow passing me just the first frame forever
Replies: 3
Views: 884

dshow passing me just the first frame forever

Hi, I've a capture device (AverMedia U3 Video Capture, 1080 @ 60fps) and I'm able to access it from VLC app via dshow as expected. The problem apears when I try to access it from libvlc in a C++ app where I'm getting the first frame in a loop. I'm opening the libvlc instance (libvlc_new) with the fo...
by marranxo
15 Oct 2014 16:26
Forum: VLC media player Feature Requests
Topic: commandline parameter to control RTSP RTP/AVP/UDP timeout
Replies: 1
Views: 634

Re: commandline parameter to control RTSP RTP/AVP/UDP timeou

I've been looking the source and it would be as easy as change fixed values in modules/access/live555.cpp in function Demux(...) and change any comparation of i_no_data_ti with a hard coded value with (var_InheritInteger( p_demux, "rtsp-rtp-timeout" ) / 300) assuming rtsp-rtp-timeout is se...
by marranxo
15 Oct 2014 11:45
Forum: VLC media player Feature Requests
Topic: commandline parameter to control RTSP RTP/AVP/UDP timeout
Replies: 1
Views: 634

commandline parameter to control RTSP RTP/AVP/UDP timeout

Hi, One of the best features of the vlc player is the highly configurable options available but I found one (important for me, and maybe for other users) that is missing: a parameter that controls the timeout in a RTSP session throw UDP. As far as I seen it's set to 10s by default and I thought that...
by marranxo
15 Oct 2014 11:33
Forum: Development around libVLC
Topic: --rtp-timeout problem
Replies: 3
Views: 969

Re: --rtp-timeout problem

Hi Remi,

Then I'll try to request it to devels.

Thanks a lot for your time.
by marranxo
15 Oct 2014 11:26
Forum: VLC media player for Windows Troubleshooting
Topic: rtp-timeout not working on RTSP
Replies: 2
Views: 1096

rtp-timeout not working on RTSP

Hi, When playing a RTSP source (RTP/AVP/UDP), if the connection is lost, the player waits 10s from the last datagram to detect disconection or stream end. I've been looking at the commandline interface and it's supposed that the --rtp-timeout=# controls this behaivour but when used it's ignored. I'v...
by marranxo
15 Oct 2014 11:17
Forum: Development around libVLC
Topic: --rtp-timeout problem
Replies: 3
Views: 969

Re: --rtp-timeout problem

I've also tryed with --rtp-timeout=5 as the parameter description says (sec) but same behaivour, the player reaches timeout at 10s without receiving any udp packet. Is there any known parameter to control RTSP RTP/AVP/UDP input timeout?
by marranxo
14 Oct 2014 17:11
Forum: Development around libVLC
Topic: --rtp-timeout problem
Replies: 3
Views: 969

--rtp-timeout problem

Hi, Due to detect earlier stream failures/disconnections (10s is too much for me) I've been testing the --rtp-timeout (--rtp-timeout=5000) param in the args passed to libvlc_new and either (:rtp-timeout=5000) in libvlc_media_add_option but it's not working. I'm connecting to IP cameras throw RTSP RT...
by marranxo
28 Oct 2011 09:44
Forum: Development around libVLC
Topic: win32 receive from capture dev with several input signals
Replies: 1
Views: 564

Re: win32 receive from capture dev with several input signal

I've found a solution I'll post it for users looking for similar questions. const char *options[] = { ":dshow-vdev=AVerMedia 716x BDA Analog Capture", ":dshow-adev=none", ":dshow-size=768x480", ":dshow-chroma=YUY2", ":dshow-fps=25.000000", ":dsh...
by marranxo
27 Oct 2011 14:24
Forum: Development around libVLC
Topic: win32 receive from capture dev with several input signals
Replies: 1
Views: 564

win32 receive from capture dev with several input signals

Hi, Mi capturer is Avermedia Speedy Hibrid. When I open it in VLC i do the following: File->Open capture Device Then I select my device and check "device properties. Two dialogs appear, one to select video format (PAL_B) and another to select witch input to select, I choose supervideo (input=2)...
by marranxo
19 Aug 2011 09:25
Forum: Development around libVLC
Topic: Multiple recordings of the same stream issue
Replies: 1
Views: 599

Re: Multiple recordings of the same stream issue

Maybe rtsp stack of your camera is not concurrent. That means it may only support one client at time. If it's concurrent it may have a predefined limit on number of sessions. The error message you see is that camera's rtp muxer doesn't respect h264@rtp standard (http://www.rfc-editor.org/rfc/rfc3984...
by marranxo
18 Aug 2011 14:28
Forum: Development around libVLC
Topic: libvlc produces unclosed handles
Replies: 2
Views: 465

libvlc produces unclosed handles

Hi, the following sample code produces unclosed handles due to libvlc calls (running on win64 as 32bit program, info collected with perfmon at specific process/handles). Is there any I miss or it's libvlc's fault? void MediaPlayerEventHandler(const libvlc_event_t* pEvt, void* pUserData) { switch(pEv...
by marranxo
18 Aug 2011 11:54
Forum: General VLC media player Troubleshooting
Topic: RTSP Problems
Replies: 2
Views: 350

Re: RTSP Problems

Thanks, that's the problem.
by marranxo
18 Aug 2011 10:16
Forum: General VLC media player Troubleshooting
Topic: RTSP Problems
Replies: 2
Views: 350

RTSP Problems

Hi, I think this subject isn't OS-dependent, anyway here we go. When I pause a RTSP session with 1 video stream, vlc player doesn't send a PAUSE method to rtsp server, is it caching all time? Another question is that I can't fast forward while playing rtsp. Are this functionalities implemented? Than...
by marranxo
21 Jul 2011 12:57
Forum: VLM
Topic: rtsp/rtp + h264
Replies: 0
Views: 1072

rtsp/rtp + h264

Hi, When I broadcast a h264 stream throw rtsp/rtp the player shows frames disordered. The video stream has a clock in the upper right corner showing so i see ie: 19:22,19:21,19:22,19:23,19:22,19:23, 19:24... but just sometimes, not all the time. Stream is 600x400 8fps h264 encoded. When I play it wi...
by marranxo
18 Jul 2011 09:50
Forum: Development around libVLC
Topic: late picture skipped (x > -y)
Replies: 1
Views: 471

late picture skipped (x > -y)

Hi, I'm currently developing a rtsp server based on two kinds of services: live and file-oriented. I'm using vlc api to receive streams in rtp/avp/udp profile. Streams are slowly presented/updated due to frames skipped. I'd like to know the reason that vlc skips frames, may it be the difference betw...
by marranxo
08 Jun 2011 15:31
Forum: Development around libVLC
Topic: 1fps mpeg4 decoding issue
Replies: 2
Views: 381

Re: 1fps mpeg4 decoding issue

Thanks Kempf for your reply.

It has the same behaviour as timebase = {1,2}, {10,11}... but it seems to play/decode properly with timebase {1,3} and greater divisor values.
by marranxo
08 Jun 2011 14:04
Forum: Development around libVLC
Topic: 1fps mpeg4 decoding issue
Replies: 2
Views: 381

1fps mpeg4 decoding issue

Hi, I'm encoding one video stream at 1fps with mpeg4 (libavcodec). When I try to decode that video the player just displays the first frame (vlc player) but windows media player displays it succesfully. Encoding parameters are: width = 640 height = 480 codec_id = CODEC_ID_MPEG4 codec_type = AVMEDIA_...
by marranxo
03 Jun 2011 16:48
Forum: Development around libVLC
Topic: Catch rtsp/http disconnections while playing
Replies: 0
Views: 423

Catch rtsp/http disconnections while playing

Hi, When I play any remote source using libvlc I didn't notice about disconections. I plug off the ethernet cable and I'm still receiving frames (the last-one) periodically for more than 15 minutes. Is there any solution? Edit: Using libvlc_media_player_event_manager with libvlc_event_attach on libv...

Go to advanced search