quicktime help
in
Core Library Questions
•
2 years ago
My processing is giving me a weird error that says UnsatisfieLinkError: quicktime.QTSession.InitializeQTML(I)S. I looked it up but I found no help. I installed and re-installed the latest Quicktime player but it still doesn't work. I use a windows 7. This is a simplified piece of audio, the other code(one in my previous posts) is way too long os I used a simpler one. In the real one, I use a downloaded mp3, not a URL though.
- import processing.video.*;
- Movie myMovie;
- void setup() {
- size(200, 200);
- myMovie = new Movie(this, "http://www.youtube.com/watch?v=VZxK58tPU4I&feature=related");
- myMovie.loop();
- }
- void draw() {
- tint(255, 20);
- image(myMovie, mouseX, mouseY);
- }
- void movieEvent(Movie m) {
- m.read();
- }
2