1

我正在尝试将 Bitmovin 播放器集成到我的 react js 应用程序中。我是反应js的新手。我已经包含了 index.html 文件的 cdn 链接。单击视频横幅时,应使用视频播放器打开一个新页面。因此,在 App.js 中,我创建了一个到名为 VideoPlayer.js 的组件的路由,我在其中放置了将集成视频播放器的 <div> 元素。我已将视频播放器的 javascript 代码放在 index.html 页面中。

我做对了吗,因为视频播放器没有显示,当我将视频播放器的 javascript 代码放置到组件时,它找不到 bimovin 和 Player。

索引.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, shrink-to-fit=no"
    />
    <meta name="theme-color" content="#000000" />
    <!--
      manifest.json provides metadata used when your web app is added to the
      homescreen on Android. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->

    <link
      rel="stylesheet"
      href="%PUBLIC_URL%/assets/bootstrap/css/bootstrap.min.css"
    />
    <link rel="stylesheet" href="%PUBLIC_URL%/assets/css/style.css" />
    <link rel="stylesheet" href="%PUBLIC_URL%/assets/css/responsive.css" />
    <link rel="stylesheet" href="%PUBLIC_URL%/assets/slick/slick.css" />
    <link rel="stylesheet" href="%PUBLIC_URL%/assets/slick/slick-theme.css" />
    <link
    rel="stylesheet"
    type="text/css"
    href="https://cdnjs.cloudflare.com/ajax/libs/material-design-icons/3.0.1/iconfont/material-icons.min.css"
  />
    <script
      defer
      src="%PUBLIC_URL%/assets/fontawesome/svg-with-js/js/fontawesome-all.js"
    ></script>

    <script src="https://cdn.bitmovin.com/player/web/8/bitmovinplayer.js" type="text/javascript"></script>
    <script src="https://js.stripe.com/v3/"></script>
    <span id="header_scripts"></span>
  </head>
  <body>
    <div id="root"></div>
    <div id="google_analytics"></div>
    <div id="body_scripts"></div>


    <!--
        This HTML file is a template.
        If you open it directly in the browser, you will see an empty page.

        You can add webfonts, meta tags, or analytics to this file.
        The build step will place the bundled scripts into the <body> tag.

        To begin the development, run `npm start` or `yarn start`.
        To create a production bundle, use `npm run build` or `yarn build`.
        -->
    <script src="%PUBLIC_URL%/assets/js/jquery.min.js"></script>
    <script src="%PUBLIC_URL%/assets/js/popper.min.js"></script>
    <script src="%PUBLIC_URL%/assets/bootstrap/js/bootstrap.min.js"></script>
    <script src="%PUBLIC_URL%/assets/js/script.js"></script>
    <script src="%PUBLIC_URL%/assets/jwplayer/jwplayer.js"></script>

<script type="text/javascript">

var bitmovinConfig = {
        key: "a9438b8a-97ae-4502-955b-fe615878e8c7",
        playback: {
          autoplay: true,
          muted: true
        },

        dnaConfig: {},

        style: {
          width: "",
          height: "",
          ux: true
        }
      };

      var playerDiv = document.getElementById("demoplayer");

      if(playerDiv){

        console.log("Success");
      
        player = new bitmovin.player.Player(
          document.getElementById("demoplayer"),
          bitmovinConfig
        );
        player
          .load({
            //Only one playlist URL must be set at a time.
            hls: "https://demo-vod.streamroot.io/index.m3u8"
            //dash: 'YOUR_PLAYLIST_URL',
            //smooth: 'YOUR_PLAYLIST_URL'
          })
          .then(function() {
            player.play();
          });
      
      }else{

        console.log("No Success");
      }


      

</script>

  </body>
</html>

应用程序.js:

import React, { Component } from "react";
import ReactTimeout from "react-timeout";
import Emitter from "./components/Services/EventEmitter";

import { Router, Switch, Route, Redirect } from "react-router-dom";

import { createBrowserHistory as createHistory } from "history";


import VideoComponent from "./components/User/Video/VideoPlayer";



<AppRoute
                  path={"/video/:id"}
                  component={VideoComponent}
                  layout={EmptyLayout}
                  screenProps={this.eventEmitter}
                />

我没有包含 App.js 的所有代码,因为该文件有很多代码并且出于安全原因。

VideoPlayer.js(组件):

import React, { useState, useEffect } from 'react';

 class VideoComponent extends React.Component {

        render() {


            return( <div><div id="demoplayer"></div>);
        }
    }


export default VideoComponent;
4

1 回答 1

1

在此处查看这些示例。我在任何地方都没有在您的代码中看到 Bitmovin 播放器...

https://github.com/bitmovin/bitmovin-player-web-samples/tree/main/react

于 2022-01-21T00:29:28.190 回答