How to change video display window name in deepstream application?

Hello Nvidia Team,]
I am running deepstream python test3 applications using this link GitHub - NVIDIA-AI-IOT/deepstream_python_apps: DeepStream SDK Python bindings and sample applications. I would like change output display window name. like-- here python3.6 ->> demo etc.

hi @steve7878 ,
It seems that in case of python gstreamer apps, the process title is used to set the window’s title.
I have verified that if you change the process’s title, the window name title also changes.
You could utilize something like https://pypi.org/project/setproctitle/ to accomplish this.
A sample would simply look like below:

import setproctitle
setproctitle.setproctitle(‘my-process’)

Please let me know if you face any issues.
P.S. The setproctitle needs to be called before GST.init()

Thanks,
Rahool

1 Like

solved …
Thank you for your response.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.