Search found 4 matches

Go to advanced search

by zczc250
21 May 2011 16:51
Forum: Development around libVLC
Topic: How to output the multiple video tracks?
Replies: 5
Views: 1365

Re: How to output the multiple video tracks?

Alternatively, if you just want multiple videos in a single window, the skins2 interface is your friend. You can create your own skin with multiple <VIDEO> tags within a single window. These videos tags will be used in the order they appear in the theme.xml file. This can be used either with multip...
by zczc250
21 May 2011 16:07
Forum: Development around libVLC
Topic: How to output the multiple video tracks?
Replies: 5
Views: 1365

Re: How to output the multiple video tracks?

I found a new way inst = libvlc_new (0, NULL); m = libvlc_media_new_path (inst, "C:\\Users\\Administrator\\Desktop\\20100302-20100516-162804.wmv"); mp = libvlc_media_player_new_from_media (m); libvlc_video_set_track(mp,1); libvlc_media_player_set_hwnd(mp,ui->mdiArea->winId()); libvlc_media...
by zczc250
20 May 2011 17:41
Forum: Development around libVLC
Topic: How to output the multiple video tracks?
Replies: 5
Views: 1365

Re: How to output the multiple video tracks?

There is currently no way to embed more than one video track with set_hwnd(). set_format_callbacks() does support multiple tracks, but it is obviously a lot more involved. Thanks for your help, I don't know how to use the callback. I will read some documents about that. Do you have some sample code...
by zczc250
20 May 2011 16:02
Forum: Development around libVLC
Topic: How to output the multiple video tracks?
Replies: 5
Views: 1365

How to output the multiple video tracks?

I have some wmv files with multiple video tracks, and i need to make a player to play them in one window. I have made a player by libvlc, after I use a simple code as: inst = libvlc_new (0, NULL); m = libvlc_media_new_path (inst, "C:\\Users\\Administrator\\Desktop\\20100302-20100516-162804.wmv&...

Go to advanced search