I need some help with miniprojects,i'm a new programmer,

This forum is about all development around libVLC.
marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 24 Aug 2009 01:44

Hi!
At first, sorry for my bad english, i'm working for write it better.

I'm a student who tries to collaborate with videolan.I try to collaborate doing the best i can do. I've programmed in C++ during this year, and I try to do any miniproject of VLC.

I've read a lot, but i have no idea of the steps i have to follow to start building VLC.

Can you help me please??

Thanks!!Reggards!

Marcel
Last edited by marcel.tella on 07 Sep 2009 15:00, edited 1 time in total.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: I need some help with miniprojects,i'm a new programmer,

Postby Jean-Baptiste Kempf » 24 Aug 2009 10:17

OS ?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

Re: I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 07 Sep 2009 15:00

Linux and Windows xp in different computers

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: I need some help with miniprojects,i'm a new programmer,

Postby Jean-Baptiste Kempf » 07 Sep 2009 23:09

Cool, compile VLC on Linux (debian or ubuntu prefered :D) and tell us when you are done :D
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

Re: I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 08 Sep 2009 11:31

I've already comliped VLC. I've compiled it with this commands:

wget http://download.videolan.org/pub/videol ... .6b.tar.gz

Then, i've moved vlc to my desktop.

cd Desktop

tar xvfz vlc-0.8.6b.tar.gz


cd vlc-0.8.6.tar.gz


sudo apt-get build-dep vlc


Now, What I have to do?


Thanks!!

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: I need some help with miniprojects,i'm a new programmer,

Postby Jean-Baptiste Kempf » 08 Sep 2009 18:03

no, please use 1.1-git

Git
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

Re: I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 09 Sep 2009 13:08

What? what is 1.1-git?

MCyr
Blank Cone
Blank Cone
Posts: 21
Joined: 07 Aug 2009 16:07
VLC version: 1.1.0-git
Operating System: Linux

Re: I need some help with miniprojects,i'm a new programmer,

Postby MCyr » 09 Sep 2009 19:17

You need to get git which is a revision control tool. Something like

Code: Select all

sudo apt-get git
should do that for you.

Then once git is installed, you need to clone the vlc repository.
Issue

Code: Select all

git clone git://git.videolan.org/vlc.git
in the directory where you want to hold the vlc source tree.

You now have a clone of the whole source of VLC. Next you need bootstrap, configure and compile the whole thing. Here's a quick overview of the commands but you might need to tweak the configure parameters to suit your system/build needs.

Code: Select all

cd vlc ./bootstrap ./configure make sudo make install
Depending on your system and architecture, your configure line might change as I said. Check ./configure --help for all the details. For example, on my Fedora 11 on an AMD64 arch, I mostly wanted libvlc and modules, not caring about the VLC gui, my configure was

Code: Select all

./configure --prefix=/usr --libdir=/usr/lib64 --disable-qt4 --disable-skins2
PS. Now that you have git, you can keep the source tree in sync with the "master" tree. In the source tree folder, just do a

Code: Select all

git pull
and reconfigure/recompile.

Cheers,
Hope you have fun messing around with VLC.

marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

Re: I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 17 Sep 2009 21:30

All right until the command ./configure, this command is invalid in my Ubuntu 9.04 Jaunty Jackalope.

I've entered in ~/vlc directory, and I've seen some files whitch include the word config:vlc-config, configure.ac, I think that this last file is that i want to compile, but i don't know.

Could someone tell me what I have to do?

Thanks!!
Regards!

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: I need some help with miniprojects,i'm a new programmer,

Postby Jean-Baptiste Kempf » 18 Sep 2009 11:47

make?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

marcel.tella
Blank Cone
Blank Cone
Posts: 19
Joined: 24 Aug 2009 01:34

Re: I need some help with miniprojects,i'm a new programmer,

Postby marcel.tella » 21 Sep 2009 20:03

Thanks for all, my problems had been solved compiling some packages which VLC needs.


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 34 guests