Forum
    • Categories
    • Register
    • Login

    Timestretch tempo sync, Num Quarters question

    Scheduled Pinned Locked Moved General Questions
    timestretchtempo sync
    16 Posts 3 Posters 1.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • David HealeyD
      David Healey @VirtualVirgin
      last edited by

      @VirtualVirgin I don't think that would work because the loop is still only going to be 2 bars.

      Free HISE Bootcamp Full Course for beginners.
      YouTube Channel - Public HISE tutorials
      My Patreon - HISE tutorials

      VirtualVirginV 1 Reply Last reply Reply Quote 0
      • VirtualVirginV
        VirtualVirgin @David Healey
        last edited by

        @d-healey But isn't the whole thing getting timestrethced?

        You can listen to my orchestral mockups here:
        https://www.virtualvirgin.net/
        I have a Git repo here:
        https://github.com/craig-van-hise

        David HealeyD 1 Reply Last reply Reply Quote 0
        • David HealeyD
          David Healey @VirtualVirgin
          last edited by

          @VirtualVirgin Yes, but each sample is a different length - higher notes have a shorter tail than lower notes. So putting in the total length won't work even if it is right for one sample - which I just tested and it doesn't work, the stretch ratio is completely wrong.

          @Christoph-Hart Any input on this?

          Free HISE Bootcamp Full Course for beginners.
          YouTube Channel - Public HISE tutorials
          My Patreon - HISE tutorials

          ChazroxC 1 Reply Last reply Reply Quote 0
          • ChazroxC
            Chazrox @David Healey
            last edited by

            @d-healey Would it be hard to impliment warping points based on transients marked by the user? Thats how its done in Abelton live. The algorithm I assume is using the math between those markers to calculate timestretching.

            idk f this helps but this is what I use to get some math out of it when im working...

            this is the beat increments in /ms @140 bpm.

            Im surrre with this math you should be able to come up with something. I've seen you guys do some crazy stuff.

            My guess is the match per beat in between bars (in /ms) needs to be stretched to target tempo (in /ms).

            Im not a coder at all and I could be speaking redundantly but this is my thought process as a music producer.

            https://anotherproducer.com/online-tools-for-musicians/delay-reverb-time-calculator/

            Screenshot 2025-02-01 at 3.09.15 PM.png

            ChazroxC David HealeyD 2 Replies Last reply Reply Quote 0
            • ChazroxC
              Chazrox @Chazrox
              last edited by

              Here's the chart @ 160bpm...

              so the quarter note length @ 140bpm just needs to be calculated to match the note length @160bpm.

              Screenshot 2025-02-01 at 3.13.33 PM.png

              1 Reply Last reply Reply Quote 0
              • David HealeyD
                David Healey @Chazrox
                last edited by

                @Chazrox said in Timestretch tempo sync, Num Quarters question:

                Would it be hard to impliment warping points based on transients marked by the user?

                Probably very hard - no idea - but not necessary for this issue. My samples were recorded to a fixed 140bpm click, it doesn't vary.

                I just had an idea though. I could forget about the tempo sync mode and use the time variant mode myself and do my own calculation of the pitch ratio - worth a try anyway.

                Free HISE Bootcamp Full Course for beginners.
                YouTube Channel - Public HISE tutorials
                My Patreon - HISE tutorials

                ChazroxC 1 Reply Last reply Reply Quote 0
                • ChazroxC
                  Chazrox @David Healey
                  last edited by

                  @d-healey well besides making a new feature in HISE, this is pretty much what I mean. These values are what you need. I've seen you guys do similar calculations before. I believe you can do it!

                  David HealeyD 1 Reply Last reply Reply Quote 0
                  • David HealeyD
                    David Healey @Chazrox
                    last edited by

                    @Chazrox said in Timestretch tempo sync, Num Quarters question:

                    These values are what you need.

                    I don't see how they are applicable in this situation.

                    Free HISE Bootcamp Full Course for beginners.
                    YouTube Channel - Public HISE tutorials
                    My Patreon - HISE tutorials

                    1 Reply Last reply Reply Quote 0
                    • David HealeyD
                      David Healey
                      last edited by

                      Ok here's the solution - well it doesn't answer my question but it gets the job done.

                      const var Sampler1 = Synth.getSampler("Sampler1");
                      
                      const th = Engine.createTransportHandler();
                      
                      th.setOnTempoChange(true, updateTimeStretchRatio);
                      
                      // fetch the current state
                      const var obj = Sampler1.getTimestretchOptions();
                      
                      // Apply your changes
                      obj.SkipLatency = true;
                      
                      // Update the options
                      Sampler1.setTimestretchOptions(obj);
                      
                      inline function updateTimeStretchRatio(newTempo)
                      {
                      	local ratio = newTempo / 140;
                      	Sampler1.setTimestretchRatio(ratio);			 
                      }
                      
                      

                      Free HISE Bootcamp Full Course for beginners.
                      YouTube Channel - Public HISE tutorials
                      My Patreon - HISE tutorials

                      1 Reply Last reply Reply Quote 1
                      • David HealeyD
                        David Healey
                        last edited by

                        I've added a SourceBPM property alongside NumQuarters so now I can just specify the BPM the sample was recorded at which seems more logical to me. I also fixed a bug that was causing clicks at certain BPMs. PR

                        Free HISE Bootcamp Full Course for beginners.
                        YouTube Channel - Public HISE tutorials
                        My Patreon - HISE tutorials

                        1 Reply Last reply Reply Quote 1
                        • First post
                          Last post

                        14

                        Online

                        2.3k

                        Users

                        13.6k

                        Topics

                        118.2k

                        Posts