Loading...
Logo
Processing Forum
I'm trying to use GSVideo to record a video into an ArrayList and delete some of its frames. Recording the video works fine, but when I try to step through the images, the program will only display the last frame.

Copy code
  1. import codeanticode.gsvideo.*;
  2. GSCapture cam;

  3. ArrayList pictures = new ArrayList();
  4. boolean recording = true;
  5. int frame = 0;

  6. void setup() {
  7.   size(640, 480);
  8.   String[] cameras = GSCapture.list();
  9.   cam = new GSCapture(this, 640, 480, cameras[0]);
  10.   cam.play(); 
  11. }

  12. void draw() {
  13.   println("Draw: " + frame);
  14.   if(cam.available() == true) {
  15.     if(recording) {
  16.       cam.read();
  17.       pictures.add(cam);
  18.       frame++;
  19.     }
  20.   }
  21.   try {
  22.     background(0);
  23.     image((PImage) pictures.get(frame-1), 0, 0, width, height);
  24.   } catch(IndexOutOfBoundsException e) {
  25.     ; //do nothing
  26.   }
  27. }

  28. void keyPressed() {
  29.   recording = false;
  30.   if(key == 'q') {
  31.     frame = max((frame - 1) % pictures.size(),1);
  32.   } else if(key == 'e') {
  33.     frame = min((frame + 1) % pictures.size(),pictures.size());
  34.   } else if(key == 'w') {
  35.     pictures.remove(frame);
  36.     frame = frame % pictures.size();
  37.   }
  38.   println("KeyPressed: " + frame);
  39. }
The controls (if it worked) are:
  • Q to step back a frame
  • E to step forward a frame
  • W to erase the current frame

Replies(3)

Moved to Contributed Libraries questions because you use such library, and because answering it need knowledge of the library.
Particularly, I see you add the cam object to the array list, but you should store the image itself instead. Probably a copy of it.
Here, cam is a global object, and all you do is to add multiple references to this object in the list. These are only references, so when you update the object, all entries show the same data.
Neither me. That's why I wrote that somebody with specific knowledge of the library should answer...