Search found 52 matches

Go to advanced search

by kryptonite
16 Jun 2010 15:07
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

I have my own java-based vlc player and play from 1 upto 16 (RTSP)streams in independent canvases. If for some reason the target server is down, I see error messages in stdout from libvlc: [0x3b337fc] live555 demux error: Failed to connect with rtsp://xx.xx.com:8801/ch03 [0x3b327dc] access_realrtsp ...
by kryptonite
31 Mar 2010 12:49
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

I play upto 16 streams in my app.
I use a single libvlc instance and each stream has it's own canvas, mediaPlayer, mediaDescriptor, etc instances.
Finally all canvases are added to a JPanel and I customize the size and layout as per my requirement.
by kryptonite
29 Jan 2010 07:52
Forum: Development around libVLC
Topic: libvlc_media_player_set_media crashes
Replies: 4
Views: 1687

Re: libvlc_media_player_set_media crashes

Did you figure out a fix?

Thanks.
by kryptonite
23 Dec 2009 08:26
Forum: Development around libVLC
Topic: How to override the default sout option value
Replies: 2
Views: 624

Re: How to override the default sout option value

Thanks, Jean. I had actually tried that, but the vlc tries playing an empty stream, which fails again. Apparently the --reset-config was not behaving as intended when passed as an option to create the libvlc instance. So I used --reset-config in a prior call which checks the libvlc version: vlc.exe ...
by kryptonite
23 Dec 2009 08:21
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

I too am working on XP; I didn't need to add anything special to my Windows environment variables.
Just using the VLC option --plugin-path=.......
AND
NativeLibrary.addSearchPath("libvlc", vlcLocnPath); sufficed.
by kryptonite
21 Dec 2009 11:49
Forum: Development around libVLC
Topic: How to override the default sout option value
Replies: 2
Views: 624

How to override the default sout option value

I had previously run VLC and saved a playlist.
Later, I tried running my JVLC-based app. Now instead of using the URL string that I provide, it seems to pick up & try playing the default sout string from vlcrc.
How can I force vlc to play the provided url? (I'm using VLC 1.0.3)
by kryptonite
16 Dec 2009 09:59
Forum: Development around libVLC
Topic: Events not working in fullscreen mode
Replies: 1
Views: 545

Events not working in fullscreen mode

In my Jvlc based player, I have successfully implemented my own mouse-click event handlers (blocked VLC's custom handlers) However, when I switch to fullscreen mode using the libvlc_toggle_fullscreen() or libvlc_set_fullscreen() , my events don't get triggered. In this state, the VLC's double-click ...
by kryptonite
18 Nov 2009 07:43
Forum: Development around libVLC
Topic: hocking the parent panel events
Replies: 5
Views: 834

Re: hocking the parent panel events

The --no-mouse-events would be a useful option to port to Windows; quite a few users (including myself) need it. For the time being, the hack most people use for their libvlc ports, is to somehow disable the canvas that displays vlc's o/p. As a result, all events going to the canvas get passed on to...
by kryptonite
27 Oct 2009 08:12
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

I use the addSearchPath() before creating the libvlc instance.
Also, for your vlc ARGS, try "--plugin-path=C:\\Program Files\\VideoLAN\\VLC" instead of "--plugin-path=C:\\Program Files\\VideoLAN\\VLC\\plugins"
by kryptonite
22 Sep 2009 09:17
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

It's failing while loading the libvlc dll itself, changing plugin-path value might not help.

Before the call to

Code: Select all

Native.loadLibrary()
try adding:

Code: Select all

NativeLibrary.addSearchPath("libvlc", "C:\\Program Files\\VideoLAN\\VLC");
by kryptonite
22 Sep 2009 08:43
Forum: Development around libVLC
Topic: 2 Questions
Replies: 2
Views: 609

Re: 2 Questions

1. You can use libvlc's libvlc_toggle_fullscreen() method
2. This has nothing to do with vlc/libvlc
by kryptonite
01 Sep 2009 09:16
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

My app is quite customized and since it's been a learning process for me, it's not modularized well enough for general use.
Once I get through my project deadline though, I'll try to get it into a shareable format.
by kryptonite
31 Aug 2009 12:33
Forum: Development around libVLC
Topic: How to use mediacontrol_snapshot function ?
Replies: 7
Views: 1613

Re: How to use mediacontrol_snapshot function ?

How are you creating the mediacontrol instance (_mi)?
Are you using mediacontrol_new_from_instance()?

Also, apparently the position param is currently ignored.
by kryptonite
31 Aug 2009 08:49
Forum: Development around libVLC
Topic: How to use mediacontrol_snapshot function ?
Replies: 7
Views: 1613

Re: How to use mediacontrol_snapshot function ?

I haven't tried using mediacontrol_snapshot(), but I implemented the snapshot feature in my app using libvlc_video_take_snapshot() which works perfectly.
Why don't you try using this method instead?
by kryptonite
31 Aug 2009 08:41
Forum: Development around libVLC
Topic: How to use JVLC on linux box ?
Replies: 1
Views: 551

Re: How to use JVLC on linux box ?

JVLC is not maintained. See viewtopic.php?f=32&t=56939
You need to build your own.
by kryptonite
28 Aug 2009 15:54
Forum: Development around libVLC
Topic: How to use mediacontrol_snapshot function ?
Replies: 7
Views: 1613

Re: How to use mediacontrol_snapshot function ?

If the exception message reads "No input", it's expecting something.
You should have calls to:

Code: Select all

libvlc_media_player_set_media() libvlc_media_player_set_drawable() and probably libvlc_media_player_play()
before using your methods.
by kryptonite
28 Aug 2009 15:49
Forum: Development around libVLC
Topic: JVLC status
Replies: 177
Views: 59399

Re: JVLC status

Well, since a Java application works fine, I don't see roadblocks in the applet version.
by kryptonite
24 Aug 2009 09:16
Forum: VLC media player for Windows Troubleshooting
Topic: Fast foward & Rewinding...
Replies: 1
Views: 245

Re: Fast foward & Rewinding...

You should be able to use the timeline to scroll through?
The forward, rewind buttons are on either side of the timeline.
by kryptonite
12 Aug 2009 13:42
Forum: Development around libVLC
Topic: Zooming video
Replies: 3
Views: 1023

Re: Zooming video

Ok, so after hunting around, I added the "--no-autoscale" option. Now, libvlc_video_get_scale() gives me the correct value - 1.0 [or if I use --scale=2.0 it returns 2.0] - I then use libvlc_video_set_scale() passing a new float value, libvlc_video_get_scale() then returns 0.0 thereafter - ...
by kryptonite
12 Aug 2009 08:11
Forum: Development around libVLC
Topic: brightness, contrast, hue and saturation in libVLC
Replies: 12
Views: 4881

Re: brightness, contrast, hue and saturation in libVLC

Did you get the any of the Video Effects (e.g video scaling) to work?
by kryptonite
11 Aug 2009 13:23
Forum: Development around libVLC
Topic: dos comand for recording in raw.
Replies: 2
Views: 812

Re: dos comand for recording in raw.

Not very sure, but you could give this a try:
C:\Programmer\VideoLAN\VLC\vlc udp://@232.49.36.29:6666 :demux=dump :demuxdump-file="C:\Documents and Settings\oll\Dokumenter\testX.ps" :run-time=60
by kryptonite
11 Aug 2009 09:20
Forum: Development around libVLC
Topic: Zooming video
Replies: 3
Views: 1023

Re: Zooming video

Thank you, Rémi. Yes, the video is already active & playing. My app is Java based - I do the usual creating instances followed by: libvlc_media_player_set_media() libvlc_media_release() libvlc_media_player_set_drawable() libvlc_media_player_play() I then call libvlc_video_set_scale() on a button...
by kryptonite
10 Aug 2009 17:51
Forum: Development around libVLC
Topic: Zooming video
Replies: 3
Views: 1023

Zooming video

I'm using 1.0.1 and trying to implement the zoom/magnify feature. I used libvlc_video_set_scale() However, I see no effect and libvlc_video_get_scale() returns 0.0 Is there some sequence of calls or something special I need to add? The '-vvv' only spits out [0x3ee8e2c] main input debug: control type...
by kryptonite
10 Aug 2009 08:51
Forum: Development around libVLC
Topic: Suppressing Debug Info
Replies: 4
Views: 806

Re: Suppressing Debug Info

Are you using the "-vvv" option while running vlc? This makes it highly verbose.
by kryptonite
07 Aug 2009 12:27
Forum: Development around libVLC
Topic: Recording - stop & memory management
Replies: 1
Views: 571

Re: Recording - stop & memory management

Uh! Doesn't seem like VLC does any memory space checks. Tested with a pen drive, it just continues saving till the disk gets full and then silently stops when there's no more space to write. If I try saving to an already full disk, it creates a zero-size file but doesn't actually write to it and doe...

Go to advanced search