<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I've tried to locate the cache but it doesn't exist.</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
This is the locations I tried on my system but the INetCache didn't exist even with hidden files showing</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
</div>
<span style="color: rgb(0, 0, 0); font-family: Verdana, Geneva, Helvetica, Arial, sans-serif; font-size: 13.44px; background-color: rgb(255, 255, 255); display: inline !important">%USERPROFILE%\AppData\Local\Microsoft\Windows\INetCache\gstreamer-1.0\registry.x86_64.bin</span>
<div><font color="#000000" face="Verdana, Geneva, Helvetica, Arial, sans-serif"><span style="font-size: 13.44px;"><br>
</span></font></div>
<div><font color="#000000" face="Verdana, Geneva, Helvetica, Arial, sans-serif"><span style="font-size: 13.44px;">I tried manually searching but no luck and even windows search box.<br>
</span></font>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="font-family: Verdana, Geneva, Helvetica, Arial, sans-serif; font-size: 13.44px; background-color: rgb(255, 255, 255); display: inline !important"></span><br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div>
<div id="appendonsend"></div>
<div style="font-family:Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)">
<br>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> gstreamer-devel <gstreamer-devel-bounces@lists.freedesktop.org> on behalf of gstreamer-devel-request@lists.freedesktop.org <gstreamer-devel-request@lists.freedesktop.org><br>
<b>Sent:</b> 22 June 2020 19:58<br>
<b>To:</b> gstreamer-devel@lists.freedesktop.org <gstreamer-devel@lists.freedesktop.org><br>
<b>Subject:</b> gstreamer-devel Digest, Vol 113, Issue 58</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt">
<div class="PlainText">Send gstreamer-devel mailing list submissions to<br>
        gstreamer-devel@lists.freedesktop.org<br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
or, via email, send a message with subject or body 'help' to<br>
        gstreamer-devel-request@lists.freedesktop.org<br>
<br>
You can reach the person managing the list at<br>
        gstreamer-devel-owner@lists.freedesktop.org<br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of gstreamer-devel digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: Is there a way to get the GstRTSPSession without using<br>
      the "new-session" callback? (Nicolas Dufresne)<br>
   2. Re: HLS TS segments generated by nvh264enc is not playing<br>
      (except the first segment) (HummerHead87)<br>
   3. Re: Jetson nano USB 1080p stream save while streaming to rtmp<br>
      fails. (Nicolas Dufresne)<br>
   4. Re: Gstreamer is not working (Windows) (David Ing)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 22 Jun 2020 14:51:14 -0400<br>
From: Nicolas Dufresne <nicolas@ndufresne.ca><br>
To: Discussion of the development of and with GStreamer<br>
        <gstreamer-devel@lists.freedesktop.org><br>
Subject: Re: Is there a way to get the GstRTSPSession without using<br>
        the "new-session" callback?<br>
Message-ID:<br>
        <96742598529263755bcc6e308d81551436fb4842.camel@ndufresne.ca><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
Le lundi 22 juin 2020 ? 10:15 -0500, Mariano Koremblum a ?crit :<br>
> As the subject says, I am trying to find a way to get the GstRTSPSession<br>
> object related to a Client connected by RTSP without using the "new-session"<br>
> callback, ideally I want to obtain it by using the Client object itself<br>
> (GstRTSPClient). Does anyone know if it is possible?<br>
<br>
Assuming this is in regard to RTPBin, there is an action signal called "get-<br>
session" with the following signature: <br>
<br>
   The ?get-session? signal<br>
<br>
   GstElement*<br>
   user_function (GstRtpBin *rtpbin,<br>
                  guint      id,<br>
                  gpointer   user_data)<br>
<br>
The id being the name number as found on the pad you have requested (usually 0,<br>
1, ...).<br>
<br>
   g_signal_emit_by_name (rtpbin, "get-sesssion", id, &rtpsession);<br>
<br>
<br>
> <br>
> Thanks in Advance!<br>
> <br>
> <br>
> <br>
> --<br>
> Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
> _______________________________________________<br>
> gstreamer-devel mailing list<br>
> gstreamer-devel@lists.freedesktop.org<br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 22 Jun 2020 13:38:26 -0500 (CDT)<br>
From: HummerHead87 <snooks87@gmail.com><br>
To: gstreamer-devel@lists.freedesktop.org<br>
Subject: Re: HLS TS segments generated by nvh264enc is not playing<br>
        (except the first segment)<br>
Message-ID: <1592851106851-0.post@n4.nabble.com><br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Try to insert h264parse after nvh264enc, which can add PPS in the stream<br>
gst-launch-1.0 videotestsrc is-live=true ! nvh264enc ! h264parse<br>
config-interval=1 ! mpegtsmux ! hlssink playlist-length=100<br>
target-duration=5 playlist-location=nvh264enc.m3u8 location=nvh264enc%u.ts<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 22 Jun 2020 14:54:07 -0400<br>
From: Nicolas Dufresne <nicolas@ndufresne.ca><br>
To: Discussion of the development of and with GStreamer<br>
        <gstreamer-devel@lists.freedesktop.org><br>
