Vlc-qt subtitles

339 Views Asked by At

How to switch on/off subtitles in vlc-qt media player? By default subtitles switched on.

I use this stuff:

#include <VLCQtCore/Common.h>
#include <VLCQtCore/Instance.h>
#include <VLCQtCore/Media.h>
#include <VLCQtCore/MediaPlayer.h>
#include <VLCQtCore/Audio.h>
1

There are 1 best solutions below

0
On

On your vlcMediaPlayer (i'll call it media since you didn't show any code) object try

media.video()->setSubtitle(-1);

VlcMediaPlayer has a video object which is the one calling the video functions in which the setSubtitle one resides. See this vlc-qt/Video.h