th0mas / Gromits

Ocean Gromits livestreaming

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ocean Gromits

Interactive video link between two Gromit sculptures.

Team 40

spe-uob


Background

As part of the ‘Gromit Unleashed 2’ sculpture trail, the University created four interactive sculptures. Two of these - ‘Oceans 1: Deep Blue’ and ‘Oceans 2: Yellow Sub’ - used a video link, which allowed visitors to We the Curious and MShed to view each other across the harbour. The University reacquired these sculptures at the close of the trail, and wishes to place one in MVB, and the other at the new Temple Quarter precinct.

The sculptures should show the feed from the others camera. This should be done in the most robust, and lowest maintenance way possible.


Firmware

Our firmware is a local web server based on the Java Spring framework. This server handles real-time signalling for the WebRTC clients as well as authentication for these channels. It uses a small embedded database to record admin authenitcation infomation

Frontend

The frontend is located within firmware/frontend and is a self-contained client side JavaScript application. It connects to the signalling server specified in the REACT_APP_SIGNAL_URL environment variable to negotiate authentication and video.

Dependencies

  • JDK 11+
  • Node 14.x (Only required for frontend development)
  • Yarn (Only for frontend)

Getting started

Clone the repository

git clone https://github.com/spe-uob/GromitsRepo

Pull dependencies and build (This will take a long time, but should only have to be done once)

./gradlew build (macOS/Linux/Anything really)
gradlew.bat build (Windows)

To build the frontend (If you're doing frontend development)

cd frontend
yarn install

Make sure IntelliJ is set to use JDK 11 otherwise you'll get some nasty errors. Building outside of IntelliJ for the first time is usually quicker.

Production builds can then be ran by running

java -jar build/libs/<exe name>.jar
Development

To run in development mode with hot reloading and everything nice:

./gradlew bootRun # Run the spring server

# In a seperate terminal:
cd frontend && yarn start # Run the frontend development

The frontend can then be accessed under localhost:3000


Deploying

Both the front and backend need to be deployed seperately.

Frontend:

Make sure you're in the frontend folder: firmware/frontend

First, set the required environment variables and then build the frontend application

REACT_APP_SIGNAL_URL=<URL of signalling server>
yarn build 

The compiled assets will then be availiable in build/

These can be hosted on any HTTP server or static file host - such as Netlify. If hosting internally you can also host within the Spring server by placing the build artifacts in Springs static folder.

Backend:

The backend is a Java Spring Boot applicaion. It needs a random secret key set to make sure the application is secure. This secret key is whats used to sign and authenticate access keys for the admin api endpoints as well as the video signaller.

SECRET_KEY=<Secret Key> ./gradlew build`

The JAR file can then be run similar to

java -jar build/libs/firmware.jar

About

Ocean Gromits livestreaming

License:MIT License


Languages

Language:Java 45.7%Language:JavaScript 36.5%Language:TypeScript 14.3%Language:HTML 1.7%Language:Shell 1.2%Language:CSS 0.5%