bitmovin / bitmovin-player-ui

The Bitmovin Adaptive Streaming Player UI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

window is not defined

justinmoon opened this issue · comments

I'm trying to use bitmovin-player in a next.js (server-side rendered react.js) project.

When I attempt to import the Player and run it, I get a window is not defined error. Here is a minimal reproduction of this bug.

I borrowed the main react.js component in this demo directly from your react.js example. And I'm importing Player exactly as is done in your webpack example ...

It seems like this PR was made to help support server-side rendering, but I'm not sure exactly how I'd utilize those utilitites ...

Hi,
Thanks for reaching out and for sharing your sample project.
Our player needs to be instantiated on the client side, and the window object is required.

You could for instance use RequireJS, as shown in one of our sample projects

Let us know in case you have any questions.

#283 (comment)

This PR only concerns the UI (not the Player Web SDK itself) and might only affect cases where the UI is used with our Native SDKs

Thanks @LudoMichaud.

In case any next.js developers stumble upon this issue in the future, this is what I needed to do to prevent the video player from running on the server and only running it on the client where window exists.