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
4
votes
1 answer

Java live video capturing/streaming

Is there any idea how to implement a java programm that captures video/audio from a webcam /microphone and stream it to multiple clients. I know about JMF but it is quite old and not well document or supported.
kkon
  • 79
  • 1
  • 8
4
votes
1 answer

RTSP client in Java - link doesn't work

I am writing simple rtsp client. I wanna play video from my IP camera. I can see preview of my camera when I open this link in VLC. rtsp://@192.168.1.10:554/user=admin_password=tlJwpbo6_channel=1_stream=0.sdp?real_stream But I can't open this…
Eliasz Kubala
  • 3,836
  • 1
  • 23
  • 28
4
votes
1 answer

Best way to live stream video from java server to android client?

I've been searching the best way to live stream PC's screen from Java server to Android client since few days now but I can't find an other way to TCP socket. I want to stream from PC to Android client. For now I just send images (frames) through…
Jérémy Halin
  • 553
  • 4
  • 29
4
votes
0 answers

How to resolve these LibVLC core vout display errors?

I'm using VLCJ in a desktop java application and LibVLC in an android application, both are reporting the same errors when I play video files. Whenever I call to play an item I get: core vout display error: Failed to change zoom core vout display…
Peter Flower
  • 363
  • 2
  • 20
4
votes
2 answers

Play video in swing (VLCJ without VLC)

How can I play a video in swing with the library vlcj without having vlc installed? What I have done: 1: Downloaded the vlcj library, vlcj 2.4.1 (zip) and add all to build path: (docs1) 2: Downloaded the libvlc.dll and libvlccore.dll and put them…
Grains
  • 950
  • 3
  • 16
  • 35
4
votes
1 answer

Java HD Video Capture processing and streaming

I have an application which captures live video from an HD camera and streams it to a video streaming server. I currently use Adobe Flash Media Live Encoder(FMLE) to sent the captured video stream to the server. The problem is FMLE has no support…
4
votes
1 answer

Error using VLCJ on Mac

I am using VLCJ libraries for developing an simple media player application on Mac and PC. On PC, all media files run smoothly. On a Mac when I run the application (after configurating the Mac .dylib files) I have managed to open the application…
Tamas Ionut
  • 4,240
  • 5
  • 36
  • 59
4
votes
0 answers

Streaming ServerClient with Netty and Vlcj

I want to make a streaming audio/video server-client application. Here Client will request for a video/audio file to the server and client can watch the streamed files. Now, I have heard about Netty a Network Framework very good one. So, I want to…
Ahsan
  • 134
  • 15
4
votes
3 answers

vlcj mlr special character

I have been stalking this great site for ages. Today I finally decided to create an account when I got stuck on a problem. My problem is rather basic vlcj executing. I have a program running as an audio player. It is all done except for one problem…
4
votes
1 answer

Live video streaming over http using vlcj

I'm developing a video chatting application. I used vlcj for live video streaming, but failed to capture the video from the other system. public static void main(String[] args) throws Exception { NativeLibrary.addSearchPath("libvlc",…
Raji A C
  • 2,261
  • 4
  • 26
  • 31
4
votes
1 answer

Trying to embed vlcj media player in a WindowsCanvas inside a JPanel

I'm trying to play a video using vlcj inside a JPanel but it doesn't work for me. The message exception I am getting is "java.lang.IllegalStateException: The video surface component must be displayable" which is the same problem as in Keep getting…
Jonás
  • 1,459
  • 4
  • 27
  • 43
3
votes
1 answer

Using VLCJ to capture video from camera on mac osx

Does anyone know how to specify the MRL for the default camera on mac osx (lion) in the call to mediaPlayerComponent.getMediaPlayer().playMedia(mrl)? For example I can do it under Windows and Linux using MRLs like dshow:// and v4l2:///dev/video0 as…
Jason N
  • 463
  • 3
  • 10
3
votes
2 answers

Capturing with vlcj only gives a corrupt video file

I am using vlcj to capture the screen in my Java program. Therefore I use the following code: public static void main(final String[] args) { NativeLibrary.addSearchPath("vlc", "/Applications/VLC.app/Contents/MacOS/lib/"); …
tester
  • 3,977
  • 5
  • 39
  • 59
3
votes
2 answers

Don't show file path when playing video using VLCJ

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…
Jason4Ever
  • 1,439
  • 4
  • 23
  • 43
3
votes
2 answers

Video/Audio chat in Java

I am planning to implement Video/Audio chat application in Java and I would like to ask you what do you suggest to use. We are currently trying VLCj library, which is great but it seems that VLC does not support streaming of video/audio in real…
Jure Polutnik
  • 577
  • 6
  • 16
1
2
3
27 28