[gstreamer-bugs] [Bug 341435] New: Gaps not played if gnlfilesources are timed apart

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Thu May 11 09:06:43 PDT 2006


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=341435
 GStreamer | gnonlin | Ver: HEAD CVS

           Summary: Gaps not played if gnlfilesources are timed apart
           Product: GStreamer
           Version: HEAD CVS
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gnonlin
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: gnome at jonobacon.org
         QAContact: bilboed at bilboed.com
     GNOME version: 2.13/2.14
   GNOME milestone: Unspecified


Please describe the problem:
I have written a script that plays three bits of audio with a couple of seconds
gap between them. With the current gnonlin HEAD, the gaps are not played and
instead the three clips are played one after the other without the gap.

These are my gnlfilesource properties:

                self.ins1 = Instrument(self, 1)
                self.event1 =
Event("/home/jono/media/audioforjokosher/spheres.mp3", 1)
                self.event1.audio.set_property("start", 0 * gst.SECOND)
                self.event1.audio.set_property("duration", 2 * gst.SECOND)
                self.event1.audio.set_property("media-start", 80 * gst.SECOND)
                self.event1.audio.set_property("media-duration", 2 *
gst.SECOND)
                self.ins1.addEvent(self.event1)

                self.event2 =
Event("/home/jono/media/audioforjokosher/alive.mp3", 2)
                self.event2.audio.set_property("start", 7 * gst.SECOND)
                self.event2.audio.set_property("duration", 2 * gst.SECOND)
                self.event2.audio.set_property("media-start", 130 * gst.SECOND)
                self.event2.audio.set_property("media-duration", 2 *
gst.SECOND)
                self.ins1.addEvent(self.event2)

                self.event3 =
Event("/home/jono/media/audioforjokosher/seed.mp3", 3)
                self.event3.audio.set_property("start", 12 * gst.SECOND)
                self.event3.audio.set_property("duration", 2 * gst.SECOND)
                self.event3.audio.set_property("media-start", 10 * gst.SECOND)
                self.event3.audio.set_property("media-duration", 2 *
gst.SECOND)
                self.ins1.addEvent(self.event3)

Steps to reproduce:
1. Specify a time gap between gnlfilesources.
2. 
3. 


Actual results:
The audio is played one after other, with no gap.

Expected results:
The time between two elements where no audio is playing should be silent - at
the moment it is ignored.

Does this happen every time?
Yes.

Other information:


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.




More information about the Gstreamer-bugs mailing list