<div>If I understand correctly you want to create multiple files from a single h.264 stream in iOS.</div><div><br></div>If you google "gstreamer multifilesink mp4" you will find some discussion of this in the past. I have not done it but have researched the issue. One problem is that an H.264 stream cannot be easily segmented. You need to decode, split the raw and encode.  The other issue is that each new file requires the muxer to be reinitialized.  So the solution ends up being like starting a new file each time anyway, therefore you don't need multifilesink. What you need is a program that can carefully redirect the raw stream from an old encoder and muxer to a new one every so often.  <div>

<br></div><div><div><b>Mike Mitchell</b><br><br>On Sun, Oct 7, 2012 at 12:24 AM, dean <span dir="ltr"><<a href="mailto:deanan@gmail.com" target="_blank">deanan@gmail.com</a>></span> wrote:<br><div class="gmail_quote">

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Has anyone gotten multifilesink with h.264 in an mpeg.ts to work playback in<br>
iOS?<br>
<br>
Single mp4s work but multiple or single mpeg.ts doesn't.<br>
<br>
Any tips on how to make compatible multifilesink .ts files for iOS?<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/mpeg-ts-and-multifilesink-tp4656497.html" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/mpeg-ts-and-multifilesink-tp4656497.html</a><br>


Sent from the GStreamer-devel mailing list archive at Nabble.com.<br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</blockquote></div><br></div></div>