-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
work with lib-dash #1
Comments
Hello staysag, I think it will be very hard, if possible, and not straightforward to include the library in a 'c' project. You might have to compile it and call it using your 'c' program. On the other hand it is relatively easy to include it in a c++ project. Use the included example as a template - there is one for unix as well as windows. The player is very basic, though you can use your own. I'd advise you to get MSVC 2010 and open the libdash solution, run it and take it from there. Note, if you decide to get VS Express 2012 you might need to download some MSVC redistributables as it doesn't contain all the dlls required to run this libdash as is. Note: I forked this from bitmovin, who are experts at MPEG-DASH. Check them out Regards, |
hi papaonlegs thanks for the answer i meant include in c++ (i didn't notice) is there any guide i can use ? thanks |
Hello staysag! We are very pleased that you are interested in libdash. As you can see in README.md, there are some simple steps how you can build libdash in (ubuntu 12.04) linux: sudo apt-get install git-core build-essential cmake libxml2-dev libcurl4-openssl-dev
git clone git://github.com/bitmovin/libdash.git
cd libdash/libdash
mkdir build
cd build
cmake ../
make
cd bin You will now find To use libdash inside eclipse, just make sure that your eclipse CDT project setup will find If you have any further questions, don't hesitate to contact us. Regards, By the way: Stay tuned about libdash development by registering at our libdash-mailing list or visit dash.itec.aau.at and bitmovin.net |
hi i was trying to include libdash.h in my project (without using eclipse) and compile it through the terminal do you know what is the problem ? thanks |
Hi! You probably did not set the Include- and Librarypath. Here is a short example: Assuming you have cloned the libdash repository at
If you want to compile an executable (e.g.
Regards, |
Hello all, erelh@erel: What am i doing wrong? |
Anyone?... |
Can you find libdash.so in |
Yes, it exists. |
hi
can i include the library lib-dash to my c project ?
and how can i do it ?
thanks
The text was updated successfully, but these errors were encountered: