<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">Hello all,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I have a pipeline for reading two pcaps, decoding them and mixing them to a .mp4 file:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">    filesrc location=video.pcap ! pcapparse !  (**) ! ffenc_mpeg4 ! mux.<o:p></o:p></p>
<p class="MsoNormal">    filesrc location=audio.pcap ! pcapparse !  (*)! audioconvert ! lamemp3enc !  mux.
<o:p></o:p></p>
<p class="MsoNormal">    mp4mux name=mux ! filesink location=output.mp4<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">(**) equals to  “ application/x-rtp, payload=96 ! rtph264depay ! video/x-h264 ! h264parse ! decodebin ! videoscale ! video/x-raw-yuv, width=640, height=480 “
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">(*) equals to application/x-rtp, payload=9, clock-rate=8000 ! rtpg722depay ! ffdec_g722<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">It works fine when video.pcap and audio.pcap are regular files.
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Oddly enough, I have problems when the video input is a FIFO like this:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">    mkfifo video<o:p></o:p></p>
<p class="MsoNormal">    cat video.pcap > video &<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">By using it, the output is a .mp4 with audio and video streams, but the video will never decode (mplayer doesn’t play, vlc plays only the sound). I tried to use fdsrc with a pipe and I get the very same result.<o:p></o:p></p>
<p class="MsoNormal">Interestingly, I can use  either filesrc with a fifo or fdsrc with a pipe for the audio and it just works.<o:p></o:p></p>
<p class="MsoNormal">Finally, if I’m to encode video alone it works perfectly fine with both methods of input.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Looking at gstreamer debug logs I couldn’t spot any difference between using filesrc  with a regular and filesrc with a fifo.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Does anyone have a hint of how could I solve this problem? I tried using queues after filesrc with no success at all!
<o:p></o:p></p>
<p class="MsoNormal">I think it’s somewhat related to the fact that one can’t fseek a pipe/fifo, but I can’t understand why it would work for the video alone but not when mixing audio and video.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks in advance,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Danilo<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">    <o:p></o:p></p>
</div>
</body>
</html>