Hi list,
I'm currently working on a vj tool built around pd and gem. It's called tvjt, and it is supposed to be an easily and straight-forward operated application that can be used to do the usual vj stuff plus some nifty extras. tvjt is currently at a stage where it is easy to add more whistles and bells, so if you have a feature in mind that you always missed in one of the commercial vj tools, don't hesitate to drop me a mail.
Please have a look at
http://puredata.info/Members/tfbb/tvjt/index_html/view
for more details, there is also a wiki at
http://puredata.info/Members/tfbb/tvjt/TheTvjtWiki
that could serve at a exchange point for comments, feature requests and all the rest.
with kind regards, thoralf.
How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
coooooolll
= )
audio @ myosound.com
On Aug 11, 2005, at 2:21 PM, Thoralf Schulze wrote:
Hi list,
I'm currently working on a vj tool built around pd and gem. It's called tvjt, and it is supposed to be an easily and straight-forward operated application that can be used to do the usual vj stuff plus some nifty extras. tvjt is currently at a stage where it is easy to add more whistles and bells, so if you have a feature in mind that you always missed in one of the commercial vj tools, don't hesitate to drop me a mail.
Please have a look at
http://puredata.info/Members/tfbb/tvjt/index_html/view
for more details, there is also a wiki at
http://puredata.info/Members/tfbb/tvjt/TheTvjtWiki
that could serve at a exchange point for comments, feature requests and all the rest.
with kind regards, thoralf.
___________________________________________________________ How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi Thoralf,
The screen shots look great.
I may be missing something, but is there a place to download tvjt and
try it out?
Best, paris
On Aug 11, 2005, at 2:21 PM, Thoralf Schulze wrote:
Hi list,
I'm currently working on a vj tool built around pd and gem. It's called tvjt, and it is supposed to be an easily and straight-forward operated application that can be used to do the usual vj stuff plus some nifty extras. tvjt is currently at a stage where it is easy to add more whistles and bells, so if you have a feature in mind that you always missed in one of the commercial vj tools, don't hesitate to drop me a mail.
Please have a look at
http://puredata.info/Members/tfbb/tvjt/index_html/view
for more details, there is also a wiki at
http://puredata.info/Members/tfbb/tvjt/TheTvjtWiki
that could serve at a exchange point for comments, feature requests and all the rest.
with kind regards, thoralf.
How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
Hi Paris,
I may be missing something, but is there a place to download tvjt and
try it out?
you're not missing anything yet :-) tvjt is not complete yet, but will (hopefully) be in an early beta stage in about a week. The main work is actually already done: the user interface works, and so do the envelope generators, message routing works also fine. What's left to do is to slip in the actual functionality - I hope that this will merely be a copy-and-paste issue, since I've done this already with mapi. tvjt will be freely available once it is done.
with kind regards, thoralf.
To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. http://uk.security.yahoo.com
i haven't done any gem stuff for ages...being more interested in the audio side of things....but this might kick me back into action on the visual front.
some kind of 'sequencer' would be nice for the video.
definately include as much audio-interactivity as you can. ideally you want to be able to trigger video events by audio events such as drum beats...also by midi input...and then the best would be the option of using audio signals to generate video.
also, it would be important for me to be able to feed in the output of my own patches to the video stream.
and then to be able to take video from the stream and run it through my own processes before sending it to the final mixer.
i'm looking forward to this now.
Hi - erm, hard off :-)
some kind of 'sequencer' would be nice for the video.
yeah, definitely. I think this can be done by changing the visibility of the individual renderchains, and those changes can be triggered by metros (periodical bangs) - so this should be possible within the current framework. There will also be a cheap sampler - ie., you can internally capture your output and feed it back to tvjt.
definately include as much audio-interactivity as you can. ideally you want to be able to trigger video events by audio events such as drum beats...also by midi input...and then the best would be the option of using audio signals to generate video.
beat detection is already there, and so is processing of external midi signals. these events trigger bangs that in turn trigger envelope generators, it is possible to adjust each and every aspect of a render chains with these values. I'd love to add more audio-related stuff, but I'm not exactly an audio guy and don't have much of a clue int his respect ... I'm using bonk for the beat detection, which works great. There is some sort of treble detection as well, which is more or less reliable (basically it's a hip~ that triggers a bang if a certain threshold in the amplitude is exceeded). If you have any suggestions on more audio feature extraction, I'd be glad to implement them :-)
also, it would be important for me to be able to feed in the output of my own patches to the video stream.
there will be some sort of an api, I'll also document the internal message structure so it should be relatively easy to add more filters etc. and it would definitely a good idea to add an input for external sources. that should be easy enough, it's merely a matter of importing a gem render chain. I actually talked to Ben Bogart about this, maybe we can settle on some sort of quasi-standard that would allow to share stuff across different gem applications.
thanks & with kind regards, thoralf.
Does your mail provider give you FREE antivirus protection? Get Yahoo! Mail http://uk.mail.yahoo.com
Hey all,
memento has the ability to store sets of states, and if you just interpolate these states you get a pretty cute sequencer. This is in pixelTANGO currently.
As for API this is a big questions, and I suppose Frank (Mr Memento) probably has some ideas about how RRADICAL patches get contributed to, style consistancy etc..
In pixelTANGO a "layer" is just a gem-chain, so the whole thing just needs to be connected via seperator and whatever objects can be added that you want. I spent a lot of time working on the plugin architecture for pixelTANGO, which could be very handy (I imagine for PiDiP/PDP abstractions) it works as so:
There is a special directory in the search path (fx/ in the case of pixes) This directory gets listed and parsed and an abstraction is created in PD for each of the abstractions. The abstractions then special abstractions that allow it to communicate with the outside patch (two inlets and two outlets). On the GUI side a popupbox shows the names of all of the abstractions in the array, and by choosing one the input/output gets switched for that abstraction. Right now it is used for pix_ effects but technically any object that operates on a gem-chain will work in there. I was going to add other modules for different classes of "plugins" from geos to ___?
The bonus with the system is that you make your own abstraction (based on the template of fx/negative.pd for example) drop it into the fx/ folder and the next time you open that patch the popup automatically contains a reference to your new abstraction. In theory it should be no problem to update the popup and abstractions at the touch of a special message, but the timing can be tricky.
Any other ideas about consistancy/API/Collaboration methods for this explosion of "vj" patches?
b>
Thoralf Schulze wrote:
Hi - erm, hard off :-)
some kind of 'sequencer' would be nice for the video.
yeah, definitely. I think this can be done by changing the visibility of the individual renderchains, and those changes can be triggered by metros (periodical bangs) - so this should be possible within the current framework. There will also be a cheap sampler - ie., you can internally capture your output and feed it back to tvjt.
definately include as much audio-interactivity as you can. ideally you want to be able to trigger video events by audio events such as drum beats...also by midi input...and then the best would be the option of using audio signals to generate video.
beat detection is already there, and so is processing of external midi signals. these events trigger bangs that in turn trigger envelope generators, it is possible to adjust each and every aspect of a render chains with these values. I'd love to add more audio-related stuff, but I'm not exactly an audio guy and don't have much of a clue int his respect ... I'm using bonk for the beat detection, which works great. There is some sort of treble detection as well, which is more or less reliable (basically it's a hip~ that triggers a bang if a certain threshold in the amplitude is exceeded). If you have any suggestions on more audio feature extraction, I'd be glad to implement them :-)
also, it would be important for me to be able to feed in the output of my own patches to the video stream.
there will be some sort of an api, I'll also document the internal message structure so it should be relatively easy to add more filters etc. and it would definitely a good idea to add an input for external sources. that should be easy enough, it's merely a matter of importing a gem render chain. I actually talked to Ben Bogart about this, maybe we can settle on some sort of quasi-standard that would allow to share stuff across different gem applications.
thanks & with kind regards, thoralf.
Does your mail provider give you FREE antivirus protection? Get Yahoo! Mail http://uk.mail.yahoo.com
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I forgot:
drum beats...also by midi input...and then the best would be the option of using audio signals to generate video.
The only option I can think of in this regard is pix_sig2pix, which output didn't quite convince me. But maybe that's just my bad taste :-) any other ideas?
How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
Ah... great, looking forward to it!
Best, p
On Aug 12, 2005, at 4:53 AM, Thoralf Schulze wrote:
Hi Paris,
I may be missing something, but is there a place to download tvjt and try it out?
you're not missing anything yet :-) tvjt is not complete yet, but will (hopefully) be in an early beta stage in about a week. The main work is actually already done: the user interface works, and so do the envelope generators, message routing works also fine. What's left to do is to slip in the actual functionality - I hope that this will merely be a copy-and-paste issue, since I've done this already with mapi. tvjt will be freely available once it is done.
with kind regards, thoralf.
To help you stay safe and secure online, we've developed the all
new Yahoo! Security Centre. http://uk.security.yahoo.com
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
I was about to ask the same thing.
v a d e //
http://homepage.mac.com/doktorp/ doktorp@mac.com
On Aug 11, 2005, at 3:02 PM, Paris Treantafeles wrote:
Hi Thoralf,
The screen shots look great. I may be missing something, but is there a place to download tvjt
and try it out?Best, paris
On Aug 11, 2005, at 2:21 PM, Thoralf Schulze wrote:
Hi list,
I'm currently working on a vj tool built around pd and gem. It's called tvjt, and it is supposed to be an easily and straight-forward operated application that can be used to do the usual vj stuff plus some nifty extras. tvjt is currently at a stage where it is easy to add more whistles and bells, so if you have a feature in mind that you always missed in one of the commercial vj tools, don't hesitate to drop me a mail.
Please have a look at
http://puredata.info/Members/tfbb/tvjt/index_html/view
for more details, there is also a wiki at
http://puredata.info/Members/tfbb/tvjt/TheTvjtWiki
that could serve at a exchange point for comments, feature requests and all the rest.
with kind regards, thoralf.
How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list