Search found 17 matches

Go to advanced search

by wrybread
25 Feb 2019 05:01
Forum: Development around libVLC
Topic: Possible to prevent buffer from increasing?
Replies: 2
Views: 1055

Re: Possible to prevent buffer from increasing?

I hate to do it, but... bump.

This issue is driving me nuts. It makes the player almost unusable when controlling a live PTZ camera.
by wrybread
06 Feb 2019 00:44
Forum: Development around libVLC
Topic: Possible to prevent buffer from increasing?
Replies: 2
Views: 1055

Possible to prevent buffer from increasing?

I'm using the Python VLC bindings to play an RTSP stream from a PTZ security camera. It works great, but as I watch the camera over time the buffer keeps increasing, until the lag is so great that the camera is impossible to control. When it increases VLC prints this message to the console: [03d0e1d...
by wrybread
31 Oct 2018 17:24
Forum: Development around libVLC
Topic: How to use log_set with python binding?
Replies: 6
Views: 3588

Re: How to use log_set with python binding?

Is anyone able to get this working on Windows? On Windows 7 with Python 2.7 I get the error: Traceback (most recent call last): File "D:\Projects\easyptz\EasyPTZ.py", line 340, in <module> vsnprintf = ctypes.cdll.msvcrt.vspnrintf File "C:\Python27\lib\ctypes\__init__.py", line 37...
by wrybread
25 Oct 2018 04:25
Forum: Development around libVLC
Topic: Possible to take a screenshot without printing filename to screen?
Replies: 5
Views: 1883

Re: Possible to take a screenshot without printing filename to screen?

Thank you, the option "--no-osd" suppresses the filename being shown! It still shows the thumbnail, but that's less of an issue for me. And interestingly I can still draw messages on the screen when I init with "--sub-source marq". So it doesn't disable the marq feature. Thanks a...
by wrybread
24 Oct 2018 19:57
Forum: Development around libVLC
Topic: Possible to take a screenshot without printing filename to screen?
Replies: 5
Views: 1883

Re: Possible to take a screenshot without printing filename to screen?

Looking under the hood, it looks like it's hard coded into video.c. Here's what vlc.py calls when it takes a snapshot: def libvlc_video_take_snapshot(p_mi, num, psz_filepath, i_width, i_height): '''Take a snapshot of the current video window. If i_width AND i_height is 0, original size is used. If i...
by wrybread
24 Oct 2018 07:03
Forum: Development around libVLC
Topic: Possible to take a screenshot without printing filename to screen?
Replies: 5
Views: 1883

Re: Possible to take a screenshot without printing filename to screen?

Sure, see here: http://gizmoware.net/dropbox/screenshot1.jpg Note the filename of the saved screenshot written on the video window, as well as a thumbnail of the screenshot at top left. > Are you sure it's libvlc-specific and not coming from your python bindings? Looking at vlc.py, I don't see anyth...
by wrybread
24 Oct 2018 05:25
Forum: Development around libVLC
Topic: How to get output from vlc.py?
Replies: 5
Views: 3163

Re: How to get output from vlc.py?

That's what I'm using. The issue is that when using the Python bindings for VLC(the file you linked to), the output from VLC is printed to the console (which I know I can suppress with "--verbose=-1"), but I can't figure out how to hook the output for my script. In other words I'm trying t...
by wrybread
23 Oct 2018 23:14
Forum: Development around libVLC
Topic: Recording and Displaying Streams Simultaneously
Replies: 3
Views: 1639

Re: Recording and Displaying Streams Simultaneously

Oops, I just posted almost exactly the same question. You posted after I read all the threads on this last night. Ha, I hope we can figure this out!

My thread:

https://forum.videolan.org/viewtopic.php?f=32&t=146794
by wrybread
23 Oct 2018 22:32
Forum: Development around libVLC
Topic: Yet another video capture / recording question
Replies: 2
Views: 1563

Yet another video capture / recording question

[Edited to add: oops, @Moriquendi posted almost exactly the same question while I was writing this. It's here fyi: https://forum.videolan.org/viewtopic.php?f=32&t=146788&p=481599 . I'll leave this up in hopes that it helps us solve the problem] I've read through all the threads on recording ...
by wrybread
23 Oct 2018 21:19
Forum: Development around libVLC
Topic: Possible to take a screenshot without printing filename to screen?
Replies: 5
Views: 1883

Possible to take a screenshot without printing filename to screen?

I'm taking a screenshot like this: fname = "whatever.png" result = self.player.video_take_snapshot(0, fname, 0, 0) It works well, but prints the filename to the screen and a thumbnail of the image. Is it possible to disable that behavior? Maybe one of the marquee options? I've tried disabl...
by wrybread
23 Oct 2018 09:24
Forum: Development around libVLC
Topic: How to get output from vlc.py?
Replies: 5
Views: 3163

Re: How to get output from vlc.py?

Sorry I wasn't clear. I can see all the output, but I'm trying to catch the output with my script so it can process it. Specifically I'm trying to detect when the stream rebuffers (i.e. when the player outputs "[0623b578] main input error: ES_OUT_SET_(GROUP_)PCR is called too late (pts_delay in...
by wrybread
23 Oct 2018 04:09
Forum: Development around libVLC
Topic: How to get output from vlc.py?
Replies: 5
Views: 3163

How to get output from vlc.py?

I'm using the VLC Python bindings (vlc.py) under wxPython on Windows, and trying to read the output from VLC. I'm playing an RTSP stream (security camera) and especially interested in the messages shown when it restarts the stream: [0623b578] main input error: ES_OUT_SET_(GROUP_)PCR is called too la...
by wrybread
12 Mar 2010 06:29
Forum: VLC media player for Windows Troubleshooting
Topic: Prevent flicker when changing files in fullscreen?
Replies: 2
Views: 791

Prevent flicker when changing files in fullscreen?

When I have VLC playing a video in fullscreen mode on a secondary monitor, clicking that file again makes it play smoothly in VLC. In other words, restarting the file doesn't cause any flicker. However, if I click a *different* file that's a different pixel size, VLC momentarily comes out of fullscr...
by wrybread
30 Sep 2008 07:50
Forum: VLC media player for Windows Troubleshooting
Topic: Possible to run minimal instance of VLC from commandline?
Replies: 2
Views: 1127

Re: Possible to run minimal instance of VLC from commandline?

Well I found some more options in the help file produced from commandline with this command: vlc --advanced --help It looks like the option --no-video-deco might be what I'm looking for to get a minimal instance, and --video-x and --video-y might be intended to position the window. But none of those...
by wrybread
30 Sep 2008 07:17
Forum: VLC media player for Windows Troubleshooting
Topic: Possible to run minimal instance of VLC from commandline?
Replies: 2
Views: 1127

Possible to run minimal instance of VLC from commandline?

I'm trying to launch multiple instances of VLC at various positions around a large monitor, with specific sizes. I want there to be no menus whatsoever, just the video area. Currently I'm not seeing a way to prevent the menus from appearing from commandline. All I'm seeing from commandline is the --...
by wrybread
28 Jan 2008 11:45
Forum: Web and scripting
Topic: using the activex interface with wxPython
Replies: 1
Views: 1793

Re: using the activex interface with wxPython

Have you made any progress with this? I'd be very interested in getting this working...
by wrybread
24 Mar 2007 05:46
Forum: VLC media player for Windows Troubleshooting
Topic: Possible to have two computers playing same video?
Replies: 2
Views: 548

Possible to have two computers playing same video?

I'm wondering if there's some way to syncronize VLC, so two different computers are playing the same video, at exactly the same time?

Or maybe there's some other way of accomplishing this?

Thanks for any help.

Go to advanced search