[gst-devel] combine movie clips???

Ntantis, Ioannis Ioannis.Ntantis at nissan-nmuk.co.uk
Thu Feb 8 12:03:10 CET 2007


I need to combine the clips in the command line though or through
executing a script...

Does gstreamer or pitivi provide a command line API which will let me
combine two movie clips and make them one???



-----Original Message-----
From: gstreamer-devel-bounces at lists.sourceforge.net
[mailto:gstreamer-devel-bounces at lists.sourceforge.net] On Behalf Of
gstreamer-devel-request at lists.sourceforge.net
Sent: 08 February 2007 10:48
To: gstreamer-devel at lists.sourceforge.net
Subject: gstreamer-devel Digest, Vol 9, Issue 7

Send gstreamer-devel mailing list submissions to
	gstreamer-devel at lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
or, via email, send a message with subject or body 'help' to
	gstreamer-devel-request at lists.sourceforge.net

You can reach the person managing the list at
	gstreamer-devel-owner at lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of gstreamer-devel digest..."


Today's Topics:

   1. Re: plugin cannot be encapsulated in a bin (Benoit Fouet)
   2. Re: plugin cannot be encapsulated in a bin (Benoit Fouet)
   3. Re: problem in installing mpeg2enc (Tim M?ller)
   4. combine movie clips with gstreamer???? (Ntantis, Ioannis)
   5. Re: combine movie clips with gstreamer???? (Edward Hervey)
   6. combine clips with gstreamer???? (Ntantis, Ioannis)


----------------------------------------------------------------------

Message: 1
Date: Thu, 08 Feb 2007 09:46:12 +0100
From: Benoit Fouet <benoit.fouet at purplelabs.com>
Subject: Re: [gst-devel] plugin cannot be encapsulated in a bin
To: Diqing Zhong <diqing.zhong at gmail.com>
Cc: gstreamer-devel at lists.sourceforge.net
Message-ID: <45CAE354.40409 at purplelabs.com>
Content-Type: text/plain; charset=ISO-8859-15

Diqing Zhong wrote:
> Hi all,
>  
> I'm developed a deocder plugin, connect with other elements (demux,
> videosink... ) and it works well.
> But while I add this plugin into a bin and ghost its src and sink
> pads, link this bin as before, it does not work...
>  
> e.g.,
> the pipes
> Pipe1: decoder->videosink
> and
> Pipe2: bin(containing decoder)->videosink
>  
> should be equivalent.
>
> However the Pipe2 connection does not work.
>  
> I debugged and found that in decoder element chain_function, the
> buffer received are all with 0 size. So is there anything I should do
> in the plugin to support this??
>  
this is hard to see if we can be of help without seeing what you wrote
down in your app for instance...
could you please post the code in which you use a bin to encapsulate
your element ?

Ben




------------------------------

Message: 2
Date: Thu, 08 Feb 2007 10:19:58 +0100
From: Benoit Fouet <benoit.fouet at purplelabs.com>
Subject: Re: [gst-devel] plugin cannot be encapsulated in a bin
To: Diqing Zhong <diqing.zhong at gmail.com>
Cc: gstreamer-devel at lists.sourceforge.net
Message-ID: <45CAEB3E.9060904 at purplelabs.com>
Content-Type: text/plain; charset=ISO-8859-15

Hi,
(please keep list in copy... the more, the merrier ;) )

Diqing Zhong wrote:
> Hi,
>  
> Here's the code, thanks so much for the help.  
>  
>  - Max
>  
>
------------------------------------------------------------------------
-------------------
>     static GstElement *decbin     = NULL;
>     static GstElement *video_decode     = NULL;
>
>     video_decode=gst_element_factory_make("mpeg2_video_dec", NULL);
>     decbin = gst_bin_new("decbin");
>     if ( gst_bin_add(GST_BIN(decbin), video_decode) == FALSE) {
>           g_print("Error add video decode to bin"); 
>     }
>
>     GstPad *video_decode_sinkpad;
>     video_decode_sinkpad = gst_element_get_pad(video_decode, "sink");
>     if (gst_element_add_pad (decbin, gst_ghost_pad_new ("sink",
> video_decode_sinkpad)) == FALSE) {
>           g_print("Error gst element add sink pad"); 
>     }
>
do you link your sink pad with anything ?

>     GstPad *video_decode_srcpad;
>     video_decode_srcpad = gst_element_get_pad(video_decode, "src");
>     if (gst_element_add_pad (decbin, gst_ghost_pad_new ("src",
> video_decode_srcpad))== FALSE) {
>           g_print("Error gst element add source pad"); 
>     }
>
>     gst_object_unref (GST_OBJECT (video_decode_sinkpad));
>     gst_object_unref (GST_OBJECT (video_decode_srcpad));
>
>     gst_bin_add_many(GST_BIN(bin), decbin, video_sink, NULL);
>
>     if(gst_element_link(decbin, video_sink) == FALSE) {
>         g_print("Error linking decbin->video_sink\n");
>         g_assert(0);
>     }
>
Ben




------------------------------

Message: 3
Date: Thu, 08 Feb 2007 09:54:43 +0000
From: Tim M?ller <t.i.m at zen.co.uk>
Subject: Re: [gst-devel] problem in installing mpeg2enc
To: gstreamer-devel at lists.sourceforge.net
Message-ID: <1170928483.26921.7.camel at sceptic>
Content-Type: text/plain

On Thu, 2007-02-08 at 05:55 +0000, Rupam wrote:

> I am trying to install mpeg2enc from gst-plugins-bad-0.10.4. On doing
> ./configure --prefix=/usr  i get the following message
> configure: *** checking feature: mpeg2enc ***
> configure: *** for plug-ins: mpeg2enc ***
> checking for MPEG2ENC... configure: *** These plugins will not be
> built: mpeg2enc

The latest 1.8.x libmjpegtools release didn't include a required header
file (mpeg2enc/mpeg2syntaxcodes.h), so if you don't have that installed,
we won't build the plugin. Some distros have fixed their packages to
include it, others haven't.

In general, the config.log file will usually give you more information
about what exactly the configure script checked for and what failed.

 Cheers
  -Tim





------------------------------

Message: 4
Date: Thu, 8 Feb 2007 10:37:45 -0000
From: "Ntantis, Ioannis" <Ioannis.Ntantis at nissan-nmuk.co.uk>
Subject: [gst-devel] combine movie clips with gstreamer????
To: <gstreamer-devel at lists.sourceforge.net>
Message-ID:
	
<52B4797FC691074DA53EB7B9B38391E6014A2CD8 at UK-EX-MB-001-A.NMCorp.Nissan.B
iz>
	
Content-Type: text/plain; charset="us-ascii"

Hi,

 

I would like to know if I could be able with gstreamer to combine to
movie clips, or a movie and a sound clip.

 

For example if I got two .avi files am I able to combine them and
produce a final .avi file which includes both of them?

 

Or if I got an mp3 file and a .avi file am I able to combine these with
gstreamer?

 

IF yes could you please point me to where I can find information about
how to do this as I have gone through the manual and I am not able to
see where it talks about it.

 

 

Regards,

Ioannis

 

 



************************************************************************
***********************************
CONFIDENTIALITY NOTICE
 
This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information.
 
If you receive this message in error, please immediately delete it and
all copies of it from your system, destroy any hard copies of it and
notify us by email to email.security at nissan-europe.com with a copy of
this message. You must not, directly or indirectly, use, disclose,
distribute, print or copy any part of this message if you are not the
intended recipient. NISSAN EUROPE and any of its subsidiaries each
reserves the right to monitor all e-mail communications through its
networks.
 
NISSAN EUROPE is neither liable for the proper, complete transmission of
the information contained in this communication nor any delay in its
receipt. This email was scanned for the presence of computer viruses. In
the unfortunate event of infection NISSAN EUROPE does not accept
liability.
 
Any views expressed in this message are those of the individual sender,
except where the message states otherwise and the sender is authorised
to state them.

************************************************************************
***********************************


-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

Message: 5
Date: Thu, 8 Feb 2007 11:40:55 +0100
From: "Edward Hervey" <bilboed at gmail.com>
Subject: Re: [gst-devel] combine movie clips with gstreamer????
To: "Ntantis, Ioannis" <Ioannis.Ntantis at nissan-nmuk.co.uk>
Cc: gstreamer-devel at lists.sourceforge.net
Message-ID:
	<1bc590e20702080240i1948ba81k3a3b447b4655a6b5 at mail.gmail.com>
Content-Type: text/plain; charset=UTF-8; format=flowed

Hi,

  You can use the PiTiVi video editor to combine several videos
