You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been playing with gstd on a Jetson Nano, and it works fine with command line and python. And interpipe makes my life a lot easier. Thank you so much.
GstD version 0.14.0
Copyright (C) 2015-2021 RidgeRun (https://www.ridgerun.com)
Even if it does not work, I would appreciate it if someone could explain how it gets autovideosink to work in the browser.
On the source code, I can see the code that starts and stop the pipeline, but I cannot find what is supposed to show the video. Or maybe I understood it wrong, and this example is not supposed to show the video, just control the pipelines.
Thank you so much!
Cheers,
The text was updated successfully, but these errors were encountered:
Problem is that this script is 404 Not found <script src="https://rawcdn.githack.com/RidgeRun/gstd-1.x/feature/http-server-script/libgstc/javascript/libgstc.js"></script>
It is used in both /src/video_player_app.html and /src/controller_app.html
I have copied it from libgstc/javascript/libgstc.js to examples/web/src/libgstc.js
and changed script to: <script src="libgstc.js"></script>
Then both examples works. Then only CORS was needed to disable in browser.
Change line 63 in libgstc.js to const url = `${address}`; might help too.
Hello,
I have been playing with gstd on a Jetson Nano, and it works fine with command line and python. And interpipe makes my life a lot easier. Thank you so much.
I am investigating ways to show the video in a browser (e.g. hlssink), and I saw the example on gstd wiki:
https://developer.ridgerun.com/wiki/index.php/GStreamer_Daemon_-_Javascript_Video_Player_Example
But when I run it, and open the url on my browser, I first have to click on menu.html then I have:
It is quite different from the example's page.
And the video player page is all white.
I am running it on the Nano, and opening in a browser on another computer.
The only change I did on the settings was to change the localhost to the Nano IP.
GstD version 0.14.0
- I used the development branch to build.The browsers I tested were Firefox, Chrome and Ungoogled Chromium.
./setup_http_server.sh -a $SERVER_ADDRESS -p $SERVER_PORT
gstd --enable-http-protocol --http-address=${GSTD_ADDRESS} --http-port=${GSTD_PORT}
Even if it does not work, I would appreciate it if someone could explain how it gets autovideosink to work in the browser.
On the source code, I can see the code that starts and stop the pipeline, but I cannot find what is supposed to show the video. Or maybe I understood it wrong, and this example is not supposed to show the video, just control the pipelines.
Thank you so much!
Cheers,
The text was updated successfully, but these errors were encountered: