Change ReactPlayer subtitles

1.5k Views Asked by At

Can I custom or change the font, color, and position for subtitles?

This is my code

<ReactPlayer
            playing={true}
            url={myvideo}
            config={{
              file: {
                tracks: [
                  {
                    src: "123.vtt",
                    default: true,
                  },
                ],
              },
            }}
          />

Hope you guys understand :D

1

There are 1 best solutions below

1
On

According to documentation you can use the property "style" to pass one inline styles to the root element.

https://github.com/CookPete/react-player