Browse Source

Add some todo comments

pull/2032/head
Gabe Kangas 3 years ago
parent
commit
d65be6013a
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 2
      web/components/video/OwncastPlayer.tsx
  2. 3
      web/components/video/player.tsx

2
web/components/video/OwncastPlayer.tsx

@ -1,6 +1,4 @@ @@ -1,6 +1,4 @@
import React from 'react';
// This imports the functional component from the previous sample.
import VideoJS from './player';
export default function OwncastPlayer(props) {

3
web/components/video/player.tsx

@ -3,6 +3,7 @@ import videojs from 'video.js'; @@ -3,6 +3,7 @@ import videojs from 'video.js';
require('video.js/dist/video-js.css');
// TODO: Restore volume that was saved in local storage.
// import { getLocalStorage, setLocalStorage } from '../../utils/helpers.js';
// import { PLAYER_VOLUME, URL_STREAM } from '../../utils/constants.js';
@ -23,6 +24,8 @@ export function VideoJS(props) { @@ -23,6 +24,8 @@ export function VideoJS(props) {
onReady && onReady(player);
}));
// TODO: Add airplay support, video settings menu, latency compensator, etc.
// You can update player in the `else` block here, for example:
// } else {
player.autoplay(options.autoplay);

Loading…
Cancel
Save