Search found 8 matches

Go to advanced search

by mquevedob
05 Dec 2014 01:45
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

Re: change video window position

hello tyana,

I really dont know about the VLC application. I was explaining my case on using libVLC with a custom player application.

sorry I cant help further.

regards,
Martin
by mquevedob
15 Nov 2014 16:52
Forum: Development around libVLC
Topic: Fade-in and Fade-out effect on Pause
Replies: 5
Views: 8825

Re: Fade-in and Fade-out effect on Pause

ok, thanks
but I actually meant using the libvlc functions.
It seems to be possible by using a Filter (marquee)... I am reading about it
by mquevedob
15 Nov 2014 14:05
Forum: Development around libVLC
Topic: Fade-in and Fade-out effect on Pause
Replies: 5
Views: 8825

Fade-in and Fade-out effect on Pause

Hello guys!

Is it possible to overlay a black image when I pause my video and then remove this image when i resume it again?
It would be great if i can use a fade in/out effect as well.

regards,
Martin
by mquevedob
14 Nov 2014 17:12
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

Re: change video window position

Hello guys! i just wanted to post here how I made it work, for those out there who eventually need to change window position. i found out that the window used by libvlc uses the libxcb library which is handled by modules/video_output/xcb/window.c On line 343 of this file i added the following (right...
by mquevedob
13 Nov 2014 09:45
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

Re: change video window position

may I ask what the --video-x and --video-y parameters do ?
are they obsolete now ?
by mquevedob
13 Nov 2014 08:49
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

Re: change video window position

well I am on Ubuntu.

i think if i would use libvlc_media_player_set_xwindow I would need to setup the widget.
the example i am compiling does not use any widget ... so i was thinking if there is a way to move window position without widget...
by mquevedob
13 Nov 2014 08:21
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

Re: change video window position

i added command line options --video-x and --video-y but they dont modify window position. char const *vlc_argv[] = { "--video-x=100", "--video-y=100", "--no-embedded-video", "--no-video-deco", }; int vlc_argc = sizeof(vlc_argv) / sizeof(*vlc_argv); /* Load th...
by mquevedob
13 Nov 2014 02:43
Forum: Development around libVLC
Topic: change video window position
Replies: 10
Views: 930

change video window position

hi all, i am using the example code for libVLC #include <stdio.h> #include <stdlib.h> #include <vlc/vlc.h> int main(int argc, char* argv[]) { libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; /* Load the VLC engine */ inst = libvlc_new (0, NULL); /* Create a new item */ m = lib...

Go to advanced search