Subject: Re: Jetson nano USB 1080p stream save while streaming to rtmp<br>
        fails.<br>
Message-ID:<br>
        <4ec63db41b0b786fe28355b4ba49c502ae9b3ed9.camel@ndufresne.ca><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
Le lundi 22 juin 2020 ? 05:39 -0500, dananjaya a ?crit :<br>
> I tried to use two pipelines without tee element. Once the first pipeline is<br>
> started the other pipeline wont start. It gives me the error stating the<br>
> source is already in use.<br>
<br>
What I meant by two pipelines is to use an appsink in the capture pipeline. And<br>
then have you application pass the buffers to the "recording" pipeline through<br>
an appsrc element. Optionally, intervideosink/src might do the job for you.<br>
<br>
regards,<br>
Nicolas<br>
<br>
> <br>
> <br>
> <br>
> --<br>
> Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
> _______________________________________________<br>
> gstreamer-devel mailing list<br>
> gstreamer-devel@lists.freedesktop.org<br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Mon, 22 Jun 2020 11:56:10 -0700<br>
From: David Ing <ding@panopto.com><br>
To: Discussion of the development of and with GStreamer<br>
        <gstreamer-devel@lists.freedesktop.org><br>
Subject: Re: Gstreamer is not working (Windows)<br>
Message-ID:<br>
        <CAKF2gC-RGEH25k74tV2z2x1wA7n=MODOY6=pN04ZTObr7QCS4A@mail.gmail.com><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
As a followup on what Nirbheek said, this might be helpful:<br>
<a href="http://gstreamer-devel.966125.n4.nabble.com/msvc-build-can-t-find-elements-in-playback-plugin-td4691649.html#a4691668">http://gstreamer-devel.966125.n4.nabble.com/msvc-build-can-t-find-elements-in-playback-plugin-td4691649.html#a4691668</a><br>
<br>
Basically you need to clear the plugin cache whenever you go between mingw<br>
and msvc builds.<br>
<br>
On Mon, Jun 22, 2020 at 10:36 AM Nirbheek Chauhan <<br>
nirbheek.chauhan@gmail.com> wrote:<br>
<br>
> This can also happen if you've accidentally installed both the MSVC<br>
> binaries and the MinGW binaries. You should only install one of them. What<br>
> are the contents of C:\gstreamer\1.0\x86_64\bin ?<br>
><br>
> On Mon, Jun 22, 2020 at 11:00 PM Michael Gouveia <mggunman@hotmail.com><br>
> wrote:<br>
><br>
>> So, I'm new to GStreamer and I've taken the safe route by downloading the<br>
>> pre-built binaries from <a href="https://gstreamer.freedesktop.org/download/">
https://gstreamer.freedesktop.org/download/</a> for<br>
>> windows. I believe I've installed it fully by downloading MSVC runtime and<br>
>> development versions for VS 2019. But when I try to run a GStreamer command<br>
>> I always get something similar to what is shown below.<br>
>><br>
>><br>
>> Below is a snippet of the issue, when I run 'gst-device-monitor-1.0' via<br>
>> command line to access my built-in webcam as I'm running this on a work<br>
>> laptop.<br>
>><br>
>> I might be missing an environment variable or path. These are my current<br>
>> system variables, I've set:<br>
>><br>
>> My current PATH, I've set:<br>
>><br>
>> I was told the issue could be strawberryperl being above gstreamer in the<br>
>> path, but I've changed that since and the issue is still persistent.<br>
>><br>
>><br>
>> System Info:<br>
>><br>
>> Windows 10 Pro 64-bit<br>
>><br>
>> Intel i5-5300U<br>
>><br>
>> 8GB Ram<br>
>><br>
>> _______________________________________________<br>
>> gstreamer-devel mailing list<br>
>> gstreamer-devel@lists.freedesktop.org<br>
>> <a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
>><br>
> _______________________________________________<br>
> gstreamer-devel mailing list<br>
> gstreamer-devel@lists.freedesktop.org<br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment.htm">https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment.htm</a>><br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: image.png<br>
Type: image/png<br>
Size: 78794 bytes<br>
Desc: not available<br>
URL: <<a href="https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment.png">https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment.png</a>><br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: image.png<br>
Type: image/png<br>
Size: 15965 bytes<br>
Desc: not available<br>
URL: <<a href="https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment-0001.png">https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment-0001.png</a>><br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: image.png<br>
Type: image/png<br>
Size: 54783 bytes<br>
Desc: not available<br>
URL: <<a href="https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment-0002.png">https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20200622/8815edc0/attachment-0002.png</a>><br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
gstreamer-devel@lists.freedesktop.org<br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br>
<br>
------------------------------<br>
<br>
End of gstreamer-devel Digest, Vol 113, Issue 58<br>
************************************************<br>
</div>
</span></font></div>
</div>
</div>
</body>
</html>