Search found 18 matches

Go to advanced search

by aneeshsebastian
24 May 2013 15:32
Forum: Development around libVLC
Topic: Video Not Displaying on Video Surface when Recording Enabled
Replies: 3
Views: 357

Video Not Displaying on Video Surface when Recording Enabled

I'm unable to see video on Video Displaying panel when recording is in-progress. I have both dst =diplay and dst=file{dst=display,dst=" + getOutputFile() + "} specified as part of options of playMedia API. Video getting paused until recording is terminated. I need video display without int...
by aneeshsebastian
23 Apr 2013 07:35
Forum: Development around libVLC
Topic: VLCJ Lib <plugins-path> issue
Replies: 5
Views: 2950

Re: VLCJ Lib <plugins-path> issue

"The last two options will require some native development as libvlc does not support such operations at the moment."

Do you think future versions of VLCJ will support these features? This is something a primary requirement that VLCJ Plugins should be dynamically available.
by aneeshsebastian
22 Apr 2013 16:59
Forum: Development around libVLC
Topic: VLCJ Lib <plugins-path> issue
Replies: 5
Views: 2950

VLCJ Lib <plugins-path> issue

I face a big trouble at the end of my development. My assumptions went wrong. My requirement is 'Run VLCJ without installing VLC player locally'. After spending time to understand VLCJ API, I came to know that It must be possible. So I created a custom native-lib.jar with following dlls. libvlccore....
by aneeshsebastian
18 Apr 2013 15:12
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

Re: MouseListener not workigng when while video playing

I have realized that WIndowsCanvas API is unstable. Event capturing is not consistent. I already spent 4 days to work on this. API documentation says "This class is experimental, unsupported and unstable in operation."

Is it worth to still work on this?
by aneeshsebastian
18 Apr 2013 05:41
Forum: Development around libVLC
Topic: VLC (Direct 3D Output) Window in Windows
Replies: 3
Views: 3441

Re: VLC (Direct 3D Output) Window in Windows

Thanks for the display: String[] options = { ":sout=#transcode{vcodec=h264,vb=4096,scale=1,acodec=mpga,ab=128,channels=2,samplerate=44100}:duplicate{dst=file{dst=" + fileName + "}}" };. I removed dst=display, now this works. I use new MediaPlayerFactory().newHeadlessMediaPlayer()...
by aneeshsebastian
17 Apr 2013 12:04
Forum: Development around libVLC
Topic: VLC (Direct 3D Output) Window in Windows
Replies: 3
Views: 3441

VLC (Direct 3D Output) Window in Windows

I get one more window named VLC (Direct 3D Output) Window in addition to normal window which displays/plays video. This happens when I invoke following recording API. File dir = new File(System.getProperty("user.dir"), "Videos"); dir.mkdirs(); DateFormat df = new SimpleDateFormat...
by aneeshsebastian
16 Apr 2013 12:17
Forum: Development around libVLC
Topic: Video Recording Using VLCJ
Replies: 2
Views: 1091

Video Recording Using VLCJ

Can we do background recording while foreground video play is in progress. Here I play video in my swing panel using : mediaPlayer.playMedia("mrl"); For recording I use same API with option arguments File dir = new File(System.getProperty("user.dir"), "Videos"); dir.mkd...
by aneeshsebastian
16 Apr 2013 12:07
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

Re: MouseListener not workigng when while video playing

Thanks for the details. WindowsCanvas worked for me. Now I'm able to capture mouse events. Sherington :I had to capture mouse event to show VIdeoControl panel while mouse pointer is there in WindowsCanvas. But now a new problem as Canvas getting resized when video control panel hides upon receiving ...
by aneeshsebastian
13 Apr 2013 15:06
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

Re: MouseListener not workigng when while video playing

Thanks for your reply. I'm just wondering if it worthy to put some effort for native Windows event hook implementation. If it's not I should do with a different design where mouse events from video playing canvas not being captured. Because of curiosity, what could be the real problem here? Native l...
by aneeshsebastian
13 Apr 2013 12:43
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

Re: MouseListener not workigng when while video playing

My application is expected to run in Windows. Does this not at all possible in Windows?What's the reason? Bz of Canvas implementation in windows? Or is the thr problem with VLCJ APIs. Why we still use Canvas instead of JPanel. Can't we change implementation?
by aneeshsebastian
13 Apr 2013 12:41
Forum: Development around libVLC
Topic: EmbeddedMediaPlayerComponent not working with GridBagLayOut
Replies: 2
Views: 889

Re: EmbeddedMediaPlayerComponent not working with GridBagLay

Thanks for the reply. I have a couple of question on EmbeddedMediaPlayerComponent implementation 1. EmbeddedMediaPlayerComponent seems extending Panel instead of JPanel. 2. The video surface is always an AWT Canvas. Can't we make it as JPanel? AWT Canvas is heavy weight. I cannot change the default ...
by aneeshsebastian
13 Apr 2013 12:23
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

Re: MouseListener not workigng when while video playing

Thanks for the reply.

I already did it.But it did not help me. MouseListener not getting picked up while video is playing @ canvas
by aneeshsebastian
13 Apr 2013 11:13
Forum: Development around libVLC
Topic: MouseListener not workigng when while video playing
Replies: 10
Views: 978

MouseListener not workigng when while video playing

I have a JPanel to which a EmbeddedMediaPlayerComponent is embedded. I added the following listener mediaPlayerComponent.addMouseListener(new MouseListener() { @Override public void mouseReleased(MouseEvent e) { System.out.println("Mouse Released..Aneesh"); } @Override public void mousePre...
by aneeshsebastian
13 Apr 2013 09:39
Forum: Development around libVLC
Topic: EmbeddedMediaPlayerComponent not working with GridBagLayOut
Replies: 2
Views: 889

EmbeddedMediaPlayerComponent not working with GridBagLayOut

I develop a swing application which has multiple UI component. It has a video display panel and video control panel. I embed EmbeddedMediaPlayerComponent to my custom video display panel. My EmbeddedMediaPlayerComponent instance is added with another custom panel called videocontrol panel which cont...
by aneeshsebastian
25 Mar 2013 06:26
Forum: Development around libVLC
Topic: Dynamically Change the resolution of playing video using VLC
Replies: 5
Views: 1821

Re: Dynamically Change the resolution of playing video using

Thanks Jean.

I have another question. How does it possible to open an URL - rtsp://"XX.XX.XX.XX"/axis-media/media.amp?videocodec=h264&resolution=720x480 in standard browsers like IE? Is there any plugin for it?
by aneeshsebastian
24 Mar 2013 10:10
Forum: Development around libVLC
Topic: Dynamically Change the resolution of playing video using VLC
Replies: 5
Views: 1821

Re: Dynamically Change the resolution of playing video using

Could you please let me know the way in which it's possible? I want to change the resolution of a playing video from my JAVA client.I embedded the media player into Swing Panel. Users can change the resolution dynamically by choosing resolution menu items.This should reflect in the playing video. Pl...
by aneeshsebastian
22 Mar 2013 14:49
Forum: Development around libVLC
Topic: Dynamically Change the resolution of playing video using VLC
Replies: 5
Views: 1821

Dynamically Change the resolution of playing video using VLC

String mrl= "rtsp://"XX.XX.XX.XX"/axis-media/media.amp?videocodec=h264&resolution=720x480"; I play the video using mediaPlayer.playMedia(mrl); It works great. But now I want to dynamically change the resolution of playing video. Example , while playing I have the requirement ...

Go to advanced search