Search found 73 matches

Go to advanced search

by littlejohn
06 Jan 2009 19:47
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Audio control in multiple instances of JVLC
Replies: 6
Views: 878

Re: Audio control in multiple instances of JVLC

I have the similar trouble. I have two instances of jvlc running, when I set one of them mute , the other is mute too. On the other hand is the same! Maybe someone can help us! Hi, I added a unit test in /jvlc-core/src/test/java/org/videolan/jvlc/JVLCTest.java named: org.videolan.jvlc.JVLCTest.twoA...
by littlejohn
22 Oct 2008 11:31
Forum: VLC media player for Windows Troubleshooting
Topic: How to record stream RTSP with JVLC?
Replies: 14
Views: 3010

Re: How to record stream RTSP with JVLC?

-vvv , not --vvv. Use a single dash.
by littlejohn
08 Sep 2008 09:51
Forum: VLC media player for Windows Troubleshooting
Topic: How to record stream RTSP with JVLC?
Replies: 14
Views: 3010

Re: How to record stream RTSP with JVLC?

Hi, you should do: JVLC jvlc = new JVLC("-I none rtsp://192.168.10.133:554 :sout=#transcode{vcodec=mp4v,vb=800,scale=1,acodec=mpga,ab=128,channels=2}:duplicate{dst=std{access=file,mux=ts,dst=D:/record_vlc/rtsp_800.mpg}}"); so giving the command line you use with vlc as a constructor argume...
by littlejohn
07 Sep 2008 20:42
Forum: General VLC media player Troubleshooting
Topic: [Important] JVLC User Guide
Replies: 2
Views: 417

Re: [Important] JVLC User Guide

Hi,
I'll put the javadocs back online soon. Anyway you can generate all the javadocs from the bindings/java vlc folder, issueing:

mvn javadoc:javadoc

Cheers,
Filippo
by littlejohn
07 Sep 2008 20:39
Forum: VLC media player for Windows Troubleshooting
Topic: How to record stream RTSP with JVLC?
Replies: 14
Views: 3010

Re: How to record stream RTSP with JVLC?

Yes,
you can use the same command line of VLC as the argument of the JVLC class, and JVLC will behave like VLC.

Cheers,
Filippo
by littlejohn
07 Sep 2008 20:36
Forum: General VLC media player Troubleshooting
Topic: JVLC playlist issues (MediaList and MediaListPlayer objects)
Replies: 9
Views: 2639

Re: JVLC playlist issues (MediaList and MediaListPlayer objects)

Hi, sorry for the long delay, but I didn't have the time to check the forum before now. As regards Swing integration, currently you can't use any lightweight components to embed the video output, but only heavyweight ones. I suggest you to read: http://java.sun.com/products/jfc/tsc/articles/mixing/ ...
by littlejohn
29 Aug 2008 11:34
Forum: VLC media player for Windows Troubleshooting
Topic: JVLC Canvas on Vista
Replies: 4
Views: 1472

Re: JVLC Canvas on Vista

Your window and canvases must be visible (ie, with setVisible(true)) at the time of setting video output. Take a look at:

http://git.videolan.org/?p=vlc.git;a=bl ... 4c;hb=HEAD

Cheers,
Filippo
by littlejohn
09 Aug 2008 15:24
Forum: VLC media player for Windows Troubleshooting
Topic: JNative and JVLC
Replies: 8
Views: 1160

Re: JNative and JVLC

Currently, using libvlc you have no means to do it. File an enhancement request on trac.

Cheers,
Filippo
by littlejohn
08 Aug 2008 11:30
Forum: VLC media player for Windows Troubleshooting
Topic: main access error: no access module matched "any"
Replies: 17
Views: 11861

Re: main access error: no access module matched "any"

Hi,
read through this forum posts, the solution to your problem has already been discussed here:

viewtopic.php?f=14&t=47912&sid=464565a4 ... 7b#p153923
by littlejohn
07 Aug 2008 18:16
Forum: VLC media player for Windows Troubleshooting
Topic: main access error: no access module matched "any"
Replies: 17
Views: 11861

Re: main access error: no access module matched "any"

Hey...
Exception in thread main : UnsatisfiedLinkError: fontmanager.dll : Specified Procedure could not be found.
This error is not related to the java bindings. Is VLC working fine with the same file to play and the same "enviroment" conditions?
by littlejohn
06 Aug 2008 14:25
Forum: VLC media player for Linux and friends Troubleshooting
Topic: How to use jvlc library i.c.w eclipse to build a jvlc app:?:
Replies: 8
Views: 2347

Re: How to use jvlc library i.c.w eclipse to build a jvlc app:?:

Hi,
you are using an old version of the java bindings. Please get the new ones from git.

Cheers,
Filippo
by littlejohn
31 Jul 2008 20:55
Forum: General VLC media player Troubleshooting
Topic: JVLC and libfaad_plugin
Replies: 13
Views: 2171

Re: JVLC and libfaad_plugin

Hi,
you are using an old libvlc. Update your libvlc to the latest available.

