Hello people,
I am going to the Open Video Conference, this week-end, in NYC: Open Video Conference .
So if you are in New York, and want to me someone from the VideoLAN team, don’t hesitate to contact me!
Thursday, June 18 2009
By JBK on Thursday, June 18 2009, 18:34 - VideoLAN
Hello people,
I am going to the Open Video Conference, this week-end, in NYC: Open Video Conference .
So if you are in New York, and want to me someone from the VideoLAN team, don’t hesitate to contact me!
Thursday, May 28 2009
By JBK on Thursday, May 28 2009, 14:14 - VideoLAN
VLC 1.0.0 RC2 (Second Release Candidate) is out!
As all releases of VLC 1.0.0, it introduces:
And there is a Skins2 contest going on!
Please spread the news!
Saturday, May 23 2009
By JBK on Saturday, May 23 2009, 11:09 - VideoLAN
You may have followed the ongoing dispute around last.fm. You may also have no idea what scrobbling is (it is a way to post the music names what you listen to).
Some alternative exists.
VLC since 0.9.x can scrobble on all platforms to last.fm database and website. Since it was cool addition, and VLC gets more and more audio support, this seemed a good idea and people liked it.
Some of you know the alternative to last.fm: libre.fm. It is a free software platform that gets your scrobble and will display them, like last.fm.
So far, it is VERY limited compared to last.fm
VLC 1.0.0 is able to be configured to scrobble to any scrobbler (like libre.fm): Configuration of VLC to use libre.fm.
So far, the default stays on last.fm, but the possibility to scrobble to something else is here. We will see how the future goes.
Do as your heart tells you and share your music!
By JBK on Saturday, May 23 2009, 10:36 - VideoLAN
Well, we have a very easy howto for you: libVLC in Qt .
This will output the video inside the widget that you want using QWidget::winId() method.
This has been tested on Linux and Windows, using libVLC 0.9.9.
If you can't build your application easily, remember to install libvlc-dev or to use the SDK for windows from the .zip files of the releases!
Don't hesitate to complete this!
Thursday, April 30 2009
By JBK on Thursday, April 30 2009, 08:19 - VideoLAN
I receive many questions about using an IDE to build VLC.
Usually, the answer is VIM. But I will try to introduce something else today.
Yeah, VIM is TEH awesome, but sometimes we would like more. But usually, more is slow, incomplete and boring...
Would you want an editor with:
I guess so!
Believe it or not, there is a solution: QtCreator from Nokia/QtSoftware that I have tested to work with VLC.
Even if you don't think this will be useful for you, at least read in diagonale the following post.
`apt-get install qtcreator` in Debian/Sid

For the example, I assume that you build your vlc in a "build" subdir of the source (as xtophe usually gives advice)
* File->New Select 'Import of Makefile-based Project'- Project Name 'VLC' Location '/home/you/vlc' and Choose, Next- Let it process... It should take around 1minute Finish.
QtCreator will have done VLC.includes VLC.creator, VLC.files and a VLC.config in your vlc/ folder.
Overwrite the VLC.includes and the VLC.files with the one you can find:
Doing this will gain you some time. Those could be auto-generated one day, I guess...
Cool. But that was just a minimum...
Open modules/codec/avcodec/audio.c from the file browser and see... You are using VIM commands to control. You have Visual, Edit and all usual VIM modes!
It will stop at your breakpoint and you will have the function call lists (and line numbers) but also pointers values (like p_intf, and this in main_interface.cpp)

You can, of course Step In, Step Into and Step Out, resume or stop the code
Use the locate search box to find quick declarations:
'm vlc_object_act' will help you to go quickly to the method declaration, etc...
Use the Git menu to checkout from within QtCreator.
The indexing shouldn't be too long, but could be a bit longer the first time you launch the project!
Have fun!
Sunday, April 19 2009
By JBK on Sunday, April 19 2009, 22:51 - VideoLAN
I know Phoronix people don't come around here, and that most people reading this blog don't care, but anyway...
On linux, decoding video using GPU means different standards:
Fortunately, we can use VDPAU (nVidia) as a backend to VAAPI. And there is a very nice library, named libva.
So far, most patches were done on MPlayer and FFmpeg, but here we go:
The sample is a M2TS with H.264 encoded at 32Mbps. Decoding is done without audio and subs and with a command line interface.
The perfs are quite nice, but they might be better. Why?
Because we don't output directly the video, we just take it back from the decoder, so we have a lot of memcpy, which explains why the decoding could be faster, but isn't...
In theory, yes. Not tested yet :D
« previous entries - page 1 of 30