Scroll Top

Providing Feedback on Video in React Native

Getting your Trinity Audio player ready...

react native video feedback

We had a requirement to be able to indicate and provide feedback on a video in the form of drawings and comments. 

Users can use this feature to give feedback on videos and keep a record of them. Video Feedback will have extensive use-cases in the real world scenario. Anyone from teachers, professors to professional athletes may find this requirement suit their needs.

Imagine a fitness coach providing feedback to his trainees by exactly pointing out on the video how a workout could have been done in a better way, a ballet coach pointing out exactly how the hands and legs should be in a particular posture, an after match analysis of a cricket or football match showing how the ball moved, could be some real-life applications. 

In this blog, we will look at the steps of how we can achieve this requirement in a React Native app.

We will build a simple application which will showcase the capability to play a video and provide feedback on the video in the form of canvas sketch as well as textual comments.

Prerequisites

You should have the development environment setup with the necessary tool including below mentioned:

  • Android Studio
  • Node for running npm commands and creating react-native app

Creating a React Native app

Create a new React Native application using either of the following commands:

  • react-native init projectname (will create react-native project)
  • npx react-native init projectname (will create react-native project with node modules)

Defining your View

We will start by defining the view in App.js file within the render function which will get rendered on the app view.

First we will include the video using the Video tag, which will have all the capabilities to run and control the video using the below code. The video component helps in playing the video and also controls to either make it go faster or slower.The different actions on the video will be tied with the state.

The state will be initialized as follows to handle the different properties in the constructor.

Now we need the capability to be able to draw and provide feedback on top of the video. For this we will overlay a canvas on the video. In this example we have shown the canvas on a partial screen for better understanding, but the size of the canvas can be completely over the video so that it becomes implicit rather than explicitly showing. This is achieved using the SketchCanvas tag which will take the following properties as shown below. A higher zIndex will ensure the Canvas is over the video.

Additionally, we have added a text input to enable the user to provide feedback in the form of text comments.

The below image depicts the video area with controls and the overlay canvas and text input.

Thus, in the above illustration, the coach can pause the video at any given time. He can make markings on the video where ever necessary and add required feedback as shown in below image.

Additionally, text feedback can be provided as shown below.

The saveCanvasFeedback method is added to handle the saving function so that this data can be saved and used to replicate the feedback later. It stores this content in the state for the component.

The text input is also saved to the component state using the saveFeedback method. The state is used for keeping track of the time and location of the video where each feedback was received. It keeps updating its record after a save and the screen is cleared so that feedback can be continually given on the video.

At the end, the video marking and feedback information is saved in the state of the screen component so that it can be consolidated in a text file, pdf or any other format as needed.

The saved data can be used as needed in the application. The additional capability which can be included is to incorporate screen recording such that the feedback added can be exactly replayed in the same format over the original video. You can find the complete code for this example here.

CONCLUSION

This is an interesting capability which can be used in multiple cases to provide feedback on a video. This can be further enhanced to incorporate the capability to replay the feedback and use this feedback data to measure performance and derive inferences on the data captured.

Leave a comment

Privacy Preferences
When you visit our website, it may store information through your browser from specific services, usually in form of cookies. Here you can change your privacy preferences. Please note that blocking some types of cookies may impact your experience on our website and the services we offer.