Skip to content

GStreamer update breaks video playback on Arch Linux #195

@kflak

Description

@kflak

Description

After the update to GStreamer 1.20.0-1 I am no longer able to play back video on any of my Arch Linux systems. I suspect that this will soon render any video work on Linux impossible as soon as the other distros catch up 😬

Expected Behavior

To be able to play back video as described in this tutorial

Current Behavior

Getting a white window and the error:

(Processing core video:105730): GStreamer-Base-CRITICAL **: 16:34:27.150: basetransform: second attempt to fixate caps returned invalid (NULL) caps on pad vaap
ipostproc0:sink

Steps to Reproduce

  1. Run this code from the Processing IDE or from Nvim with the vim-processing plugin:
import processing.video.*;

Movie movie;

void setup(){
  size(320, 240);
  movie = new Movie(this, "sanskarpromo.mp4");
  movie.play();
}

void movieEvent(Movie movie){
  movie.read();
}

void draw(){
  image(movie, 0, 0);
}

Your Environment

Possible Causes / Solutions

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions