我正在使用 react-youtube 包并且我已经设置了删除大部分 youtube 品牌和控件的选项:
const options = {
height: 'auto',
width: '100%',
playerVars: {
// https://developers.google.com/youtube/player_parameters
controls: 0,
enablejsapi: 1,
modestbranding: 1,
showinfo: 0
}
} as const
<YouTube videoId="xyQ5qD-u-J7" opts={options} ref={videoElement}/>
但是,YouTube 框架仍然显示所有选项,就像显示在 YouTube 频道上一样。为什么品牌没有被删除?
你找到解决办法了吗?我目前也遇到同样的问题。