<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">On 01/22/2018 01:05 PM, Jajoo, Malhar
wrote:<br>
</div>
<blockquote type="cite"
cite="mid:DB6PR06MB3157B572D937B6F5CA1CF3D2B0EC0@DB6PR06MB3157.eurprd06.prod.outlook.com">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
<div id="divtagdefaultwrapper" dir="ltr" style="">
<div id="divtagdefaultwrapper" dir="ltr" style="">
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
Hi Mark,</p>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
<br>
</p>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
Thanks a lot for your suggestion. I have been able to play
the RTSP stream in VLC media player.</p>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
<br>
</p>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
<br>
</p>
<ol style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-bottom: 0px;
margin-top: 0px;">
<li>For the 1st command you suggested,<br>
I have tried to construct a pipeline(based on some
googling) -}<br>
<br>
$ <span style="font-size: 12pt;">gst-launch-1.0 -v rtspsrc
location="<rtsp_url>" latency=10 ! rtph264depay !
h264parse ! omxh264dec ! videoconvert ! xvimagesink<br>
</span><br>
I keep getting t<span style="font-size: 12pt;">he warning:</span><b
style="font-size: 12pt;"> No element "<some
element>" </b><span style="font-size: 12pt;"> for
some of the elements.<br>
</span>I am currently looking into this issue. <br>
<br>
</li>
<li>
<p style="font-family: Calibri, Helvetica, sans-serif,
EmojiFont, "Apple Color Emoji", "Segoe UI
Emoji", NotoColorEmoji, "Segoe UI
Symbol", "Android Emoji", EmojiSymbols;
font-size: 16px;">
For the 2nd command you suggested,<br>
I am able to play the file, but there is only audio. I
see some errors on my console reporting that <br>
I do not have H264 decoder or it cannot be found.<br>
<br>
</p>
</li>
</ol>
I am having quite some difficulty in resolving these as I'm
having shortage of time + multimedia frameworks is not
<br>
the central focus of my project :( .</div>
<div id="divtagdefaultwrapper" dir="ltr" style=""><br>
</div>
<div id="divtagdefaultwrapper" dir="ltr" style="">Any help will
be greatly appreciated.</div>
<div id="divtagdefaultwrapper" dir="ltr" style=""><br>
</div>
<div id="divtagdefaultwrapper" dir="ltr" style="">Best,</div>
<div id="divtagdefaultwrapper" dir="ltr" style="">Malhar <br>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt;">
</p>
<p style="color: rgb(0, 0, 0); font-family: Calibri,
Helvetica, sans-serif, EmojiFont, "Apple Color
Emoji", "Segoe UI Emoji", NotoColorEmoji,
"Segoe UI Symbol", "Android Emoji",
EmojiSymbols; font-size: 12pt; margin-top: 0px;
margin-bottom: 0px;">
<br>
</p>
</div>
</div>
</blockquote>
Sounds like maybe your GStreamer installation does not have all
these elements installed. That's not unusual, it's often broken up
into multiple packages depending on the platform. I didn't catch
whether you were linux, mac, windows etc.<br>
<br>
h264parse, for example, is in gst-plugins-bad, go see if such a
package is installed on your system, if not, find it.<br>
<br>
You can look for information on individual elements (if they are
present) with, for example:<br>
<br>
$ gst-inspect-1.0 h264parse<br>
<br>
Or list them all with:<br>
<br>
$ gst-inspect-1.0<br>
<br>
Or look for stuff mentioning h.264 with, e.g.:<br>
<br>
$ gst-inspect-1.0 -a | grep h264<br>
<br>
Last, come back with more specific error messages rather than just
"some errors"<br>
<br>
Cheers,<br>
<br>
Mark.<br>
</body>
</html>