私はこのhls.js playerをリアクションと一緒にm3u8をストリームに使用しています。私はhls.jsプレーヤーを設定する一つのコンポーネントVideoPlayer
を持っています。このコンポーネントには、isPlaying
とisMuted
のような2つの状態プロパティがあります。 onClick
というカスタムボタンがあり、setState
にコンポーネントが呼び出されますが、これはコンポーネントとビデオストリームを再レンダリングして元の状態に戻り、最初のフレームに戻って停止します。一般的に、ストリーミングビデオでアプリケーション(還元)やローカル状態の変化をどのように扱いますか?私はreduxストアの更新やローカル状態の変更が行われるたびに、ビデオに常にこの "フリッカー"(再レンダリングされている)があることに気付きます。コード例WITHhttpライブストリーミングHLSでリアクションライフサイクルを処理する方法は?
UPDATE:
import React, {PropTypes} from 'react';
import Hls from 'hls.js';
class VideoPlayer extends React.Component {
constructor(props) {
super(props);
this.state = {
isMuted: true,
isPlaying: false,
playerId : Date.now()
};
this.hls = null;
this.playVideo = this.playVideo.bind(this);
}
componentDidMount() {
this._initPlayer();
}
componentDidUpdate() {
this._initPlayer();
}
componentWillUnmount() {
if(this.hls) {
this.hls.destroy();
}
}
playVideo() {
let { video : $video } = this.refs;
$video.play();
this.setState({isPlaying: true});
}
_initPlayer() {
if(this.hls) {
this.hls.destroy();
}
let { url, autoplay, hlsConfig } = this.props;
let { video : $video } = this.refs;
let hls = new Hls(hlsConfig);
hls.attachMedia($video);
hls.on(Hls.Events.MEDIA_ATTACHED,() => {
hls.loadSource(url);
hls.on(Hls.Events.MANIFEST_PARSED,() => {
if(autoplay) {
$video.play();
}
else {
$video.pause();
}
});
});
this.hls = hls;
}
render() {
let { isMuted, isPlaying, playerId } = this.state;
let { controls, width, height } = this.props;
return (
<div key={playerId}>
{!isPlaying &&
<span onClick={this.playVideo}></span>
}
<video ref="video"
id={`react-hls-${playerId}`}
controls={controls}
width={width}
height={height}
muted={isMuted}
playsinline>
</video>
</div>
);
}
}
export default VideoPlayer;
コンポーネントを実装する方法を推測することはできません。詳細を更新してください。 –