[Bug 666898] New: cut file with GES

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Tue Dec 27 01:42:14 PST 2011


https://bugzilla.gnome.org/show_bug.cgi?id=666898
  GStreamer | gst-editing-services | git

           Summary: cut file with GES
    Classification: Platform
           Product: GStreamer
           Version: git
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-editing-services
        AssignedTo: gstreamer-bugs at lists.freedesktop.org
        ReportedBy: anthony.violo at ubicast.eu
         QAContact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---


Hello,

I used GES to cut a mkv file that encoding mjpeg.
I used this line to cut my file. The video duration was around 4h.
and I would like to cut 5 seconds.
I have ubuntu 10.04 with kernel 2.6.32-32-generic-pae.

./ges-launch-0.10 original.mkv 0 5 -r -o file:///home/anthony/cut.mkv 

I met two problems.

========================================================================
The first one i can't open video file because the file was more than 2GO.
To open the file i must to modify ges.c

gstreamer code :
{{{
  FILE *fp = fopen (path, "rb");
  if (fp) {
    fclose (fp);
    return TRUE;
  }
  return FALSE;
}}}

My code :
{{{
int fd = open(path, O_RDONLY);
if (fd) {
    close (fd);
    return TRUE;
  }
  return FALSE;
}}}
with my code, i can open the file that are more than 2GO.
=========================================================================
The second one after the cut it's over, the pipeline don't send EOS whereas the
cut it's over.
I must to kill processus to finish the cut.

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


More information about the gstreamer-bugs mailing list