So this would seem like more of a VLC question at first, but the problem seems to lie with the exec() command in Processing. I am trying to convert a video with the following code:
Everything seems fine and it all converts, but the program does not quit on its own. This is troublesome when you have 10+ files to transcode. Does anyone have any experience using exec() in this manner?
I've been developing a program that opens and analyzes a piece of audio, using a file as an input for minim.
I was wondering if anyone has experience in using minim to open the audio track of a video file. I've been searching around and have learned that the video library for Processing is quite buggy, especially for audio, and that there really isn't much great video implementation at all!
Does anyone have any experience using video's audio as an input? I will post more as I learn. Thanks!
I am having trouble passing a variable from a function inside of a class back out to its public variable. readRX is initialized 0, and then gets changed to 5 within the class. however, it does not change the public variable, readRX to 5.
If you rin the program, it will successfully print r as 5, but readRX will always read 0.
On a related note, (sorry the example is not here) passing a float[] into the class, not an int, will change the global float[] variable.
How do I pass a variable from a class back into the global environment?