Search found 33 matches

Go to advanced search

by bunjee
18 Aug 2017 10:47
Forum: Development around libVLC
Topic: Http streaming skip chapters
Replies: 4
Views: 571

Re: Http streaming skip chapters

Just waking up this topic to ask another question,

Is there an option for VLC to avoid parsing chapter titles ?
by bunjee
07 Jul 2017 15:07
Forum: Development around libVLC
Topic: Http streaming skip chapters
Replies: 4
Views: 571

Re: Http streaming skip chapters

I could do that, but I want to keep seeking functional.

As far as I can tell the only way is to return an empty buffer when VLC requests something out of range.
by bunjee
06 Jul 2017 18:10
Forum: Development around libVLC
Topic: Http streaming skip chapters
Replies: 4
Views: 571

Http streaming skip chapters

I'm using libVLC to stream from a custom HTTP server that accepts ranged requests.

When opening the stream libVLC requests a bunch of pieces related to "chapters titles".

Is there a way to prevent that and ensuring that it requests buffers continuously ?
by bunjee
28 Jun 2017 09:56
Forum: Development around libVLC
Topic: Http stream skip last bytes
Replies: 1
Views: 337

Http stream skip last bytes

I'm using VLC to stream from a custom HTTP server that accepts ranged requests.

When starting playback VLC requests the last bytes of the file (I'm not entirely sure why).
Is there an option or a flag to prevent that behavior ?

Thanks :-D.
by bunjee
26 Jun 2017 11:37
Forum: Development around libVLC
Topic: Get byte offset from seeking time
Replies: 1
Views: 450

Get byte offset from seeking time

I'm using libVLC to play a video file while it's being "downloaded".
Does it provide a way to retrieve the file byte offset from a given seeking time (in msec) ?

Something like:

Code: Select all

uint64_t getByteFromMsec(int msec);
Thanks ♥.
by bunjee
06 Oct 2016 16:42
Forum: Development around libVLC
Topic: libVLC setup callback: Apply the proper video size
Replies: 1
Views: 373

libVLC setup callback: Apply the proper video size

Greetings VideoLAN community, I'm having trouble applying the video display size during my setup callback. - I'm using libvlc_video_set_format_callbacks to register my libvlc_video_format_cb callback. - I'm also registering to libvlc_MediaParsedChanged in order to retrieve the video size. Unfortunat...
by bunjee
04 May 2015 10:48
Forum: Development around libVLC
Topic: MotionBox, The Video Browser
Replies: 2
Views: 427

Re: MotionBox, The Video Browser

The closest analogy would be a Web Browser where Web Pages are Videos.
by bunjee
03 May 2015 17:13
Forum: Development around libVLC
Topic: MotionBox, The Video Browser
Replies: 2
Views: 427

MotionBox, The Video Browser

http://googledrive.com/host/0B311SYEKCiFHfm9JUWdhTzNPNGlEWjJmOTFxTlhyOUNRZVM2N2dudFB3WkxHZTFxcU9CLXM/MotionBox.png Dear VideoLAN community, My name is Benjamin Arnaud aka bunjee . I'm a hacker for the society of sharing. I'm building MotionBox : The Video Browser for Motion Freedom and the Video Ne...
by bunjee
02 Dec 2013 22:54
Forum: Development around libVLC
Topic: Youtube Dash videos
Replies: 1
Views: 979

Youtube Dash videos

Greetings Videolaners, I'm working on a way to play Youtube Dash videos. They split video and audio into two distinct files. I'm using input-slave to mix them together. The format is H264 - MPEG-4 AVC (part 10)(avc1). The video opens fine but when seeking I get this: [0c1c744c] access_http access er...
by bunjee
26 Nov 2013 09:48
Forum: Development around libVLC
Topic: Volume handling in 2.1.0 onwards
Replies: 17
Views: 3682

Re: Volume handling in 2.1.0 onwards

You're talking about changes to be made on libVLC side ?

If that's the case we should open a ticket on Trac ♥.
by bunjee
25 Nov 2013 20:59
Forum: Development around libVLC
Topic: Volume handling in 2.1.0 onwards
Replies: 17
Views: 3682

Re: Volume handling in 2.1.0 onwards

From what I have seen, there is simply no way through libvlc to successfully set/get the volume for a media player before an aout has been created (which is some indterminant time after you play the media). It will always return an error (this is clear from the libvlc media player code actually). T...
by bunjee
27 Sep 2013 12:23
Forum: Development around libVLC
Topic: Volume handling in 2.1.0 onwards
Replies: 17
Views: 3682

Re: Volume handling in 2.1.0 onwards

On my side I previously reimplemented my video renderer. The workaround I found is to initialize the volume right after the first frame unlock callback. Yes that's dirty :-). I understand libVLC now supports multiple audio devices and that's great ! From my perspective there should be a way to set a...
by bunjee
26 Sep 2013 15:32
Forum: Development around libVLC
Topic: Volume handling in 2.1.0 onwards
Replies: 17
Views: 3682

Re: Volume handling in 2.1.0 onwards

Greetings guys :-D. I've just updated to the 2.1.0 Sdk. The new volume rocks, congrats to the team. I too have issue setting the volume before playback. libvlc_audio_set_volume returns -1 until some point after playback started. I haven't found the event to get notified when volume is ready to be se...
by bunjee
28 Aug 2012 13:02
Forum: Development around libVLC
Topic: LibVLC plugins messages
Replies: 2
Views: 434

Re: LibVLC plugins messages

Thanks JB.
by bunjee
24 Aug 2012 14:07
Forum: Development around libVLC
Topic: LibVLC plugins messages
Replies: 2
Views: 434

LibVLC plugins messages

Greetings Videolan,

I'm using libVLC minus a few plugins and I get the following:

Code: Select all

[0a897ae0] main input error: option sub-delay does not exist [0a91eda0] main vout display error: Failed to set on top
Is there a way to disable those error message ? Should I ignore them ?

Thanks.

B.A.
by bunjee
18 Aug 2012 14:58
Forum: Development around libVLC
Topic: LibVLC RC 2.0, RV24 and WebM
Replies: 19
Views: 4978

Re: LibVLC RC 2.0, RV24 and WebM

vseryakov, First, take a look at the VLC source code for a proper OpenGL implementation: vlc/modules/video_output/opengl.c Then use a QGraphicsView together with a QGLWidget viewport . Then use QPainter::beginNativePaint() in the paintEvent and render your frame. You get best performances with VLC Y...
by bunjee
14 Aug 2012 21:15
Forum: Development around libVLC
Topic: Network caching and playback
Replies: 2
Views: 1552

Re: Network caching and playback

Alright,

Thanks Rémi ♥ !
by bunjee
14 Aug 2012 15:47
Forum: Development around libVLC
Topic: Network caching and playback
Replies: 2
Views: 1552

Network caching and playback

Greetings VideoLAN community, I'm using a french internet provider and my network stability is pretty low when playing a Youtube source . I compared their flash player with VLC . I noticed videos are buffering more frequently when played from VLC. I thought this was due to the lack of precaching on ...
by bunjee
11 Aug 2012 19:13
Forum: Development around libVLC
Topic: libvlc_media_add_option during playback
Replies: 1
Views: 1395

libvlc_media_add_option during playback

Greetings VideoLAN community,

I'm using the libvlc_media_add_option together with the ":network-caching=2000" option.

I noticed that it has no effect during playback. Is it possible to increase / decrease network caching manually during playback ?

Thanks ♥.

B.A.
by bunjee
11 Aug 2012 13:45
Forum: General VLC media player Troubleshooting
Topic: how to cache all youtube stream video
Replies: 4
Views: 2356

Re: how to cache all youtube stream video

Fair enough, let me rephrase :-D:

Is the VLC core team interested by such a feature ?

If I'm willing to help, is there a starting point for contributing on this matter ?
by bunjee
11 Aug 2012 12:58
Forum: General VLC media player Troubleshooting
Topic: how to cache all youtube stream video
Replies: 4
Views: 2356

Re: how to cache all youtube stream video

Is this feature somewhere on the 2.0 roadmap ?

Thanks.
by bunjee
09 Aug 2012 12:19
Forum: Development around libVLC
Topic: VLC frame corruption 2.0.2 / 2.0.3
Replies: 1
Views: 1350

VLC frame corruption 2.0.2 / 2.0.3

Greetings VideoLAN, I'm using libVLC in my application it's working great. Recently moving on from 2.0.1 to 2.0.2 I noticed that frame corruption mostly disappeared when playing an mp4 mpeg stream. In 2.0.3 the corruption is back when buffering or seeking too much. Is there a flag I missed to preven...
by bunjee
12 Feb 2012 15:14
Forum: Development around libVLC
Topic: LibVLC RC 2.0 and WebM streaming
Replies: 4
Views: 660

Re: LibVLC RC 2.0 and WebM streaming

Looks like this is the same issue: https://trac.videolan.org/vlc/ticket/5818#comment:4

And there is a backtrace :-).
by bunjee
11 Feb 2012 16:41
Forum: Development around libVLC
Topic: LibVLC RC 2.0 and WebM streaming
Replies: 4
Views: 660

LibVLC RC 2.0 and WebM streaming

Greetings VideoLAN community, I've been using LibVLC for the last few weeks. The CPU charge is surprisingly low, congratulations. I noticed a regression when streaming WebM video format. Sometimes when the video is buffering up I get a crash. I tried to reproduce it on VLC RC 2.0 . It's not crashing...

Go to advanced search