...
|
...
|
@@ -127,7 +127,7 @@ const fetchReplayInfo = (videoID) => { |
|
|
d.background = helpers.image(d.background, 640, 968);
|
|
|
d.pic = helpers.image(d.pic, 640, 968);
|
|
|
d.master_pic = helpers.image(d.master_pic, 180, 180);
|
|
|
d.humanTime = _formatTime(data.living_start_time * 1000);
|
|
|
d.humanTime = _formatTime(data.live_start_time * 1000);
|
|
|
d.video_src = d.url;
|
|
|
|
|
|
let durationH = parseInt(d.live_last_time / 3600, 10); // 1h =3600s
|
...
|
...
|
@@ -166,7 +166,7 @@ const fetchLiveInfo = (roomID) => { |
|
|
d.background_pic = helpers.image(d.background_pic, 640, 968);
|
|
|
d.pic = helpers.image(d.pic, 640, 968);
|
|
|
d.master_pic = helpers.image(d.master_pic, 180, 180);
|
|
|
d.humanTime = _formatTime(d.living_start_time * 1000);
|
|
|
d.humanTime = _formatTime(d.live_start_time * 1000);
|
|
|
d.video_src = d.hls_downstream_address;
|
|
|
|
|
|
let durationH = parseInt(d.live_last_time / 3600, 10); // 1h =3600s
|
...
|
...
|
|