HI,<br><br>I have an app, which send samples of video to gstreamer. when the play back starts, gstreamer get the window size automatically based on the source.<br>But I want to control it.<br><br>I tried <br>videoscale = gst_element_factory_make (&quot;videoscale&quot;, &quot;video_scale&quot;);<br>
    g_object_set (G_OBJECT (videoscale), &quot;width&quot;, 500, NULL); <br>    g_object_set (G_OBJECT (videoscale), &quot;height&quot;, 500, NULL); <br><br>but I am getting <br><ul><li>object class &#39;GstVideoScale&#39; has not property named &#39;width&#39;</li>
<li>object class &#39;GstVideoScale&#39; has not property named &#39;height&#39;</li></ul>Need some help here. how do i set the width and height correctly, and is there any way to change the dimensions while the video is playing.<br>
<br>Thanks,<br>Girish<br>