Search found 12 matches

Go to advanced search

by fossette
19 Aug 2019 21:01
Forum: Development around libVLC
Topic: Video filter: how to get the media path?
Replies: 2
Views: 868

Re: Video filter: how to get the media path?

I have a feeling you want to know about *any* video playing in your Internet browser, and that would be impossible for VLC to know, as both software operate in distinct and isolated memory space.
by fossette
19 Aug 2019 20:51
Forum: Development around libVLC
Topic: Play YUV-files from a Python script
Replies: 2
Views: 1068

Re: Play YUV-files from a Python script

As far as I understand, YUV is just a pixel format. https://wiki.videolan.org/YUV/ If you don't have a specific codec for your file format, VLC will never know what to do with it. And we see this from the demux error above. I would suggest that you convert your file to a known container like mp4, mk...
by fossette
19 Jul 2019 01:00
Forum: Development around libVLC
Topic: Freezing video after some time
Replies: 10
Views: 2798

Re: Freezing video after some time

luca87, Is there some logs that you can generate that would help the developers isolate the problen should a problem exist?
by fossette
03 Jun 2019 10:14
Forum: Development around libVLC
Topic: Hang while seeking with seekbar
Replies: 5
Views: 899

Re: Hang while seeking with seekbar

I feel that I experienced the same behavior using my fsplayer app (https://forum.videolan.org/viewtopic.php?f=32&t=148938#p491897), LibVLC 3.0.6 and a ffmpeg 4.1.3 recording of an ATSC stream. It occurs very rarely and randomly. I have yet to find a definite way to reproduce the problem. My work...
by fossette
30 May 2019 19:58
Forum: Development around libVLC
Topic: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program
Replies: 5
Views: 850

Re: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program

No. We are not going to redesign the whole pipeline just to accomodate your unusual API expectations. No problem! I understand! You guys have plenty on your plates. 8) Someday, I might be in a much better position & skilled enough to contribute to the VLC development. But in the meantime, the o...
by fossette
30 May 2019 10:29
Forum: Development around libVLC
Topic: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program
Replies: 5
Views: 850

Re: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program

Before libvlc_media_player_play(), LibVLC does not have a window, so obviously it cannot provide it. Your request is self-contradictory.
What if the LibVLC window could also be created by a call to libvlc_media_player_pause()?
by fossette
30 May 2019 10:10
Forum: Development around libVLC
Topic: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program
Replies: 5
Views: 850

Re: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program

fsplayer - X11 Fullscreen Video Player Using LibVLC The app is ready! :D It's a frontend to LibVLC that plays a video fullscreen under UNIX/LINUX. It's based on X11, so it's not limited to a specific window manager (WM). C Language programmers who want a LibVLC sample program should find fsplayer o...
by fossette
28 Apr 2019 00:11
Forum: Development around libVLC
Topic: load / unload media/mediaplayer without loosing RAM memory
Replies: 4
Views: 1311

Re: load / unload media/mediaplayer without loosing RAM memory

Just a few hints, you may double-check your LibVLC calls. Some data returned by the library must be freed by the caller. Also, some data may be poked into a structure that you provided, and that poked data may need to be released as well.
by fossette
09 Apr 2019 00:11
Forum: Development around libVLC
Topic: SDL + libvlc choppy full screen on Pi 3, but VLC player is fine
Replies: 6
Views: 1475

Re: SDL + libvlc choppy full screen on Pi 3, but VLC player is fine

Domarius, perhaps you could have another window over the LibVLC window. Best of both worlds!

EDIT: Or even a child window of the LibVLC window.
by fossette
08 Apr 2019 18:24
Forum: Development around libVLC
Topic: video stops when setting position or time
Replies: 5
Views: 833

Re: video stops when setting position or time

Are you calling libvlc in a libvlc callback? Important question indeed! Personally I try to avoid any processing in calback functions and threads, just set binary variables picked up by the main process. From my experience, the libvlc_media_player_get_position() didn't give good results, always 0 t...
by fossette
08 Apr 2019 17:50
Forum: Development around libVLC
Topic: SDL + libvlc choppy full screen on Pi 3, but VLC player is fine
Replies: 6
Views: 1475

Re: SDL + libvlc choppy full screen on Pi 3, but VLC player is fine

Personally, I don't have a PI. I'm using FreeBSD. From my experience, I got nowhere with SDL, so I decided to stick with pure X11 functions and try to find a workaround. No doubt that it would be awesome if LibVLC had the FULLSCREEN feature. If your PI system enables you to this kind of stuff, try m...
by fossette
06 Apr 2019 18:36
Forum: Development around libVLC
Topic: LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program
Replies: 5
Views: 850

LibVLC, X11, Fullscreen and Keyboard Input - A bug, a workaround and a custom player program

First off, let me raise my hat to all the VLC developers out there. :D I always been a fan of VLC since v1.0.0 for WIN32. :lol: Now that I have this idea of a custom app in my mind and kind of know how I can create it, I'm excited to share it with anyone interested when it's ready. LibVLC Features d...

Go to advanced search