HI,<div><br></div><div>well, as the log says: "not negotiated". Each time that you plays another file the decodebin will create new pads for the decoding. You will plug those pads. At the beginning all the pipeline will negotiated all the caps which will flow through all the pads. The problem arises the first time that you change the file, since the decodebin will try to output some caps through the new pads, but the rest of the pipeline has already got the caps, so if the new file is not of the exactly same type than the old one you will have that error. Solution? Easy. Adapt those caps. Put after the decodebin some elements which will adapt the caps. For example for video it means adapting frame rate, video width and height and maybe the color space. Watch out with the frame rate. Increasing the frame rate or audio's sample rate ( oversampling) is not a problem since it's an excess of information, but doing the opposite ( undersampling) could bring to you some consequences not very nice ( you can watch jumps inside a video or hear cuts in the audio). Adding those elements implies that at the same time that you put the filesrc and the decodebin to NULL you must also put those elements to NULL to force the renegotiation.</div>
<div><br></div><div>Tell me if you have some other problem.</div><div><br></div><div>SERGIO</div><div><br><div class="gmail_quote">2013/7/29 Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Thank you for answer,<div> I have tried change the location in the thread and now I have only one error:<div>
<br></div><div>Error: GStreamer encountered a general stream error. qtdemux.c(3891): gst_qtdemux_loop (): /GstPipeline:player/GstDecodeBin2:decoder/GstQTDemux:qtdemux0:</div>
<div>streaming stopped, reason not-negotiated</div><div><br></div><div>I just put to STATE_NULL decodebin2 and filesrc, change location, and put them back to play.</div><div><br></div><div>Thank you for your help</div><div>

 </div></div><div><div class="h5"><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/29 Sergio Ortega <span dir="ltr"><<a href="mailto:sortegagamero@gmail.com" target="_blank">sortegagamero@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
What kind of errors have you got? Could you put here the logs?<div><br></div><div>When do you have to change the location? Well, basically when you want. If you want to play a video until its end then you have to wait for the EOS event. If you want to do it at second 20, then you must wait for the corresponding DTS buffer. I forgot to tell you one thing. You can't do a seek or set to NULL an element from within the event probe. You must start a thread ( usually a pthread or a GTask) and do it from outside of the probe. Of course the probe must wait for the operation, so that also implies using a semaphore. <br>


<br>You're welcome!<span><font color="#888888"><br><br>SERGIO</font></span><div><div><br>
<br><div class="gmail_quote">2013/7/29 Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">



<div dir="ltr">Thank you for so detailed explanation, I am not much familiar with gstreamer so I don't understand some things. I was able to add event hendler  and got all events. I was able to block and modify segment events. But I can't understand when exactly I need to change the location, I get two EOS events for video and audio. So when I am changing location in any of them I got many errors. <div>




Thank you</div></div><div><div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/26 Sergio Ortega <span dir="ltr"><<a href="mailto:sortegagamero@gmail.com" target="_blank">sortegagamero@gmail.com</a>></span><br>




<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<div><br></div><div>What you are trying to do is simulating a live from a file, aren't you? You don't want to break the tcpserversink connection when you change the filesrc's location. Then you must do the next thing. You must install a pad-probe outside the decodebin or whatever demuxer you use. That pad probe must do several things. </div>





<div><br></div><div>The first one is modifying the first segment event. That event will have the video's original duration. It must be modified to have 0 as start and -1 as end. In such way you won't let the final muxer to know the duration, and it will assume that video has no end ( you can, of course, put whatever duration you wan, of course, for example half of the first video and the whole of the second one). </div>





<div><br></div><div>The second one is blocking the rest segment events which you will have when you replace the location. We will see later how to replace it.</div><div><br></div><div>The third thing is blocking the flush events.</div>





<div><br></div><div>The fourth thing is blocking the EOS events ( if you want to play a video until the end, of course).</div><div><br></div><div>The fifth thing ( and this is very important) is modifying the  buffer's PTS and DTS. Several muxers ( like mp4mux or oggmux) will multiplex a video and an audio depending on each PTS and DTS frame. If they detect that repeated PTS's or DTS's, they will discard the buffer, so in the best case you will see the video delayed ( in the worst you will see nothing but errors in the logs). Think that video and audio have their own PTS's and DTS's, but they are related when you replace a file ( at the end both files must maintain the synchronization).</div>





<div><br></div><div>And now how to change a file. First of all emit a flush start and a flush end in the filesrc to clean the buffers. After it, put filesrc and the demuxer or the decodebin to NULL, change filesrc's location and put those elements again into PLAYING state.</div>





<div><br></div><div>Watch out with the events and the DTS's!!</div><div><div><div><br><div class="gmail_quote">2013/7/26 Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span><br>





<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I think the second option with locking might help me but I don't understand how to use it.</div><div>





<div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/25 Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Just investigated and found that after changing location, stream begins with new webm header. So Is it possible to create one stream from several files?</div>






<div><div><div class="gmail_extra"><br><br><div class="gmail_quote">
2013/7/25 Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">







<div dir="ltr">Thank you,<div>I have tried with state READY and thought it don't work, but problem wasn't in connection. Looks like when file reaches end, gstreamer sends some end information, or there is some gap between streams or something else. Because connections still alive, but video didn't displays in browser, it begin playing again after refresh(reconnect)</div>









</div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/25 Stirling Westrup <span dir="ltr"><<a href="mailto:swestrup@gmail.com" target="_blank">swestrup@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">







<div><div>
<div dir="ltr"><div class="gmail_extra"><div><div class="gmail_quote">On Thu, Jul 25, 2013 at 6:44 AM, Serhiy Stetskovych <span dir="ltr"><<a href="mailto:patriotyk@gmail.com" target="_blank">patriotyk@gmail.com</a>></span> wrote:<br>









<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Hello, I have a problem with changing media file in filesrc. After finishing playing one file I get event and in this point I need change media file to another but without breaking clients connected to tcpserversink. I can change file only after setting STATE_NULL, and  then setting back to STATE_PLAYING. But this breaks all my connections.</div>










<div><br></div><div>Actually I use multifdsink with writing to sockets, but in explanation above I wrote about tcpserversink because It is easier to explain, but I think it doesnt matter.</div><a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank"></a><br>









</div></blockquote></div></div>You have two options. First, you can change the media file in filesrc when you are in STATE_READY rather than STATE_NULL. You only really need to go into STATE_NULL when you are about to dismantle your pipeline (ie for program cleanup).<br>









<br></div><div class="gmail_extra">If for some reason you have to put filesrc in a state that causes your sink to perform an action you don't like, you can LOCK the state of the sink so it ignores requests to change state. This is done with one of the gst_element_... function calls.<br>









<br></div><div class="gmail_extra"><br>--<br>Stirling Westrup<br>Programmer, Entrepreneur.<br><a href="https://www.linkedin.com/e/fpf/77228" target="_blank">https://www.linkedin.com/e/fpf/77228</a><br><a href="http://www.linkedin.com/in/swestrup" target="_blank">http://www.linkedin.com/in/swestrup</a><br>









<a href="http://technaut.livejournal.com" target="_blank">http://technaut.livejournal.com</a><br><a href="http://sourceforge.net/users/stirlingwestrup" target="_blank">http://sourceforge.net/users/stirlingwestrup</a>
</div></div>
<br></div></div>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">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>
<br></blockquote></div><br></div>
</blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">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>
<br></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">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>
<br></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">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>
<br></blockquote></div><br></div></div></div>
<br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">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>
<br></blockquote></div><br></div></div></div></div>
<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>
<br></blockquote></div><br></div>