processing-video icon indicating copy to clipboard operation
processing-video copied to clipboard

GStreamer-based video library for Processing

Results 92 processing-video issues
Sort by recently updated
recently updated
newest added

``` Java // Example 16-4: Display QuickTime movie import processing.video.*; // Step 1. Declare Movie object Movie movie; void setup() { size(520, 520); background(0); // Step 2. Initialize Movie object...

If run the code below, the video plays fine at first. If press the keyboard '2', it plays in reverse, and if press the keyboard '1', it plays. However, when...

### Issue When canvas is set to P2D or P3D, all **Movie** class functions (like read(), loop(), etc.) result in the error **"Seek operation failed"**, and **get()** operations result in...

Hi I use: processing: 3.5.4 video: last version operating system: linux mint 19.3 based in Ubuntu 18.04 LTS when try use example "SimpleLite", i have this error: NyAR4psg/3.0.7;NyARToolkit/5.0.9 Processing video...

Hello, I am trying to play a vp9 encoded video in a .webm container (as downloaded from YouTube). When I play the file, nothing happens (no output or errors). mp4...

Just discovered a strange bug while trying the [Capture reference](https://processing.org/reference/libraries/video/Capture.html) to list available cameras on MacOS (10.13.6) laptop in dock mode (closed lid, external monitor). No camera's were listed and...

I build a video player which receives instructions via web sockets on which video to play. I am reusing the same movie instance. It seems like memory isn't properly cleared...

revision needed

Pixelate example will always load black colors on `mov.get()` when using P3D renderer on version 2.0-beta4 I found that rendering the Movie before reading the it makes it work as...

I've had problem with old GStreamer deprecation on new Ubuntu versions, then I've came up with the solutions provided in this repo to download latest release v2 beta 4 and...

I tried to replace the black pixels in a video in P3D renderer but just calling loadPixels() seems to make the programme extremely slow But it's ok when it applied...