Skip to content

Add and example to consume the WebRtcTCPRelayDetectedEvent #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4b269ea
Updated the backend epic pixelstreaming frontend to 5.4 0.0.4
david-macpherson Feb 20, 2024
25a3e01
Made necessary changes for the update to the lastest pixelstreaming f…
david-macpherson Feb 20, 2024
9e293fa
Added a link to tensorworks home page and set the colour of the hyper…
david-macpherson Feb 20, 2024
37bc435
Added an example to implement the webRtcTCPRelayDetectedEvent
david-macpherson Feb 20, 2024
4f539bd
Changed the details link to a placeholder
david-macpherson Feb 20, 2024
50e710d
Removed the details hyperlink
david-macpherson Feb 21, 2024
c579ad3
Bug fix building for prod to exclude the WEBSOCKET_URL var stored in …
david-macpherson Feb 22, 2024
226704c
Updated the gitignore to remove ignore the .env file
david-macpherson Feb 22, 2024
4be7567
Added to check if the WEBSOCKET_URL is not undefined
david-macpherson Feb 22, 2024
959eaa3
Bug fix building for prod to exclude the WEBSOCKET_URL var stored in …
david-macpherson Feb 22, 2024
8e5f339
Added a dockerfile to build the web rtc tcp detect example
david-macpherson Feb 22, 2024
429696e
Changed the WEBSOCKET_URL check to a blnk string instead of undefined
david-macpherson Feb 23, 2024
93a6fe1
Merge branch 'main' into F_WebRTC-TCP-Stream
dan-tw Feb 25, 2024
2314f4d
Update sps-frontend-webRtcTcpDetectEvent.dockerfile
dan-tw Feb 25, 2024
1016e17
Update webpack.dev.js
dan-tw Feb 25, 2024
0e23305
Update index.d.ts
dan-tw Feb 25, 2024
75e3412
Update package.json
dan-tw Feb 25, 2024
701797b
Update index.html
dan-tw Feb 25, 2024
ee2f5e3
Update tsconfig.json
dan-tw Feb 25, 2024
3622b3a
Update webpack.common.js
dan-tw Feb 25, 2024
063740c
Update webpack.dev.js
dan-tw Feb 25, 2024
8398bca
Merge remote-tracking branch 'upstream/main' into F_WebRTC-TCP-Stream
david-macpherson Feb 26, 2024
2b0bda1
Set the library name to the name of the example
david-macpherson Feb 26, 2024
ed7b6a1
Added commenting
david-macpherson Feb 26, 2024
c8d6619
Set the WEBSOCKET_URL to be undeinfed if the var has not been set in …
david-macpherson Feb 26, 2024
f6c58cf
Merge branch 'F_WebRTC-TCP-Stream' of github.com:david-macpherson/Fro…
david-macpherson Feb 26, 2024
818331d
Merge branch 'main' into F_WebRTC-TCP-Stream
david-macpherson Feb 26, 2024
c2761d5
Set the default value of WEBSOCKET_URL to undefined
david-macpherson Mar 28, 2024
900dc9c
Updated the epic pixel streaming library 5.4 to 0.0.5
david-macpherson Mar 28, 2024
2c143fe
Handles if the WEBSOCKET_URL has been defined
david-macpherson Mar 28, 2024
04cdfe4
Exposes the StatsReceivedEvent to the sps frontend
david-macpherson Mar 28, 2024
018a72d
Merge remote-tracking branch 'upstream/main' into F_WebRTC-TCP-Stream
david-macpherson Mar 28, 2024
7ab2d2e
Merge branch 'F_WebRTC-TCP-Stream' of github.com:david-macpherson/Fro…
david-macpherson Mar 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions dockerfiles/sps-frontend-webRtcTcpDetectEvent.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM nginx:1.21.6

RUN mkdir www
WORKDIR /www

ADD examples/webRtcTcpDetectEvent/dist/. /www/

RUN rm /etc/nginx/nginx.conf
RUN ln -s /etc/nginx/sps/nginx.conf /etc/nginx/nginx.conf

EXPOSE 80
2 changes: 2 additions & 0 deletions examples/webRtcTcpDetectEvent/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare module '*.png';
declare module '*.svg';
Loading