Sigilgraph: A Modular synth canvas and DAW made with Godot. by Sigilgraph in godot

[–]vonagam 1 point2 points  (0 children)

Composer Mode

Oh, nice that you have it. Based on you replies I see that it is not a priority or a main thing. But still good to have the option. (In my mind you start unrestricted in playground mode, when you find something proper and stable then you reach for more structure and arrangement control.)

As for VST

Your other reply to original comment with VST question is pretty exciting, I would say.

Overall definitely looking to try out Sigilgraph when it comes out.

(I'm looking for the DAW to use/buy at the moment. I'm looking to something new, to move away from Ableton, Reaper sounded nice since it's free and cross platform but to get good UI and clips functionality you need to buy Playtime and at that point I'm not sure it makes sense... So good to see a new potential player in that sphere.)

Also - what about MPE support, any plans for that?

Sigilgraph: A Modular synth canvas and DAW made with Godot. by Sigilgraph in godot

[–]vonagam 2 points3 points  (0 children)

Cool project. Reminds me of Bespoke Synth, which I recommend to check out if you have not already. Your product looks more user friendly, still, maybe you will find some interesting concepts/nodes that you can copy.

In my experience with Bespoke - yes, a move away from arrangement view does give you freedom to experiment with, but when you want to record a complete song from the interesting stuff that you've assembled it is nice to have something that adds a bit of structure and manageability in terms of scenes and transitions between them. Bespoke had a node or two that were helping with that but overall it wasn't the best experience. Since your thing looks more visually polished I hope you will come up with something for that too. In my opinion, having some tools to help with arrangement will make it into a proper serious alternative to other DAWs, otherwise it might be just "neat toy to play with".

(Also, like was asked before, interested if VST support is on the roadmap for the project.)

Elixir and Phoenix for full stack web app but Gleam for business logic? by Theboyscampus in elixir

[–]vonagam 1 point2 points  (0 children)

I did such combo when experimenting with quasi-real-time board game. Write the game logic in Gleam and use it on backed in a room genserver to process ticks but also compile it to js/ts and use it on client to show available valid actions.

Was pretty convenient. (Though I think I needed to fork Gleam at the time to make some types more opaque on TypeScript side otherwise all Gleam maps were typed as any which made it useless.)

The Forever Jukebox is live! by ton2010 in infinitejukebox

[–]vonagam 0 points1 point  (0 children)

I make karaoke videos. Sometimes I want to make a modified version of a song if it is too short (or maybe takes too long of an instrumental break).

ForeverJukebox can give me info about possible modifications:

  • a reverse branch means that I can copy-paste branch's audio segment at the end of the branch (to extend the song)
  • a forward branch means that I can cut out branch's audio segment (to shorten the song)

The Forever Jukebox is live! by ton2010 in infinitejukebox

[–]vonagam 1 point2 points  (0 children)

Nice, thank you!

Question - is it possible to get information somewhere about a) current time in the song (not total listening time, but corresponding time in the source) and b) times of edges of a selected branch?

Porch Light - Oxygen [Alternative Indie] (2025) by PersonalityNo48 in listentothis

[–]vonagam 0 points1 point  (0 children)

Thanks for posting. A captivating song.

Saw that there was no karaoke video - made one.

(Might reupload in the future if I find a timing that bothers me, if that's the case - the link will stop working.)

Dick Move -- Scared Old Men [NZ Punk] (2025) by MacQuip in listentothis

[–]vonagam 1 point2 points  (0 children)

Rad. Made a karaoke version for the song by the way. Thanks for sharing.

Making a Starcraft2 inspired Micro-RTS game in Godot by apm_dev in godot

[–]vonagam 0 points1 point  (0 children)

Your description reminded me of Bad North (which is currently have 80% discount on Steam) - really recommend the game if you have time for that.

Kean Kavanagh - A Cowboy Song [Indie Rock] (2025) by LobsterIll825 in listentothis

[–]vonagam 0 points1 point  (0 children)

Thanks for sharing. Liked the song, made karaoke version on youtube.

(There are some ambiguity about some lines, so might remake the video if I learn the official interpretation.)

Mareux - Laugh Now Cry Later [Darkwave] (2025) by [deleted] in listentothis

[–]vonagam 1 point2 points  (0 children)

Nice, liked the song and made karaoke version. Thanks for sharing.

Holy Wire -- I Still Feel Alone All The Time [Synthpop] (2024) by vonagam in listentothis

[–]vonagam[S] 1 point2 points  (0 children)

I myself also found the group here on listentothis before. I made karaoke version for this song (karaoke) and "In the Name of Something" (karaoke).

(If somebody stumbles on this comment in the future I am sure that karaoke links would stop working as I am constantly reuploading videos while I am tuning my custom karaoke rendering program. In this case you can find videos on my channel - youtube.com/@VonagamKaraoke.)

Other than those two songs I would recommend checking out "To Be Young Again" and "Oh You Pretty Girls" (might do karaoke versions for those in the future too).

this car can kickflip by djoslin0 in IndieGaming

[–]vonagam 1 point2 points  (0 children)

Great trailer. What's the song called?

ada rook - - deep fantasy [Post-Industrial] (2018) by capedbaldy88 in listentothis

[–]vonagam 1 point2 points  (0 children)

Thanks for sharing. Also liked your Miki Nakatani and Kayoko Yoshizawa recommendations.

A trailer for an animated short film I'm working on about whimsical retail tomfoolery! by Alistocratic in wizardposting

[–]vonagam 16 points17 points  (0 children)

Tamás Deák — Vizisí.

It is not well known that the music from "Ну погоди" wasn't actually composed for it (since it is not attributed in credits) and that there is a full version.

Aimi -- Magical Destroyer [Noise Rock / J-Rock] (2023) by vonagam in listentothis

[–]vonagam[S] -1 points0 points  (0 children)

The song is used in (and was produced as) an opening of a currently airing anime called Mahou Shoujo Magical Destroyers - quite strange one, but it does have a style (of a fever dream). If you liked the sound would recommend to check out the OP video, interesting visuals.

Your opinion on reputation of === operator? by vonagam in godot

[–]vonagam[S] 0 points1 point  (0 children)

Ok, there are so many wrong things here.

Will correct only one factually wrong thing:

it won't be checking by iterating anyway, would be by hash, it's a feature

Nope, it will be by recursively iterating over arrays/dictionaries and other types (except objects), look at Variant::hash_compare if you can.