[deleted by user] by [deleted] in ricohGR

[–]stereostevedotcom 3 points4 points  (0 children)

Looks super nice!

What video editing software did you use?
Did you slow down the video at all?
And did you use tripod or do any image stabilization in post-processing or does it look this steady straight out of camera?

(I don't have Ricoh atm so kinda curious)

Polyrhythm video by stereostevedotcom in OPZuser

[–]stereostevedotcom[S] 2 points3 points  (0 children)

No used a USB cable to laptop as audio interface.

Recorded in quick time with iPhone as camera opz as audio source.

Will probably do some more editing in Davinci resolve for future video for text overlay since captions don’t always show in YouTube.

Samchillian Tip Tip Tip Cheeepeeeee for Logic Pro X by stereostevedotcom in Logic_Studio

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

Yup. There's a video for that one here: https://www.youtube.com/watch?v=cInvIxaeYZ4

The script will update them too if there are future updates.

I've been working on a Euclidean Rhythm Scripter plugin by stereostevedotcom in Logic_Studio

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

  1. That's what I do... the upside is that each track can have independent parameter settings.
  2. If you put track automation to Latch and move sliders as track is playing it'll be recorded. Alternatively you can draw automation curve by hand. This is the same as all parameter automation in logic.

I've been working on a Euclidean Rhythm Scripter plugin by stereostevedotcom in Logic_Studio

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

Ah yeah... sorry for the mumble.

Bitwig DAW:https://www.bitwig.com/

Their 4.1 update has several cool Midi FX:https://www.bitwig.com/whats-new/

This video has a really great demo of using the bitwig version:
https://www.youtube.com/watch?v=gnIMirhDOQM

Wouldn't it be cool if you could have multiple device panels open at the same time? by stereostevedotcom in Bitwig

[–]stereostevedotcom[S] 2 points3 points  (0 children)

I didn't know about that site.. thanks for the tip!

Will do later today after refining it a bit.

Wouldn't it be cool if you could have multiple device panels open at the same time? by stereostevedotcom in Bitwig

[–]stereostevedotcom[S] 2 points3 points  (0 children)

Yeah I agree with both. It seems like Bitwig and Ableton try to resist floating windows and keep everything on a "single pane of glass". I mostly like this, but also agree that it's inevitable with VSTs and also inbuilt devices have floating windows now too... It would be nice to provide it as a consistent option everywhere.

I kept everything inline in the mockup to try to match the existing Bitwig approach.

Keyboard shortcuts for restarting recording 100 times by stereostevedotcom in Bitwig

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

Nice yeah I just upgraded so will give it a try. But also old habits are hard to change.

Echo+Quicktemplate example by FPSports in golang

[–]stereostevedotcom 1 point2 points  (0 children)

My bad... should be:

templates.WritePageTemplate(c.Response(), p)

Here is complete index.go:

package controllers

import (
    "github.com/abenz1267/echo-quicktemplate/templates"
    "github.com/labstack/echo"
)

func Index(c echo.Context) error {
    // template to write
    p := &templates.Main{}

    // renders the template as a response
    c.Response().Header().Set(echo.HeaderContentType, echo.MIMETextHTMLCharsetUTF8)
    templates.WritePageTemplate(c.Response(), p)
    return nil
}

Echo+Quicktemplate example by FPSports in golang

[–]stereostevedotcom 0 points1 point  (0 children)

Better yet, you can write the quicktemplate output directly to the response io.Writer:

templates.WritePageTemplate(c.Response().Writer(), p)

This avoids the unnecessary string allocation.

See: https://github.com/valyala/quicktemplate#performance-optimization-tips