Integrate gstreamer with Eclipse IDE
I'm new to gstreamer, currently I'm using Ubuntu 13.10 desktop, I followed the gstreamer site to install the sdk.
I wrote some gstreamer based programs using gedit and compiled using terminal. If I stuck with some bug I need to manually found out the issue. It looks I'm spending bunch of hours for debugging itself.
My question is there any IDE available for gstreamer? Or else is it possible to add the gstreamer to the Eclipse IDE?
eclipse gstreamer ubuntu-13.10
add a comment |
I'm new to gstreamer, currently I'm using Ubuntu 13.10 desktop, I followed the gstreamer site to install the sdk.
I wrote some gstreamer based programs using gedit and compiled using terminal. If I stuck with some bug I need to manually found out the issue. It looks I'm spending bunch of hours for debugging itself.
My question is there any IDE available for gstreamer? Or else is it possible to add the gstreamer to the Eclipse IDE?
eclipse gstreamer ubuntu-13.10
add a comment |
I'm new to gstreamer, currently I'm using Ubuntu 13.10 desktop, I followed the gstreamer site to install the sdk.
I wrote some gstreamer based programs using gedit and compiled using terminal. If I stuck with some bug I need to manually found out the issue. It looks I'm spending bunch of hours for debugging itself.
My question is there any IDE available for gstreamer? Or else is it possible to add the gstreamer to the Eclipse IDE?
eclipse gstreamer ubuntu-13.10
I'm new to gstreamer, currently I'm using Ubuntu 13.10 desktop, I followed the gstreamer site to install the sdk.
I wrote some gstreamer based programs using gedit and compiled using terminal. If I stuck with some bug I need to manually found out the issue. It looks I'm spending bunch of hours for debugging itself.
My question is there any IDE available for gstreamer? Or else is it possible to add the gstreamer to the Eclipse IDE?
eclipse gstreamer ubuntu-13.10
eclipse gstreamer ubuntu-13.10
edited Jan 7 '14 at 7:37
Sathyajith Bhat♦
53k29157253
53k29157253
asked Jan 7 '14 at 4:46
linxbuddylinxbuddy
113
113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To develop Gstreamer plugins or Applications?
If you want to develop applications using GlibC with Eclipse CDT IDE, then follow this
You should have glib-2.0 or higher and gstreamer-1.0 or gstreamer-0.10 or higher ver
- Create a C project with Linux GCC || Cross GCC compiler.
- Right click on the project that you just created from the project explorer and
select properties.
In C/C++ Build -> settings --> Tool Settings tab
and in the include section add following lines to -I
/usr/lib/x86_64-linux-gnu/glib-2.0/include
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
in the libraries down in the linker section add following lines to -l
glib-2.0
gstnet-1.0
gstbase-1.0
gstcheck-1.0
gstreamer-1.0
gstcontroller-1.0
Click Ok, and enjoy, Happy Coding ;)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f697958%2fintegrate-gstreamer-with-eclipse-ide%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To develop Gstreamer plugins or Applications?
If you want to develop applications using GlibC with Eclipse CDT IDE, then follow this
You should have glib-2.0 or higher and gstreamer-1.0 or gstreamer-0.10 or higher ver
- Create a C project with Linux GCC || Cross GCC compiler.
- Right click on the project that you just created from the project explorer and
select properties.
In C/C++ Build -> settings --> Tool Settings tab
and in the include section add following lines to -I
/usr/lib/x86_64-linux-gnu/glib-2.0/include
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
in the libraries down in the linker section add following lines to -l
glib-2.0
gstnet-1.0
gstbase-1.0
gstcheck-1.0
gstreamer-1.0
gstcontroller-1.0
Click Ok, and enjoy, Happy Coding ;)
add a comment |
To develop Gstreamer plugins or Applications?
If you want to develop applications using GlibC with Eclipse CDT IDE, then follow this
You should have glib-2.0 or higher and gstreamer-1.0 or gstreamer-0.10 or higher ver
- Create a C project with Linux GCC || Cross GCC compiler.
- Right click on the project that you just created from the project explorer and
select properties.
In C/C++ Build -> settings --> Tool Settings tab
and in the include section add following lines to -I
/usr/lib/x86_64-linux-gnu/glib-2.0/include
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
in the libraries down in the linker section add following lines to -l
glib-2.0
gstnet-1.0
gstbase-1.0
gstcheck-1.0
gstreamer-1.0
gstcontroller-1.0
Click Ok, and enjoy, Happy Coding ;)
add a comment |
To develop Gstreamer plugins or Applications?
If you want to develop applications using GlibC with Eclipse CDT IDE, then follow this
You should have glib-2.0 or higher and gstreamer-1.0 or gstreamer-0.10 or higher ver
- Create a C project with Linux GCC || Cross GCC compiler.
- Right click on the project that you just created from the project explorer and
select properties.
In C/C++ Build -> settings --> Tool Settings tab
and in the include section add following lines to -I
/usr/lib/x86_64-linux-gnu/glib-2.0/include
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
in the libraries down in the linker section add following lines to -l
glib-2.0
gstnet-1.0
gstbase-1.0
gstcheck-1.0
gstreamer-1.0
gstcontroller-1.0
Click Ok, and enjoy, Happy Coding ;)
To develop Gstreamer plugins or Applications?
If you want to develop applications using GlibC with Eclipse CDT IDE, then follow this
You should have glib-2.0 or higher and gstreamer-1.0 or gstreamer-0.10 or higher ver
- Create a C project with Linux GCC || Cross GCC compiler.
- Right click on the project that you just created from the project explorer and
select properties.
In C/C++ Build -> settings --> Tool Settings tab
and in the include section add following lines to -I
/usr/lib/x86_64-linux-gnu/glib-2.0/include
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
in the libraries down in the linker section add following lines to -l
glib-2.0
gstnet-1.0
gstbase-1.0
gstcheck-1.0
gstreamer-1.0
gstcontroller-1.0
Click Ok, and enjoy, Happy Coding ;)
answered Mar 3 '14 at 6:56
Sravan USravan U
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f697958%2fintegrate-gstreamer-with-eclipse-ide%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown