mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Support file playback on Mozilla.
This commit is contained in:
parent
14a4303664
commit
f63ecb3078
1 changed files with 17 additions and 9 deletions
|
@ -419,8 +419,11 @@ function setButtonsVisibility() {
|
|||
let local = !!findUpMedia('local');
|
||||
let share = !!findUpMedia('screenshare');
|
||||
let video = !!findUpMedia('video');
|
||||
let canFile =
|
||||
/** @ts-ignore */
|
||||
let canFile = !!HTMLVideoElement.prototype.captureStream;
|
||||
!!HTMLVideoElement.prototype.captureStream ||
|
||||
/** @ts-ignore */
|
||||
!!HTMLVideoElement.prototype.mozCaptureStream;
|
||||
|
||||
// don't allow multiple presentations
|
||||
setVisibility('presentbutton', permissions.present && !local);
|
||||
|
@ -1154,18 +1157,23 @@ async function addShareMedia() {
|
|||
* @param {File} file
|
||||
*/
|
||||
async function addFileMedia(file) {
|
||||
/** @ts-ignore */
|
||||
if(!HTMLVideoElement.prototype.captureStream) {
|
||||
displayError("This browser doesn't support file playback");
|
||||
return;
|
||||
}
|
||||
|
||||
let url = URL.createObjectURL(file);
|
||||
let video = document.createElement('video');
|
||||
video.src = url;
|
||||
video.controls = true;
|
||||
let stream;
|
||||
/** @ts-ignore */
|
||||
let stream = video.captureStream();
|
||||
if(video.captureStream)
|
||||
/** @ts-ignore */
|
||||
stream = video.captureStream();
|
||||
/** @ts-ignore */
|
||||
else if(video.mozCaptureStream)
|
||||
/** @ts-ignore */
|
||||
stream = video.mozCaptureStream();
|
||||
else {
|
||||
displayError("This browser doesn't support file playback");
|
||||
return;
|
||||
}
|
||||
|
||||
let c = newUpStream();
|
||||
c.kind = 'video';
|
||||
|
|
Loading…
Reference in a new issue