VideoContext icon indicating copy to clipboard operation
VideoContext copied to clipboard

An experimental HTML5 & WebGL video composition and rendering API.

Results 52 VideoContext issues
Sort by recently updated
recently updated
newest added

I am building a player with videocontext that allows clips to be added and removed. When a clip is in view and the user deletes the clip, we destroy the...

I'm not sure how well this would work, but the MediaStream interface allows the capturing of canvas content: https://developers.google.com/web/updates/2016/10/capture-stream Small example: https://webrtc.github.io/samples/src/content/capture/canvas-record/ The audio and video tracks could be recorded...

💫 enhancement
help wanted

In my project, I end up having multiple instances. Browser like Safari would not work properly in canvas goes more than 10. If any way I can convert the video...

![image](https://user-images.githubusercontent.com/62976746/81649290-a722c100-9462-11ea-8e96-7b38213c18b7.png) seek Multiple loaded calls follow or Then loaded does not call.

Currently, if you try and render image nodes in Firefox you will get the following error: ``` TypeError Window.createImageBitmap: 2 is not a valid argument count for any overload. ```...

👋Hello, Can `VideoContext` handle vertical video (eg from a phone)? I did a test and it seemed to stretch it side to side...

![image](https://user-images.githubusercontent.com/554215/78541978-66de7c00-77ee-11ea-8d49-c8923b4e177f.png) The error occurs with Microsoft Edge: ![78455999-4224c000-7699-11ea-9acc-3f6162293bd8](https://user-images.githubusercontent.com/554215/78541929-51695200-77ee-11ea-9b8f-a2f6a70465bb.png) It seems to be caused by using the following: ```javascript const node = this.videoContext.image("/blank.png"); ``` As a workaround I am able to...

The following error message occurs when using Firefox 74.0.1 (64-bit): ![image](https://user-images.githubusercontent.com/554215/78511898-3cfa6a80-7798-11ea-8256-e98f14a4c6ff.png) It seems to be caused by using the following: ```javascript const node = this.videoContext.image("/blank.png"); ``` As a workaround I...

The "InvalidAccessError" error occurs in some circumstances when the `clearTimelineState` or `destroy` methods are called of the `MediaNode`. The problem seems to be caused by the following line: https://github.com/bbc/VideoContext/blob/develop/src/SourceNodes/medianode.js#L198 It...

With HTML5 there is an attribute that allows a poster image to be specified on the `` element. Is there already a way to achieve this with the node based...