Search found 6 matches

Go to advanced search

by MickeyMoneysac
13 Apr 2020 18:27
Forum: Development around libVLC
Topic: use libvlc without installing vlc linux
Replies: 2
Views: 319

Re: use libvlc without installing vlc linux

Ok I'll propably try this. Thank you very much for the answer!
by MickeyMoneysac
12 Apr 2020 22:50
Forum: Development around libVLC
Topic: use libvlc without installing vlc linux
Replies: 2
Views: 319

use libvlc without installing vlc linux

Hi there!

I am developing a little gtk application with using libvlc in linux. So I want to make it available in the AUR and want to ship the app without the vlc dependency and include libvlc in my code. How can I achieve this? I really appreciate any hint!
by MickeyMoneysac
30 Dec 2019 14:17
Forum: Development around libVLC
Topic: Display album art
Replies: 0
Views: 147

Display album art

Hi all,

when opening a track with an embedded album art image, liblvc extracts this image to /home/USERNAME/.cache/vlc/art/artistalbum/ARTIST/ALBUM/art.jpg
Is there a way to let libvlc draw this image to e.g a GtkDrawingArea using Gtk?

Thanks in advance

MickeyMoneysac
by MickeyMoneysac
28 Dec 2019 12:58
Forum: Development around libVLC
Topic: Extract art from media through libvlc
Replies: 3
Views: 1262

Re: Extract art from media through libvlc

Using Linux libvlc extracts the album art to /home/USERNAME/.cache/vlc/art/artistalbum/ARTIST/ALBUM/art.jpg If you are a fan of C you can use sprintf to produce this: sprintf (uri, "/home/%s/.cache/vlc/art/artistalbum/%s/%s/art.jpg", getenv("USER"), artist, album) ; MickeyMoneysac
by MickeyMoneysac
27 Dec 2019 23:40
Forum: Development around libVLC
Topic: Detect mouse motion gtk
Replies: 1
Views: 247

Re: Detect mouse motion gtk

It had to happen this way. I could not find a solution for two hours and now twenty minutes after posing this question I noticed that I forgot to delete one gtk motion event line gtk_widget_set_events (GTK_WIDGET(drawing_area), GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK) ; which destroye...
by MickeyMoneysac
27 Dec 2019 15:48
Forum: Development around libVLC
Topic: Detect mouse motion gtk
Replies: 1
Views: 247

Detect mouse motion gtk

Hi all, first of all i just want to say a big thankyou to the developers from videolan for building such a great, easy to use media framework! Developing a simple gtk media player i want to hide the controls in fullscreen mode. However when the user moves the mouse the controls should reappear for s...

Go to advanced search