Skip to content

In this code pattern, we will demonstrate how to quickly build an e-learning portal using Watson Media.

License

Notifications You must be signed in to change notification settings

IBM/build-an-elearning-portal-with-watson-media

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Build an e-learning portal with Watson Media.

The COVID pandemic has altered our conventional ways of working in companies, startups, businesses, and Educational Institutes. In the current times, to maintain social distancing, Schools and Colleges are choosing the e-learning platforms to impart education. Though, it started as a precautionary measure to stop the further spread of the pandemic. But it is turning into a much more effective and efficient mode of teaching in terms of resources. More and more startups are emerging in the educational domain to make use of this window of opportunity. IBM Watson Media provides the required capabilities to build an e-learning platform for their startup.

IBM Watson Media is an enterprise solution created by IBM to manage content and get insightful analytics on the videos uploaded using the service. It is a convenient, and an easy to use service which can be used for all your video on demand needs. It is built for scalability making it a perfect solution for streaming live events and product launches. Powered by IBM's cloud storage makes it reliable and Watson AI integration offers additional features like automated closed captioning and optimized video quality. Learn more about Watson Media here.

In this code pattern, we will demonstrate how to quickly build an e-learning portal using Watson Media.

After completing the code pattern, you understand how to:

  • Create channels for different areas of learning.
  • Create and upload videos for a channel.
  • Password restrict the access to videos.
  • Restrict domains where the video can be embedded.
  • Build a web application with authentication to access the channels using the APIs provided by Watson Media.

The Scope of this Code Pattern is limited to following capabilities. However, the Solutions can be scaled to accommodate a lot more functionalities and capabilities through the services, products, solutions and APIs provided by Watson Media.
architecture

Flow

  1. Admin requests to authorizes the app
  2. App is authorized by the IBM OAuth2.0 portal.
  3. Node Server receives Auth token from Watson Media.
  4. App requests server for the auth token
  5. App uses auth token to create dashboard for user on runtime.
  6. User logs in and accesses content published on Watson Media.

Included components

  • IBM Watson Media: It offers AI-driven solutions for live streaming events, corporate communication, video analytics, and content management.
  • Kubernetes: IBM Cloud Kubernetes Service creates a cluster of compute hosts and deploys highly available containers. A Kubernetes cluster lets you securely manage the resources that you need to quickly deploy, update, and scale applications.

Featured technologies

  • Node.js: An asynchronous event driven JavaScript runtime, designed to build scalable applications
  • React: Javascript library for building User Interfaces
  • Docker: Docker is a set of platform as a service products that use OS-level virtualization to deliver software in packages called containers.

Watch the Video

Watch the Application Demo Here

Steps

  1. Login using IBMid on IBM Watson Media.
  2. Create the Channels.
  3. Upload Videos on the Channel.
  4. Create Playlists.
  5. Give Password Restriction on the Channel.
  6. Generate Channel API credentials
  7. Deploy the Application.
  8. Run the Application.

1. Login using IBM ID on IBM Watson Media.

If you don't have IBM ID, create an account on IBM Cloud Account

using the same ID,

  • Click on Start Streaming Video Trial on Watson Media Page
  • Login using IBM ID. Your 30 days free trial of the product will be activated. dashboard

2. Create the Channels.

Channels help us in organizing our content, we can group content by any metric as per our requirement like subjects or audience. This will make the videos more convenient to locate and also will be helpful when determining what videos can be accessed by a particular user.

  • In the left panel, under Channel click on Create Channel.

  • In the Title field, enter your channel name, and under Language of videos and broadcasts, select your desired language, finally click on Create as shown. create channel

Note: Free Trial allows you to create only one channel, you need to upgrade to premium account to create more.

Note: You can view the Channel Page by clicking on the View Channel Page in the left panel.

3. Upload Videos on the Channel.

  • Click on Videos on the left panel.
  • Click Upload button.
  • Select all the files you want to upload from the computer, you can also give it a name and description and click on Start Upload button to upload the video on Watson Media. uploadBox

Note: Uploading videos will take some time based on your internet bandwidth, please be patient for the upload to complete and watson media to process it.

  • Click Start to Upload Button.

  • After the upload is complete, Go back to Dashboard, click on Channel > Videos, select all the uploaded videos and Hit Publish. Upload

  • You will see a message popup saying the selected videos are published.

Note: Maximum storage of 500GB storage is available in lite plan to upload more content than that you will have to subscribe to a premium plan.

4. Create Playlists.

Playlists can be used to group videos together which are related and can be watched one after another. They are helpful for increasing user watch time and for making convenient go to content so viewer doesn't have to spend time in finding different videos pertaining to a similar topic.

  • Click on Playlist on the left panel.

  • Click Create Playlist button.

  • In the Title field, enter your playlist name, and click on Create playlist as shown. Playlist

  • You will see a modal to add videos to playlist, click on add to playlist to add that video to the playlist and press done as shown to create it. Playlist2

  • You will see a message popup saying Playlist Created.

