Search found 20 matches

Go to advanced search

by neonp
25 Sep 2015 11:10
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC over ssh
Replies: 2
Views: 926

Re: VLC over ssh

I don't want to play through ssh but only trigger play, but everything stays on the pi.
by neonp
25 Sep 2015 10:51
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC over ssh
Replies: 2
Views: 926

VLC over ssh

Hi all,

I would like to run vlc from SSH to play on the raspberrypi hdmi output (without the heaviness of x11). Any clue ?

Thanks,
Nicolas
by neonp
05 Mar 2014 15:19
Forum: Development around libVLC
Topic: VLC music tags (meta)
Replies: 5
Views: 874

Re: VLC music tags (meta)

Yes, but as I told, when I display the messages in VLC, it tells me no ID3 were found. My question is more about where does vlc look for information, and is this way to retrieve info available in libvlc ?
by neonp
05 Mar 2014 14:28
Forum: Development around libVLC
Topic: VLC music tags (meta)
Replies: 5
Views: 874

Re: VLC music tags (meta)

Yes, of course ;)
by neonp
05 Mar 2014 06:42
Forum: Development around libVLC
Topic: VLC music tags (meta)
Replies: 5
Views: 874

VLC music tags (meta)

Hi all,

I am trying to understand how VLC gets music information. When I have a look at the messages, it says 0 ID3 tag found but, when I display the music information, I have many information. When using libvlc, I get no information at all.

Anything I am missing ?

Thanks for your help.
by neonp
12 Aug 2013 19:35
Forum: VLC media player for Windows Troubleshooting
Topic: Unsupported signal when playing bluray
Replies: 3
Views: 839

Re: Unsupported signal when playing bluray

Hi, Thanks for your reply. So here are my answers. My computer is an HTPC, so I directly connected it to the TV through HDMI. No other display monitor. I usually play my videos with VLC with no issue (either local files or DVD) I have only PAL DVD & blurays, so no issue with NTSC. I think you're...
by neonp
10 Aug 2013 10:11
Forum: VLC media player for Windows Troubleshooting
Topic: Unsupported signal when playing bluray
Replies: 3
Views: 839

Unsupported signal when playing bluray

Hi all, I have an issue. I am trying to play blurays with VLC. I have a software (I don't know if I can name it in the forum), which decrypts blurays, so I have no issue with aacs or any encryption that can be on blurays. My issue is one step further : I play the bluray, and I have the feeling that ...
by neonp
22 Jun 2013 15:50
Forum: Web and scripting
Topic: ActiveX windowless in 2.0.7
Replies: 2
Views: 1180

ActiveX windowless in 2.0.7

Dear VLC Team, I am facing an issue I cannot workaround : I have successfully made the vlc web plugin work in google chrome with the windowless parameter. However on IE10 (or lower selected in the dev tools), I cannot have the video output. It seems like the size of the player is resetted to 0. If I...
by neonp
12 Jan 2013 09:34
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6896

Re: Windows 8 Store libVLC development

Hello guys,

Could either JB or Kellen provide some source code to make libvlc work in a metro app ? That would be very helpful to me, and maybe other people.

Thanks a lot,

Nicolas
by neonp
21 Dec 2012 06:54
Forum: Development around libVLC
Topic: Recording & Libvlc
Replies: 1
Views: 833

Re: Recording & Libvlc

Hi,

This topic is quite old, but there still no answer, does it work now ? did you find a workaround ?

I'd like to achieve the exact same thing.

Thanks
by neonp
20 Nov 2012 06:25
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6896

Re: Windows 8 Store libVLC development

D3D is the way to go, though... Hey, Since I cannot find any source code to have the "alpha" of vlc for windows 8. I am trying to achieve the same thing. I am far away from you guys (since it does not run :oops:). But I have a noob question : why do you think D3D is better that D2D ? isn'...
by neonp
16 Jan 2012 14:11
Forum: Development around libVLC
Topic: Allow access to internal video resource
Replies: 1
Views: 294

Allow access to internal video resource

Hi all, I did not if I should post this in this topic or the feature request one. In the next version of VLC (1.2 or 2.0), would it be possible to allow access to internal video resources (like the Direct3D devices and surface, or Direct2D handles), so that the video acceleration could be easily int...
by neonp
24 Jun 2011 21:29
Forum: Development around libVLC
Topic: vmem - YV12 memory layout
Replies: 6
Views: 1249

Re: vmem - YV12 memory layout

It was actually a bug in .Net which could not recognize a void**. With an unsafe method, Works like a charm.

Thanks for your help Rémi. I now have an issue with direct3d, but I guess I should start another topic, right ?
by neonp
19 Jun 2011 19:35
Forum: Development around libVLC
Topic: vmem - YV12 memory layout
Replies: 6
Views: 1249

Re: vmem - YV12 memory layout

Actually, it was vlcdotnet which has incorrect method signature : it was passing planes as a ref instead of an array. I changed it on the source code of vlcdotnet to be an array of IntPtr, but the plane array is ALLOCATED with a size of 1. Any clue ?

--EDIT
by neonp
18 Jun 2011 12:09
Forum: Development around libVLC
Topic: vmem - YV12 memory layout
Replies: 6
Views: 1249

Re: vmem - YV12 memory layout

Thanks for your answer, This is what I have read on http://www.fourcc.org, but I do not understand what vlc expects. Here is what I do, but my application hangs when I do the following : IntPtr y = Marshal.AllocHGlobal((int)(pitches * lines)); IntPtr u = Marshal.AllocHGlobal((int)(pitches * lines/4)...
by neonp
17 Jun 2011 23:51
Forum: Development around libVLC
Topic: render external controls into video output
Replies: 5
Views: 1197

Re: render external controls into video output

I already do for the Interop, but Video has tearing when size is maximized. In the mean time, I discovered SlimDX, which enabled me to reproduce what I needed, with an issue when setting chroma to YV12 (see my other post : viewtopic.php?f=32&t=91314)
by neonp
17 Jun 2011 23:46
Forum: Development around libVLC
Topic: vmem - YV12 memory layout
Replies: 6
Views: 1249

vmem - YV12 memory layout

Hi all, I am using libvlc with vlcdotnet only for its interop wrapper. I have almost rebuilt the direct3D module of VLC in C#, using the version 1.2.0 of a nightly build of VLC. Now the issue I do have is to display a YV12 input to a D3D surface. If in the libvlc_video_set_format_callbacks, I set th...
by neonp
17 Jun 2011 23:34
Forum: Development around libVLC
Topic: vmem to SlimDX
Replies: 1
Views: 1046

Re: vmem to SlimDX

I managed to go a little further with the vlcdotnet library. You can get it at http://vlcdotnet.codeplex.com

Hope this helps.
by neonp
09 Jun 2011 14:10
Forum: Development around libVLC
Topic: render external controls into video output
Replies: 5
Views: 1197

Re: render external controls into video output

Hi,

Did you manage to do so ? I am trying to achieve the same thing : having libvlc_video_set_callbacks with direct3D stuff, but I'm a noob in C. I would like to use this direct3D output to display it in WPF (which has a Direct3D control).

Go to advanced search