I'm using VLC and VLCJ to play video and audio files in my Java application, which works fine.
But there appears a text when playing the video; this text is the path of the played video.
I don't want it to appear when playing a video, so how do I disable this using Java?
Pass the option
:no-video-title-show
to disable media title on video. See http://wiki.videolan.org/VLC_command-line_helpExample using VLCJ 1.2.0:
Update:
Recent libVLC 2.0.x changes to
vout
feature may causeno-video-title-show
not to work on per-playitem configuration:no-video-title-show
anymore and may need to be set as per-global configuration--no-video-title-show
. Pass per-global configuration options in the VLCJ factory constructorMediaPlayerFactory(options)
instead of mediaplayer's xxxMedia method.