together. It should work fine with latest 0.10.2 version. You can find
more information on the website : www.pitivi.org

  Regards,

    Edward

On 2/8/07, Ntantis, Ioannis <Ioannis.Ntantis at nissan-nmuk.co.uk> wrote:
>
>
>
>
> Hi,
>
>
>
> I would like to know if I could be able with gstreamer to combine to
movie
> clips, or a movie and a sound clip.
>
>
>
> For example if I got two .avi files am I able to combine them and
produce a
> final .avi file which includes both of them?
>
>
>
> Or if I got an mp3 file and a .avi file am I able to combine these
with
> gstreamer?
>
>
>
> IF yes could you please point me to where I can find information about
how
> to do this as I have gone through the manual and I am not able to see
where
> it talks about it.
>
>
>
>
>
> Regards,
>
> Ioannis
>
>
>
>
>
>
************************************************************************
***********************************
> CONFIDENTIALITY NOTICE
>
> This message is for the named person's use only.  It may contain
> confidential, proprietary or legally privileged information.
>
> If you receive this message in error, please immediately delete it and
all
> copies of it from your system, destroy any hard copies of it and
notify us
> by email to email.security at nissan-europe.com with a copy of
> this message. You must not, directly or indirectly, use, disclose,
> distribute, print or copy any part of this message if you are not the
> intended recipient. NISSAN EUROPE and any of its subsidiaries each
reserves
> the right to monitor all e-mail communications through its networks.
>
> NISSAN EUROPE is neither liable for the proper, complete transmission
of the
> information contained in this communication nor any delay in its
receipt.
> This email was scanned for the presence of computer viruses. In the
> unfortunate event of infection NISSAN EUROPE does not accept
liability.
>
> Any views expressed in this message are those of the individual
sender,
> except where the message states otherwise and the sender is authorised
to
> state them.
>
************************************************************************
***********************************
>
>
------------------------------------------------------------------------
-
> Using Tomcat but need to do more? Need to support web services,
security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
>
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> gstreamer-devel mailing list
> gstreamer-devel at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>
>


-- 
Edward Hervey
Multimedia editing developer / Fluendo S.A.
http://www.pitivi.org/



------------------------------

Message: 6
Date: Thu, 8 Feb 2007 10:47:17 -0000
From: "Ntantis, Ioannis" <Ioannis.Ntantis at nissan-nmuk.co.uk>
Subject: [gst-devel] combine clips with gstreamer????
To: <gstreamer-devel at lists.sourceforge.net>
Message-ID:
	
<52B4797FC691074DA53EB7B9B38391E6014A2D13 at UK-EX-MB-001-A.NMCorp.Nissan.B
iz>
	
Content-Type: text/plain; charset="us-ascii"

Hi,

 

I would like to know if I could be able with gstreamer to combine to
movie clips, or a movie and a sound clip.

 

For example if I got two .avi files am I able to combine them and
produce a final .avi file which includes both of them?

 

Or if I got an mp3 file and a .avi file am I able to combine these with
gstreamer?

 

IF yes could you please point me to where I can find information about
how to do this as I have gone through the manual and I am not able to
see where it talks about it.

 

 

Regards,

Ioannis

 

 

 



************************************************************************
***********************************
CONFIDENTIALITY NOTICE
 
This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information.
 
If you receive this message in error, please immediately delete it and
all copies of it from your system, destroy any hard copies of it and
notify us by email to email.security at nissan-europe.com with a copy of
this message. You must not, directly or indirectly, use, disclose,
distribute, print or copy any part of this message if you are not the
intended recipient. NISSAN EUROPE and any of its subsidiaries each
reserves the right to monitor all e-mail communications through its
networks.
 
NISSAN EUROPE is neither liable for the proper, complete transmission of
the information contained in this communication nor any delay in its
receipt. This email was scanned for the presence of computer viruses. In
the unfortunate event of infection NISSAN EUROPE does not accept
liability.
 
Any views expressed in this message are those of the individual sender,
except where the message states otherwise and the sender is authorised
to state them.

************************************************************************
***********************************


-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

------------------------------------------------------------------------
-
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

------------------------------

_______________________________________________
gstreamer-devel mailing list
gstreamer-devel at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


End of gstreamer-devel Digest, Vol 9, Issue 7
*********************************************




More information about the gstreamer-devel mailing list