5. Give Password Restriction on the Channel.

Watson Media gives us the ability to secure our content with a password. This added layer of security makes sure that no undesired party has access to the content.

  • On the Dashboard, Click on Security Tab on the left panel.
  • Click on Settings next to Password Protection.
  • Check the Enable Password Protection button.
  • Give the Channel Password of your choice and hit Save. password

6. Generate Channel API credentials

In this step you will learn to the use of Channel API for building custom UI and dashboard for managing and sharing content. It shows the workflow and step by step usage for integrating the API which can later be used for defining your custom apps.

  • From the left panel click on Integration & apps > API/SDK Access

  • You will be asked to login, click on login with your IBMid

  • Click Create Credentials to create Channel API credentials.

  • Enter an Application Name as per choice.

  • Enter http://localhost:8080/get_token as the Redirect URL.

  • Select Web Application from the radio as the application type.

  • Click on Save. createCreds

  • Once the credentials are created copy the Client id as it will be required in the next step. clientId

7. Deploy the Application

Deploy Locally
  • Inside the code directory run the following command
npm install
  • After node modules have been installed run the following command
node server.js

After this the application is listening on http://localhost:8080/

Deploy on Kubernetes

Create a free Kubernetes Cluster on IBM Cloud

Build and push Docker Image to Docker Hub.

  • Inside the directory code run the following command
docker build -t <DOCKERHUB_USERNAME>/<IMAGE_NAME>:<TAG> .

The command should look like this

docker build -t randomUser/watson-media-node:v2 .
  • After docker image is built, push it to docker hub using the following command
docker push <DOCKERHUB_USERNAME>/<IMAGE_NAME>:<TAG> 
  • Inside the directory code, change deploy.yaml file replace line no. 17 to
image : <DOCKERHUB_USERNAME>/<IMAGE_NAME>:<TAG>

It should look something like this

image: randomUser/watson-node-elearning:v2

Deploy on Kubernetes

  • Next run the following command to deploy the image to kubernetes.
kubectl apply -f deploy.yaml

The Application is now running on your kubernetes node.

  • Go to your Watson Media API/SDK Access Dashboard and change the Redirect URL to http://<YOUR_KUBERNETES_NODE_PUBLIC_IP>:32423/get_token channelAPI

After this the application is listening on http://<YOUR_KUBERNETES_NODE_PUBLIC_IP>:32423

NOTE: We have entered 32423 as this is the one that we have exposed in our deploy.yaml file.

8. Run the Application.

  • Open your web browser and visit the app URL obtained in step 7.

  • You will be redirected to /admin . Here enter the Client ID that you previously copied in step 6, and click Authorize Access to Videos as shown in the screenshot. admin_auth

Note: /admin page is to be accessed by the API owner who is giving the permission for the application to use the API and access the channel content. The application is accessible only if the person authorizes the application using the credentials permitted.

  • This will redirect you to Watson Media OAuth and you will be required to login with your W3, UStream or Device Credentials.

  • Click on Login with your IBMid to continue the auth process. admin_oauth

  • After logging in, click Authorize. authorize

Successful Authentication will redirect you to /login

Note: /login page can be accessed by anyone who wants to access channel content with the credentials provided or created on the portal as per admin's choice.

  • Here the user is required to enter the login credentials managed by the developer. For demonstration we are using the credentials stored in code/reactui/src/content/sampleLogin.json

  • Look them up and enter it in the text boxes on /login and click Login. login

  • After successfully logging in you can now view the different channels that you have created in Watson Media. dash

  • Select the channel and you can view the videos and playlists uploaded in that channel. videos

(Optional) Build / Modify UI

You can edit UI for the application as per your use and compile the code to serve using the Node server.

  • Go to the code/reactui directory and run the following command on your terminal.

    npm install
  • Build the application using the following command

    npm run build
  • Now run the following command in your terminal in the same directory as the build folder to remove the old build.

    rm -rf ./../build
  • Next move the new build to the code directory.

    mv ./build ./../
  • You can now deploy your updated applications by following steps 7 and 8

(Optional) Restrict Domains where video can be embedded

Restrict Domain helps us in making sure that no party is embedding our content without permission. This protects from misuse and unauthorized use of the content.

  • On the Dashboard, Click on Security Tab on the left-side panel.
  • Click on Embed Restriction
  • Check the specify the domains where your streams can be embedded button.
  • Give the domains where you want to allow or restrict and hit save. embedding

Summary

In this code pattern you have learnt how to create channels, upload videos, curate playlists, secure content by enabling password and restricting embed URLs and build a web application with authentication to access the channels using the APIs provided by Watson Media.

License

This code pattern is licensed under the Apache License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 and the Apache License, Version 2.

Apache License FAQ