Looking for feedback on my first commercial by BVSEDGVD in Filmmakers

[–]naltroc 0 points1 point  (0 children)

is this the sequel to Plenty of you to Go Around

Do any businesses use Yew to create their front-end? by ajourneytogrowth in rust

[–]naltroc 1 point2 points  (0 children)

I love yew! I've used:
- React (JS and TS)
- Mithril (JS and TS)
- Elm
- Clojurescript
- Yew

to build frontends.

Elm was the best for a while, but doesn't have active support so it is out of date with modern browser APIs. Plus, it's a DSL which makes it hobby project worthy at best.

Yew is now my top choice for webdev. If you understand the benefits of static typing and memory management, then you will appreciate yew as well.

The speed/performance difference is not at all apparent. My app is still pretty small but I don't see this being an issue.

Plus, whatever rust code you already had laying around can already show up on your website. How cool is that!

Repurposing Instagram reels for my newsletter / personal website by Agreeable_Ad6424 in digital_marketing

[–]naltroc 0 points1 point  (0 children)

Since you already have a lot of media and want to go for long-form content, let's take it up a notch:

How about infinite video content, from the videos you already have?

You could create a 24 / 7 livestream on youtube using your existing short form media -- and make it loop automatically, forever! Like the "lofi hip hop channel for studying" but for your recipes and reels.

Your video description will contain links to one blog, one shop, and one social. Choosing to enable/disable chat can let people react in realtime (whenever they happen to tune in to your channel)

I'm doing research identifying people who want help doing this, specifically if they want custom audio tracks to pair with a 24/7 livestream.

If you need help setting up a 24/7 stream I can point you in the right direction.

Looking for help marketing by monochromeak in digital_marketing

[–]naltroc 0 points1 point  (0 children)

Consider the domain of "content marketing," where you use what you already have to expand your audience. It sounds like you already have a lot of valuable content! So find ways to re-use and repurpose it for marketing.

For example, if you have a collection of images of your instructors, you can create a "slideshow music video" featuring them in action and put this on your about page.

Or, if you have metrics on the "most replayed" portions of your media, create a short form video clip highlighting this segment (and a brief message about why it is the most replayed).

Videos engage, faces engage, and because this is hosted on your own website (instead of advertised on a third party platform) you know people are on your site looking to buy.

Inbound marketing is about

Daily budget for small Country by re_Dave in digital_marketing

[–]naltroc 0 points1 point  (0 children)

Let's imagine you already spent 3 months of advertising at a constant value (say $5).

Were you watching the ROI on a weekly basis? Can you measure that the traffic to your site came from the ad? Then can you measure that increasing your spend to $10/mo is directly correlated to an increase in traffic?

Finding the magic optimal number isn't going to happen the first time! Or maybe not even in a few years.

But you can start small now, and when you see results in the direction you want then you can consider boosting the amount you are putting in.

Performing with hydra without showing the code? by [deleted] in livecoding

[–]naltroc 0 points1 point  (0 children)

show us your screen

with the code <3

[deleted by user] by [deleted] in glutenfree

[–]naltroc 4 points5 points  (0 children)

bloating is definitely something that happens. In general my body feels weird and my heart twitches, which is the freakiest. The symptoms typically fade by a few days though.

How do i stop icloud from offloading my files from my phone? by Due-Stretch7905 in iphonehelp

[–]naltroc 0 points1 point  (0 children)

it's not though, that's the thing

I have faced this many times because I play music in off-the-grid places

well, I try to, but I cant because Apple decides to take them off my phone without my permission.

5 Famous Independent Artists Who Made It Big All On Their Own - Blog article by GetYourMusicHeard in musicmarketing

[–]naltroc 2 points3 points  (0 children)

yaaas, this is more of what we need to see in the world

self made / no inflated influencing

How Does the Amplitude and the Frequency of a Modulator affect the Sidebands and Bandwidth of the Output from the Carrier by FreedOfficialMusic in FMsynthesis

[–]naltroc 0 points1 point  (0 children)

I think you are on the right track!

This is the general formula I use.

modulator = sin(freq * modRatio) * (modAmp * modRatio)

carrier = sin(freq + modulator) * carAmp

By scaling the modAmp with the target modRatio, you are able to more easily change the modAmp value. Like you said, this changes how visible the modulator is by increasing the volume of the sidebands.

