qt media player source code code example
Example 1: qt video player with codecs
//Play the video:
libvlc_media_player_set_media(player, media);
libvlc_media_player_play(player);
Example 2: qt video player with codecs
//Use some qt widget for displaying the video:
libvlc_media_player_set_drawable(player, some_widget->winId());