Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
cunigarrod
cunigarrod's Profile
3
Posts
0
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
How I can send data to a server through processing and how to get it?
[2 Replies]
18-Sep-2011 07:15 PM
Forum:
Programming Questions
How
I can read
through another
computer with
processing
?
As I can turn off the computer's sound?
[0 Replies]
18-Sep-2011 02:42 PM
Forum:
Programming Questions
I need to
turn off the sound
coming out of the
computer is not
the sound of a
playing
video.
When I pause the movie with movie.pause(), why the sound keeps playing?
[0 Replies]
18-Sep-2011 12:33 PM
Forum:
Core Library Questions
How I can control the sound with Movie Class?
This is my code:
import processing.video.*;
Movie myMovie;
boolean turn_on;
void setup() {
frameRate(24);
size(720, 480, P2D);
myMovie = new Movie(this, "test_video.mov");
myMovie.loop();
}
void draw() {
image(myMovie, 0, 0);
}
void mousePressed() {
if (turn_on==false) {
//fill(0);
//rect(0,0,width,height);
myMovie.pause();
turn_on=true;
}
else if (turn_on==true) {
myMovie.loop();
turn_on=false;
}
}
void movieEvent(Movie m) {
m.read();
}
The sound is not
turned off
when I
pause the movie.
«Prev
Next »
Moderate user : cunigarrod
Forum