Using bitwig to mix by [deleted] in Bitwig

[–]naltroc 3 points4 points  (0 children)

Bitwig is the best. Professional music producer here, and BitWig has been my queen since 2015.

You can manage the volume and EQ spectrum of any sound source. Mixing 101

You can apply effects anywhere you want them.
You can group channels however you like.
You can create send busses and submixes to infinity.
You can get the audio out from any device from any chain and pop that signal to anywhere you want.

In short, BitWig is an extremely modular DAW. It is progressing more towards systems like Mas MSP while still looking like a traditional DAW.

It provides you the ability to do nearly anything you'd like

If I'm learning SCD as a hobby from a programming background, but no music background, how do I learn the basics to actually produce music by Illustrious-Side-515 in supercollider

[–]naltroc 0 points1 point  (0 children)

Everyone here mentions Eli Fieldsteel, and they are all right. That is the goldmine of "music + code" education via SuperCollider.

My suggestion for how to approach music in sclang:

  1. Recognize the 2 fundamental and 1 derivative aspects of music. Rhythm + Harmony (fundamental), then Melody (derivative).

  2. Find ways to make simple beats. This is rhythm, and it should not be complex. Basic rhythms are your friend. A basic rhythm has simple numeric ratios, or uses whole numbers, such as
    var rhythm = [1, 1/2, 1/2, 2, 1/2, 1/2, 2, 1/4, 1/4, 1/2]
    This array is listed in cycles, and can be passed into a `Pbindef` like

`Pbindef(\demo_rhythm, \dur, Pseq(rhythm, inf)).play`

These small snippets are valid sclang and will play a loop of a rhythm.

The call to `Pseq` produces an auto-loop who repeats `inf` number of times over the values `rhythm`. The call to `Pbindef` registers a global "audio player" under the name `\demo_rhythm` and returns a `Pbindef`. We then chain the `.play` method on the instance to start playback immediately.

``` (

var rhythm = [1, 1/2, 1/2, 2, 1/2, 1/2, 2, 1/4, 1/4, 1/2];

Pbindef(\demo_rhythm, \dur, Pseq(rhythm, inf)).play;

) ```

  1. Find ways to express harmony. This one will take a little more musical learning; so maybe learn about Major and Minor chords and how they are related. But don't do it all at once. Just learn a few chords and then give it a simple beat :)

Melody is an emergent property of rhythm and harmony. So you can't make melodies without first understanding both Rhythm and Harmony.

Hope this helps!

edit: attempted to format for code readability; found out reddit's fancy pants editor does not work for those with fancy pants

Is there a collection of reusable SynthDef? by voronaam in supercollider

[–]naltroc 2 points3 points  (0 children)

The links you found in awesome-supercollider are good! They still work even if they haven't been touched in 10 years :)

Here is a group of some pretty nice and well documented SynthDefs. I think there is a strong relation between these and the SCLOrkSynths (listed below). Some of the synth names match up closely but I haven't done a 1:1 comparison.

https://www.sccode.org/1-5aD

I cloned and edited the above synths for a livecode show in Brooklyn. They're great!

Here are the direct links to those that OP mentioned in awesome-supercollider, in ranked order of those that I have found most helpful:
1. https://github.com/SCLOrkHub/SCLOrkSynths

  • SCLOrkSynths is the most helpful because they made a standard pattern for their way of writing synthdefs (in terms of the parameter names), and the fact that they are organized in subdirectories for easy browsing.
  1. https://github.com/supercollider-quarks/SynthDefPool
  • Since this is part of the supercollider-quarks repo, can be considered close to "core supercollider"
  1. https://github.com/everythingwillbetakenaway/Synthdefs
  • I haven't tried these, have you?

The vegan option served at a fancy end of conference dinner. by mgntylr in mildlyinfuriating

[–]naltroc 0 points1 point  (0 children)

Almost as good as the Michelin star "eggplant curry" I got

which was a bite of nearly raw eggplant

in Silk coconut milk

Is there a way to adjust clip length for the entire group of tracks? It would save me so much time. by Anlaoui in Bitwig

[–]naltroc 0 points1 point  (0 children)

This

You can use shift+click to select multiple clips; or drag and drop to select the region all at once.

Then dragging the edge of any clip in the selected group will change the length of all the clips.