Skip to content
Forum Archive

AVS in Javascript

62 posts

z33m#

AVS in Javascript

Hi guys,

Im working on a Winamp AVS like clone for HTML5/WebGL/Webaudio. Please check https://github.com/azeem/webvs

Only fairly basic work done so far. Hoping to build AVS objects one by one and fill the gaps. What is working currently:
  1. Very Basic Effectslist
  2. OnBeat Clear
  3. Mostly working Superscope
  4. Dynamic Movement
  5. Fadeout
  6. Simple 3x3 Convolution
  7. Image loader
  8. Basic avs expressions. with avs expression to javascript/glsl parser


Presets are defined as JSON.
The demo loads a soundcloud track and runs the animation in the background.
Paste a soundcloud track url (or use the prefilled value) and hit "Play".
You can edit the JSON and hit "Run Preset" to reload it.

Any Help/Contributions/Suggestions/Criticism are welcome. Thanks
QOAL#
This is really cool, it's like you read my mind.

That said, this doesn't work in firefox as it spews a lot of security errors. (I assume it's due to cross domain file access)

I also broke it when I copied over some DM code from a jheriko preset. (I was using chrome)

But cool nevertheless.
z33m#
Originally Posted by QOAL View Post
This is really cool, it's like you read my mind.

That said, this doesn't work in firefox as it spews a lot of security errors. (I assume it's due to cross domain file access)

I also broke it when I copied over some DM code from a jheriko preset. (I was using chrome)

But cool nevertheless.
Yeah there are some problems with firefox, for me it throws "HTTP "Content-Type" of "audio/mpeg" is not supported." so i was guessing it was some codec issue.

Yes the expression support is pretty basic right now. Only simple trigonometric and math functions are supported. Could you give me the DM code/Preset that broke? will be helpful in debugging.

The way im going about right now is picking Presets starting from simpler ones and then try to implement AVS objects and or make improvements such that they run on webvs. It will be useful if anyone can suggest some simple presets to work with.

There is also a very simple APE like setup for writing components.
QOAL#
Firefox supports system codecs now, I guess it's not supported on your system then.
(Here's the bug for it, and you can quickly check what browsers support on your machine with the html5test)

Just testing a superscope now and the rand function is wrong, it should return an integer.
This should fix it:
return Math.floor(Math.random() * max) + 1;
Adding a randf function might be nice, in the future.

I've been out since I tested this earlier and I can't reproduce the error I had (it was function overloading related), so I wouldn't worry about that for now.
(It was the DM from the bottom of Jheriko - Pack VIII - Tachyon Based Data Hub)

For simple presets, winamp used to ship a pack called "newpicks", these presets are pretty ancient in AVS terms.
I've attached it for your convenience.
z33m#edited
Originally Posted by Yathosho View Post
if only the format of avs was more understandable, would love to contribute a conversion tool
That is a brilliant idea, will be really useful, for debugging also.

I was checking the AVS cpp code to see how the files are read/written. Here is what i've understood so far, if its of any help to anyone. Will need more help from someone with better understanding of the code.

The basic preset reading starts at __LoadPreset method in r_list.cpp. From there it goes on to read a root effectlist, and subsequently all the effects in the preset,

The basic structure is something like this:
  1. AVS Signature string - "Nullsoft AVS Preset 0.2\x1a"
  2. Root Effectlist Config - Effectlist config contains the following
    1. mode (1 BYTE + 1 optional INT depending on the value of the first byte) - Not exactly sure how this is used. but i think it determines how some of the effectlist settings are read.
    2. several INT values containing effect list settings. These i think are optional depending on the mode
    3. config data for all sub effects


The structure for each effect including effectlist (other than the root) is as follows.
  1. EffectId INT - This indicates the effect type. There are three cases for this
    1. if EffectId == LIST_ID (0xfffffffe) then this is an effectlist
    2. if EffectId < DLLRENDERBASE (16384) then this is a built in effect and EffectId is the index in the effect initializer declarations ie. DECLARE_EFFECT calls in rlib.cpp.
    3. if EffectId > DLLRENDERBASE then i think the effect is loaded externally. The EffectId in this case is followed by a 32 byte string identifying the effect.
  2. Length INT - Length number of bytes that follow make the config for this effect.
  3. Config Code (Length BYTES) - This data i think is passed to load_config method of corresponding effect classes to initialize each effect.


Further, for externally loaded effects, it seems that the Config Code Section again has a structure like
  1. use_code INT - Not sure what this means exactly.
  2. length INT - number of bytes of config data that follows.
  3. actual config data?


Meanwhile, on WebVS side, i ve added more stuff
  • More Effects
  • Blending related stuff
  • Support for Registers and more avs functions
  • The demo now runs UnConeD's "Silk Strings" preset.


Not sure how far i can maintain compatibility with AVS. I am also adding some improvements, like
  • Named global vars - variables starting with @ symbol are global.
  • clone - Effects can contain a clone parameter, an integer that would create multiple instances of the same effect. The clone index is then available as a variable in the avs expressions.


I am also trying to figure out a way to do an AVS editor like UI.
QOAL#
Webgl/shader stuff is alien to me, so I've started working on an editor for this.

Here's a screen shot of how it currently looks:


The idea I have for this is that besides the main editor (Which is resizeable), you can pop out effects into their own window.
It should also allow for the visualisation to be shown in the page background, or in a window.
And in an ideal world you'll be able to drag & drop avs presets on to the window to load them.

I'll post a link to it when it starts getting usable.

I don't have WebVS running locally because I don't have whatever is used to build it (I assume it's node), so there is no integration with that currently.
z33m#
Originally Posted by QOAL View Post
Webgl/shader stuff is alien to me, so I've started working on an editor for this.

Here's a screen shot of how it currently looks:


The idea I have for this is that besides the main editor (Which is resizeable), you can pop out effects into their own window.
It should also allow for the visualisation to be shown in the page background, or in a window.
And in an ideal world you'll be able to drag & drop avs presets on to the window to load them.

I'll post a link to it when it starts getting usable.

I don't have WebVS running locally because I don't have whatever is used to build it (I assume it's node), so there is no integration with that currently.
This looks really nice. Is this is a standalone desktop tool?
I have also put together a somewhat basic HTML5 UI that could replace the textbox in the demo.

Here is a screenshot of what it looks like:



Somewhat basic stage right now, please check the code, i have put it on a separate branch on the repo (https://github.com/azeem/webvs/tree/editor).
The UI is pretty much similar to AVS itself. Popout and Drag and Drop are great ideas, the visualization can be played in the background, just like the demo we have right now.

WebVS uses grunt for building. You need to have nodejs, npm and grunt installed.

Clone the repo and run
npm install
This will install all the build tools.

To build, i run
grunt
.
This will generate all the files in the build directory.

To test, i run a simple http server in the repo directory with
python -m SimpleHTTPServer
and hit localhost:8000 in the browser.

Also, if you run
grunt watch
it'll run a continuous build, whenever you save files it'll regenerate, so you just have to refresh the browser.
z33m#
A more ambitious idea is to have a WebVS editor + Gallery kind of site.
Where users can create, save, share, rate, view and fork presets.
Something similar to http://sketchpad.cc and the likes, but for AVS presets.
Thats still a long way though :P
QOAL#
Originally Posted by z33m View Post
This looks really nice. Is this is a standalone desktop tool?
It's HTML5. 🙂
I had a simple window system laying around that I was going to use as a backend for websites, but I never got around to that, so I've re-purposed it.


I'll have a look at your editor branch in the morning, but you seem to have made some good progress judging from those screens. Certainly ahead of me, even if it's not as pretty.


Along with D&D for presets it would be trivial to support audio too that way.


Ah, great! Thank you for the build instructions.
z33m#
Originally Posted by QOAL View Post
It's HTML5. 🙂
I had a simple window system laying around that I was going to use as a backend for websites, but I never got around to that, so I've re-purposed it.
Wow, thats really cool. I have a hard time getting the CSS right, even for this primitive looking UI 😁
Yathosho#
that's awesome. since it's still in early stages, think of adding an option to the editor to load custom css (rather than demanding users to use a userstyle/greasemonkey script etc.)
Yathosho#edited
i did a pull request on github in which i added working cdn links for codemirror and jquery. also, the (current) editor is now draggable.

haven't figured out your soundcloud code yet, but i think it'd be great to have support for playlists as well. also, i tried adding an option to hide the fps counter through a url parameter (e.g. "?showfps=false"), but i don't even know how the html source is generated.
Yathosho#
a couple of other things i noticed:

webkit/bink based browsers:
- works in chrome
- doesn't work in chromium (no sound)
- doesn't work in opera 5 or opera next (no sound)
- doesn't work in safari (no sound, no visual - just the editor)

i also noticed that when i edited the default soundcloud track in the demo, a second instance of the track started sometimes (in particular with this track, others worked fine). when reloading the page, i sometimes experienced chopped sounds.

since the actual html of the demo seems to be rendered the javascript, it would be nice if you could put the un-minified files on github. reading one-letter variable names can be very confusing.
Yathosho#
i've committed a second example that allows passing url parameters to control the initial zoom factor, the initial soundcloud track and to hide controls.

demos:
-zoom=4
-different soundcloud track
-controls=hide

parameters can be combined as well
Yathosho#
i played around a bit more with the editor and there are a couple of things i'd like to add. however, i would like you to explain a couple of things first.

1. is demo.min.js what a preset file would look like or is it a combination of the preset (as json) and some extra stuff?

2. i tried to add the code from the codemirror theme demo to the editor, but i'm not sure how that editor works. the input fields are being displayed a pre tags, not input or textareas. i think it would be a nice option to be able to change the theme of the syntax highlighter.

3. what else is codemirror doing than providing the editor with syntax highlighting?
z33m#
Thanks for the changes you've submitted. The url param idea is cool. An interesting hack would be to encode the entire preset as base64 and accept it as a urlparam. This would allow us to share preset code as well in the url.

Originally Posted by Yathosho View Post
i played around a bit more with the editor and there are a couple of things i'd like to add. however, i would like you to explain a couple of things first.

1. is demo.min.js what a preset file would look like or is it a combination of the preset (as json) and some extra stuff?
I'll try to explain the basic structuring of the code in the repo.
  1. /js - This contains the main WebVS library. I have designed things around a core visualization library. This is pure JS, just few dependencies. Essentially anyone can plug this library into any application, create a webvs object with proper options and start playing visualizations.
  2. /js/core.js - This file contains all the base stuff including the base webvs object and base classes for all the components.
  3. /js/** - All other files have one effect component or contain utility classes and stuff
  4. /test/** - this contains just some very basic qunit test cases, for the expression parser mainly.
  5. /demo - This contains the demo app that i have hosted at url
  6. /demo/demo.js - This code runs the demo app with the editor and stuff. It uses the webvs library. This code contains a hardcoded preset, which is shown in the editor.


when you build the code 1.) all the webvs library files are assembled into one js file 2.) most of the other stuff are just copied into build directory, so you can run the demo from there.

when you build the code with "grunt dist". It generates all the same stuff in dist directory, but with minification. Its this dist directory that i have put on the demo page.

Originally Posted by Yathosho View Post
2. i tried to add the code from the codemirror theme demo to the editor, but i'm not sure how that editor works. the input fields are being displayed a pre tags, not input or textareas. i think it would be a nice option to be able to change the theme of the syntax highlighter.

3. what else is codemirror doing than providing the editor with syntax highlighting?
Code mirror simply creates an editor inside a container div that we have on the page https://github.com/azeem/webvs/blob/...o/demo.js#L257

I do not know what could be the scope of the JSON editor based UI. I am working on the an AVS editor like UI, which should be much more simpler to use. The JSON format was meant to be a structure consumable by the WebVS library.

I would like to push the editor UI out into master and use it as the main app. Please take a look at the code in /editor in the editor branch.
Yathosho#
Originally Posted by z33m View Post
Thanks for the changes you've submitted. The url param idea is cool. An interesting hack would be to encode the entire preset as base64 and accept it as a urlparam. This would allow us to share preset code as well in the url.
this idea is awesome, though probably not applicable.

/demo/demo.js - This code runs the demo app with the editor and stuff. It uses the webvs library. This code contains a hardcoded preset, which is shown in the editor.
once webvs is at a stage that it can load files, will these be contain only the json portion?
Yathosho#
quick and dirty loader that reads preset files from a directory. i won't be able to refine this before later tonight or tomorrow. it currently only works after the second selection (applying the first) and it currently appends an editor window to the bottom. will get there eventually, but if someone wants to post suggestions in the meantime...

ps: i previously reported simultaneous tracks playing at times, i guess that can be caused when using multiple editors
Yathosho#
okay, since i shared that terribly miserable loader prototype, i not only travelled 50km by bike, i also gave webvs a little thought.

1. webvs as a service
the loader is the first demo that relies ln the usage of a server-side language, namely the immensely horrible php scripting language. the script populates the dropdown menu for the presets. would i be fluent in cool languages like python, i wouldn't have taken such matters, while rails wasn't applicable as a quick solution. anyway, clear is on thing: webvs can run online and certain stuff will have to be done dynamically on the server side.

2. webv as an app
one would want to avoid duplicate work wherever possible. the combination of modern javascript and html5 enables webvs to run on all platforms that provide modern browser technology. since the current version of webvs runs on google chrome only (bizarrly other webkit browsers are not supported), i think it's worth thinking about using nodejs as a platform to deploy webvs on the desktop. this would eliminate the need of a variety of languages and little to no adjustments to let webvs run on the server or locally. that said, i probably should have populated the afforementioned preset dropdown using javascript.

so far i have enjoyed playing around with the available code, especially to test out what could be done on the frontend. i'm not particularly happy about the use of codemirror, as it seem a bit over the top for a rather simple task. also i'd prefer using real html textareas in the editor. regarding the syntax highlighting, there are several simpler solutions in the form of javascript. also, i'm not too happy about the current state of modules. things should be kept simple and modular, the current demo.js contains both the presets plus some additional code.

what are your plans for webvs' future regarding the scale of avs-compatibility and how do judge the level of accuracy? what are your plans regarding web platform and desktop deployment?
Yathosho#
i think i will rebuild the frontend from ground up, replacing the editor library with something simpler, then add support to load (and later save) presets. i will then think about how to run server-side code on the nodejs platform. (did i mentioned how extremely well nodejs performs multithreaded?)

for the future, i could see some great ways to integrate music playback. besides soundcloud, other audio and video platforms should be integrated, interacting with all the user features (favourites, libary) that platform offers. needless to say, local music playback should be supported as well, again including library capability and favourites from popular players.

z33m: you started a fire!
Yathosho#
and one more idea:

so far the code is mostly clean and modular (apart from demo.js), so i think if somebody doesn't agree with my ideas for the ui (or simply prefers the classic avs editor approach qoal has taken), the ui part should be kept just as simple as the rest of the plugin. users should be able to install and select a various frontend themes. the webvs core should make it easy for such third party addons to use a variety of libraries (in a similar way jsfiddle offers jquery, mootools etc.). syntax highlighting should be optional from the frontend decisions (though a theme could override that), providing a variety of userstyles in a seperate library. most of the javascript highlighting solutions i prefer over the current editor (i.e. enlighter, highlight.js etc.) already support a variety of highlighting themes.
z33m#
Originally Posted by Yathosho View Post
okay, since i shared that terribly miserable loader prototype, i not only travelled 50km by bike, i also gave webvs a little thought.

1. webvs as a service
the loader is the first demo that relies ln the usage of a server-side language, namely the immensely horrible php scripting language. the script populates the dropdown menu for the presets. would i be fluent in cool languages like python, i wouldn't have taken such matters, while rails wasn't applicable as a quick solution. anyway, clear is on thing: webvs can run online and certain stuff will have to be done dynamically on the server side.
This is definitely a good direction, this is precisely what i meant by the "webvs gallery + editor site". I was hacking around with a little bit of https://www.firebase.com/ to getaway with having to write serverside code, though having a server side backend does sound more robust.

Originally Posted by Yathosho View Post
2. webv as an app
one would want to avoid duplicate work wherever possible. the combination of modern javascript and html5 enables webvs to run on all platforms that provide modern browser technology. since the current version of webvs runs on google chrome only (bizarrly other webkit browsers are not supported), i think it's worth thinking about using nodejs as a platform to deploy webvs on the desktop. this would eliminate the need of a variety of languages and little to no adjustments to let webvs run on the server or locally. that said, i probably should have populated the afforementioned preset dropdown using javascript.
Browser compatibility is a bit rough right now, I'll need to find some time to fix this. I havnt thought about this possibility of running webvs in node. This should be possible theoretically. However state of webgl support in headless browser kits or projects like node-webgl seems limited, need to investigate.

Originally Posted by Yathosho View Post
so far i have enjoyed playing around with the available code, especially to test out what could be done on the frontend. i'm not particularly happy about the use of codemirror, as it seem a bit over the top for a rather simple task. also i'd prefer using real html textareas in the editor. regarding the syntax highlighting, there are several simpler solutions in the form of javascript. also, i'm not too happy about the current state of modules. things should be kept simple and modular, the current demo.js contains both the presets plus some additional code.
demo.js was a small hack that i put together to test/demonstrate the library. I just kept adding some smaller changes to it. Never meant it to be used as a real editor, IMO its rather cumbersome to edit avs expressions inside the JSON since they are quoted as strings.

Originally Posted by Yathosho View Post
what are your plans for webvs' future regarding the scale of avs-compatibility and how do judge the level of accuracy? what are your plans regarding web platform and desktop deployment?
I am trying to build components one by one, eventually i hope we'll get to a point where a good number of presets can be supported. As for accuracy, results look pretty good so far, There are a lots of issues and loose ends, like eg. the color of unconed's silk string preset is somewhat messed up, the movement is very shaky compared to AVS and so on.

Originally Posted by Yathosho View Post
i think i will rebuild the frontend from ground up, replacing the editor library with something simpler, then add support to load (and later save) presets. i will then think about how to run server-side code on the nodejs platform. (did i mentioned how extremely well nodejs performs multithreaded?)

for the future, i could see some great ways to integrate music playback. besides soundcloud, other audio and video platforms should be integrated, interacting with all the user features (favourites, libary) that platform offers. needless to say, local music playback should be supported as well, again including library capability and favourites from popular players.

z33m: you started a fire!
Originally Posted by Yathosho View Post
and one more idea:

so far the code is mostly clean and modular (apart from demo.js), so i think if somebody doesn't agree with my ideas for the ui (or simply prefers the classic avs editor approach qoal has taken), the ui part should be kept just as simple as the rest of the plugin. users should be able to install and select a various frontend themes. the webvs core should make it easy for such third party addons to use a variety of libraries (in a similar way jsfiddle offers jquery, mootools etc.). syntax highlighting should be optional from the frontend decisions (though a theme could override that), providing a variety of userstyles in a seperate library. most of the javascript highlighting solutions i prefer over the current editor (i.e. enlighter, highlight.js etc.) already support a variety of highlighting themes.
I agree with this, any larger UI/Frontend work is big project in itself with lots of dependencies, it is nicer to keep the webvs core library simple.
QOAL#
I've attached the editor I worked on as-is.

Sadly I got fed up failing to code recursive drag & drop for the tree list, that coupled with depression and not wanting to fix the small css issues outside of firefox (so frustrating that after all these years there are still miss matches between browsers, even with css3 stuff). (I may fix them at some point)

I didn't get around to adding the pop-out windows, it would be a little ↗ icon on the right hand side, opposite the element label.

Anyway, I'm sure the code is ghastly for others to see, but it doesn't use any external libraries.
Yathosho#
@qoal since i noticed you have a github account, could you please put it there? there are some changes i'd like to do for better browser compatibility and i think that would be the best way.
Yathosho#
Originally Posted by z33m View Post
That is a brilliant idea, will be really useful, for debugging also.

I was checking the AVS cpp code to see how the files are read/written. Here is what i've understood so far, if its of any help to anyone. Will need more help from someone with better understanding of the code.

The basic preset reading starts at __LoadPreset method in r_list.cpp. From there it goes on to read a root effectlist, and subsequently all the effects in the preset,

The basic structure is something like this:
  1. AVS Signature string - "Nullsoft AVS Preset 0.2\x1a"
  2. Root Effectlist Config - Effectlist config contains the following
    1. mode (1 BYTE + 1 optional INT depending on the value of the first byte) - Not exactly sure how this is used. but i think it determines how some of the effectlist settings are read.
    2. several INT values containing effect list settings. These i think are optional depending on the mode
    3. config data for all sub effects


The structure for each effect including effectlist (other than the root) is as follows.
  1. EffectId INT - This indicates the effect type. There are three cases for this
    1. if EffectId == LIST_ID (0xfffffffe) then this is an effectlist
    2. if EffectId < DLLRENDERBASE (16384) then this is a built in effect and EffectId is the index in the effect initializer declarations ie. DECLARE_EFFECT calls in rlib.cpp.
    3. if EffectId > DLLRENDERBASE then i think the effect is loaded externally. The EffectId in this case is followed by a 32 byte string identifying the effect.
  2. Length INT - Length number of bytes that follow make the config for this effect.
  3. Config Code (Length BYTES) - This data i think is passed to load_config method of corresponding effect classes to initialize each effect.


Further, for externally loaded effects, it seems that the Config Code Section again has a structure like
  1. use_code INT - Not sure what this means exactly.
  2. length INT - number of bytes of config data that follows.
  3. actual config data?


Meanwhile, on WebVS side, i ve added more stuff
  • More Effects
  • Blending related stuff
  • Support for Registers and more avs functions
  • The demo now runs UnConeD's "Silk Strings" preset.


Not sure how far i can maintain compatibility with AVS. I am also adding some improvements, like
  • Named global vars - variables starting with @ symbol are global.
  • clone - Effects can contain a clone parameter, an integer that would create multiple instances of the same effect. The clone index is then available as a variable in the avs expressions.


I am also trying to figure out a way to do an AVS editor like UI.
i came across this today:

Grandchild#
Just to let people know that I've started working on an automatic converter from .avs to (what yathosho and I feel should be called) .webvs files.


Originally Posted by Yathosho View Post
this is a nice doc, but it's also seemingly an older version of the file format, or a not-always-well-researched one. it has much good information, but some errors. just to let people know.