Cheers,
Filippo
by littlejohn
31 Jul 2008 20:31
Forum: VLC media player for Windows Troubleshooting
Topic: Cant't comile JVLC under winXP
Replies: 5
Views: 818

Re: Cant't comile JVLC under winXP

Hi,
the error you get is non-sense with the lastest libvlc. Try to reset the plugins cache with --reset-plugins-cache.

Cheers,
Filippo
by littlejohn
30 Jul 2008 20:49
Forum: General VLC media player Troubleshooting
Topic: JVLC and libfaad_plugin
Replies: 13
Views: 2171

Re: JVLC and libfaad_plugin

Just a small update -- I have uploaded a clip of one video that exhibits this behavior at:

http://www.filedropper.com/bob
I played the file with no errors.

Cheers,
Filippo
by littlejohn
30 Jul 2008 00:21
Forum: VLC media player for Windows Troubleshooting
Topic: JNative and JVLC
Replies: 8
Views: 1160

Re: JNative and JVLC

I used this because I do not have any time to set up an linux system now to make a cross compiling. And truely I am a little too lazy :P It's a common misconception that you need to crosscompile vlc to get jvlc work on windows, and that's why I will not ever refer to guides online about getting jvl...
by littlejohn
28 Jul 2008 10:42
Forum: VLC media player for Windows Troubleshooting
Topic: JNative and JVLC
Replies: 8
Views: 1160

Re: JNative and JVLC

I used this one http://www.dcs.gla.ac.uk/~stuartr/pages/jvlc.html But I used the newest VLC 0.8.6i (But I don't think that the problem came from this) Hi Mike, that version of jvlc is 2 years old at least. Why don't you try the latest to check if the popup behaviour is now correct? I also need to d...
by littlejohn
27 Jul 2008 23:13
Forum: VLC media player for Linux and friends Troubleshooting
Topic: New java bindings release
Replies: 0
Views: 417

New java bindings release

Hi people,
a new vlc java bindings test release is available for download from:

http://trac.videolan.org/jvlc/wiki/download

The jar will run on both linux and windows (possibly on mac os too), please report any anomaly.

Cheers,
Filippo
by littlejohn
27 Jul 2008 23:09
Forum: VLC media player for Windows Troubleshooting
Topic: New java bindings release
Replies: 0
Views: 198

New java bindings release

Hi people,
a new vlc java bindings test release is available for download from:

http://trac.videolan.org/jvlc/wiki/download

The jar will run on both linux and windows (possibly on mac os too), please report any anomaly.

Cheers,
Filippo
by littlejohn
27 Jul 2008 22:45
Forum: General VLC media player Troubleshooting
Topic: JVLC and libfaad_plugin
Replies: 13
Views: 2171

Re: JVLC and libfaad_plugin

Hi,
could you please attach the hs_err*log file? Which version of jvlc/vlc are you using? Any additional info?

Cheers,
Filippo
by littlejohn
27 Jul 2008 22:38
Forum: VLC media player for Windows Troubleshooting
Topic: JNative and JVLC
Replies: 8
Views: 1160

Re: JNative and JVLC

Hello, i am currently working on an own solution to access the DLLs of VLC under java using jNative(Playing audio and video is no problem it's very easy to handle :) ). I also tried jVLC and found out that the video should be displayable on a JPanel in Java. In jVLC this works not really good. At t...
by littlejohn
27 Jul 2008 22:35
Forum: VLC media player for Windows Troubleshooting
Topic: main access error: no access module matched "any"
Replies: 17
Views: 11861

Re: main access error: no access module matched "any"

Hi people,
3. copy libvlc.dll to vlc.dll and be sure the vlc folder is in the path
Hi,
since changeset aa6fd556ea5c42b8791c8fc4b82f5aaafa6f3f55 (ie, since 27/07/08) libvlc.dll will be correctly loaded on windows too, so there will be no need to copy libvlc.dll to vlc.dll.

Cheers,
lj
by littlejohn
17 Jul 2008 18:22
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Error in jvlc
Replies: 3
Views: 565

Re: Error in jvlc

libjvlc does not exist anymore since version 0.8.6.
by littlejohn
17 Jul 2008 08:20
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Error in jvlc
Replies: 3
Views: 565

Re: Error in jvlc

Hi,
you are using an old version of jvlc. Use the one contained in vlc 0.9 sources.

Cheers,
Filippo
by littlejohn
17 Jul 2008 00:13
Forum: VLC media player for Windows Troubleshooting
Topic: main access error: no access module matched "any"
Replies: 17
Views: 11861

Re: main access error: no access module matched "any"

Hi people, tonite I tried jvlc on windows and I got it to work. Here the steps: 1. get a working vlc 0.9.* (from nightlies perhaps) 2. edit the vlcrc file (find it under your windows user folder) in the following way: # boolean plugins-cache=0 # string plugin-path=c:\vlc\plugins (this is my plugins ...
by littlejohn
21 Apr 2008 21:59
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc java bindings with ubuntu
Replies: 1
Views: 1186

Re: vlc java bindings with ubuntu

You will need to compile and install vlc from sources. Be sure you use the git version.

Cheers,
Filippo

Go to advanced search