Questions tagged [vlcj]

VLCJ is a Java binding for VLC engine (libVLC). It supersedes the old (and now dead) JVLC project.

Like VLC media player from VideoLAN.org, VLCJ, made by Mark Lee of Caprica Software, Inc., binds to the VLC engine (VLC libraries and plugins) that is native to a given OS platform via Java Native Access (JNA). For it to work, it requires at least Java 1.5. It is currently licensed under GPLv3.

VLCJ features everything VLC media player can do: transcoding, streaming and playback of a media in many formats of media containers and media codecs. It supports media input coming from a file, a media disc, a URL, a capture device or even the desktop! It also able to play from a playlist of media stored locally or remotely.

Currently, various major versions are released for VLCJ, depending on which VLC engine version it binds to. All versions works well under Windows and Linux but some versions are reported to work fine under MacOSX.

415 questions
-1
votes
1 answer

Issues with vlcj.jar at run

I'm testing vlcj for the first time, following this tutorial, but when I run it I get this error-output: cd C:\Users\abolfazl\Documents\NetBeansProjects\testplayer; "JAVA_HOME=C:\\Program Files\\Java\\jdk1.8.0_05" cmd /c "\"\"C:\\Program…
abolfazl-sh
  • 25
  • 1
  • 11
-1
votes
1 answer

vlcj embeddedmediaplayercomponent in Jinternal Fream Adding Issues

Jinternal frame Add jvlcEmbeddedmediaPlayerComponent problem is jDropdownlist open than list is back side list in vlc Control and other Problem is if maximize Jinternal Frame other vlc Component our Spreed Current Maximize jinternal frame look…
-1
votes
1 answer

Releted to VLCJ Library

Here is my Code, any one can me tell how to stop playing media file, In this EmbeddedMediaPlayerComponent is class used to play Media file.... My question to you How to stop media file... public class MediaPlayer extends JPanel { //Declares our…
-1
votes
1 answer

package not found Error

These packages show some errors when I import them. What am I suppose to do? import uk.co.caprica.vlcj.binding.LibVlc; import uk.co.caprica.vlcj.runtime.RuntimeUtil; import com.sun.jna.Native; import com.sun.jna.Native; import…
MastaOpec
  • 39
  • 9
-1
votes
1 answer

Video Streaming in vlcj

I want to stream a video from server to the client. I have found the code for streaming the video from the server to the client side but get an error when running it: Streaming 'vlcj-speed-run.flv' to …
Ahsan
  • 11
  • 1
  • 1
  • 9
-2
votes
1 answer

VLCJ How to prepare media without playing it?

I use embeddedMediaPlayer.media().play(path); which loads the video and plays it at the same time no problems, but I'd rather it opened and didn't auto play the video. If I use embeddedMediaPlayer.media().prepare(path); it doesn't really seem to do…
Hasen
  • 11,710
  • 23
  • 77
  • 135
-2
votes
1 answer

RTSP support library for Javafx

I am new to this Javafx. I need to know rtsp supported library for Javafx I knew few of the media library GStreamer and VLCJ. I don't know which will support this features in Javafx. I have read many portals which I cant get an answer. many of them…
Nirmal
  • 2,340
  • 21
  • 43
-2
votes
1 answer

Action listener only working in debug mode

I have a action listener on a media player using vlcj. When i run the program in debug mode the action listener triggers when the video is finished but when I run it normally in eclipse it does not trigger. My action listener public static void…
Peter Maher
  • 99
  • 1
  • 10
-2
votes
1 answer

java - vlcj gives an error when trying to create a server stream

{ String media = "d:\\a.mp4"; String options = formatHttpStream("127.0.0.1", 5555); System.out.println("Streaming '" + media + "' to '" + options + "'"); MediaPlayerFactory mediaPlayerFactory = new MediaPlayerFactory(args[0]); …
Adam
  • 65
  • 1
  • 10
-2
votes
1 answer

Video streaming from the server side to the client side

Possible Duplicate: Video Streaming in vlcj public class VlcTest extends VlcjTest { public static void main(String[] args) throws Exception { if(args.length != 1) { System.out.println("Specify a single MRL to stream"); …
Ahsan
  • 11
  • 1
  • 1
  • 9
1 2 3
27
28