HISE Logo Forum
    • Categories
    • Register
    • Login

    Time Stretching

    Scheduled Pinned Locked Moved Feature Requests
    36 Posts 6 Posters 3.8k 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.
    • d.healeyD
      d.healey
      last edited by

      I think for now this is beyond my C++ level. I'll come back to it again at some point unless someone else implements it first (pleeeeaaaassseeee!!!) :D

      Libre Wave - Freedom respecting instruments and effects
      My Patreon - HISE tutorials
      YouTube Channel - Public HISE tutorials

      A 1 Reply Last reply Reply Quote 1
      • A
        andioak @d.healey
        last edited by andioak

        @d-healey said in Time Stretching:

        I think for now this is beyond my C++ level. I'll come back to it again at some point unless someone else implements it first (pleeeeaaaassseeee!!!) :D

        Thanks for giving this a go, David! This is indeed an attractive feature for hise! Can't wait for this to work. My C++ is much worse than yours, but perhaps not this guys:

        The Audio Programmer - "Implementing a TimeStretching Library (RubberBand)":

        (It's a live stream, so watch in 1.5x speed :) , not sure it gives you more insight than you got cause it's for JUCE. Perhaps the Hise part is more difficult)

        d.healeyD 1 Reply Last reply Reply Quote 1
        • d.healeyD
          d.healey @andioak
          last edited by

          @andioak Ah thanks, I'll check it out!

          Libre Wave - Freedom respecting instruments and effects
          My Patreon - HISE tutorials
          YouTube Channel - Public HISE tutorials

          Christoph HartC 1 Reply Last reply Reply Quote 1
          • Christoph HartC
            Christoph Hart @d.healey
            last edited by

            @d-healey I know somebody is working on it and has already implemented a node with rubberband so yes it‘s definitely possible and not too difficult to pull off.

            1 Reply Last reply Reply Quote 4
            • d.healeyD
              d.healey
              last edited by d.healey

              I think I'm making some progress with this, thanks to the video @andioak posted.

              However inside HISE, after I've successfully compiled my node, I'm not able to see it in the scriptnode workspace or in the Hardcoded Master FX. It tells me it can't find the dll. Any ideas?

              8ea21f83-cff0-4de7-b7a4-c0a5ce36c689-image.png

              Edit: If I remove this std::unique_ptr<RubberBandStretcher> rb; from my node it will show up in HISE. I don't know why though, or what to use instead.

              Libre Wave - Freedom respecting instruments and effects
              My Patreon - HISE tutorials
              YouTube Channel - Public HISE tutorials

              1 Reply Last reply Reply Quote 1
              • d.healeyD
                d.healey
                last edited by

                @Christoph-Hart What data is in data and how do I access it?

                template <typename T> void processFrame(T& data)
                {
                }
                

                Libre Wave - Freedom respecting instruments and effects
                My Patreon - HISE tutorials
                YouTube Channel - Public HISE tutorials

                ? 1 Reply Last reply Reply Quote 0
                • ?
                  A Former User @d.healey
                  last edited by A Former User

                  @d-healey

                  //processFrame is the audiobuffer 1 sample at a time:
                  
                  template <typename T> void processFrame(T& data)
                  		{
                  			for (auto& sample: data)
                  			{
                  				sample *= .5; // Volume @ 50% 
                  				// do other stuff
                  			}								
                  		}
                  
                  
                  //you can also do it this way (the method directly above processFrame):
                  
                  		template <typename T> void process(T& data)
                  		{
                  			static constexpr int NumChannels = getFixChannelAmount();
                  			// Cast the dynamic channel data to a fixed channel amount
                  			auto& fixData = data.template as<ProcessData<NumChannels>>();
                  			int numSamples = data.getNumSamples();	//data also has some of its own methods you can call, like getNumSamples()
                  
                  			for (auto ch : data)
                  			{
                  				dyn<float> channel = data.toChannelData(ch);
                  
                  				for (auto& sample : channel) //For each sample, same as processFrame
                  				{
                  					sample *= .5; // 50% volume					
                  				}
                  			}
                  
                  			//now we don't really need this stuff, since we did it manually:
                  
                  			/*
                  
                  			// Create a FrameProcessor object 
                  			auto fd = fixData.toFrameData();			
                  
                  			while (fd.next())
                  			{
                  				// Forward to frame processing
                  				processFrame(fd.toSpan());
                  			}
                  			*/
                  		}
                  
                  d.healeyD 1 Reply Last reply Reply Quote 2
                  • d.healeyD
                    d.healey @A Former User
                    last edited by

                    @iamlamprey Thanks! How did you figure it out? Any idea why my node won't show up in HISE?

                    Libre Wave - Freedom respecting instruments and effects
                    My Patreon - HISE tutorials
                    YouTube Channel - Public HISE tutorials

                    ? 2 Replies Last reply Reply Quote 0
                    • clevername27C
                      clevername27 @Christoph Hart
                      last edited by

                      @Christoph-Hart If you're really interested, I could arrange something with zPlane.

                      d.healeyD 1 Reply Last reply Reply Quote 4
                      • d.healeyD
                        d.healey @clevername27
                        last edited by

                        @clevername27 Elastique would be a good addition! We'd still need Rubberband as a baseline because the other algorithms don't have compatible licenses.

                        Libre Wave - Freedom respecting instruments and effects
                        My Patreon - HISE tutorials
                        YouTube Channel - Public HISE tutorials

                        clevername27C 1 Reply Last reply Reply Quote 1
                        • clevername27C
                          clevername27 @d.healey
                          last edited by

                          @d-healey Hit me up if you want to discuss further. That goes for any other commercial music software company, as well. It appears I'll be using HISE here, so I'm now invested. 🌈

                          d.healeyD 1 Reply Last reply Reply Quote 2
                          • d.healeyD
                            d.healey @clevername27
                            last edited by

                            @clevername27 said in Time Stretching:

                            I'll be using HISE here

                            Good choice!

                            Libre Wave - Freedom respecting instruments and effects
                            My Patreon - HISE tutorials
                            YouTube Channel - Public HISE tutorials

                            1 Reply Last reply Reply Quote 0
                            • ?
                              A Former User @d.healey
                              last edited by

                              @d-healey said in Time Stretching:

                              @iamlamprey How did you figure it out?

                              Christoph told me lol

                              d.healeyD 1 Reply Last reply Reply Quote 0
                              • ?
                                A Former User @d.healey
                                last edited by

                                @d-healey said in Time Stretching:

                                @iamlamprey Any idea why my node won't show up in HISE?

                                If it compiles okay, and doesn't show up in HISE it means there's an error in the code somewhere that the compiler didn't pick up, or you haven't linked the library(s) properly

                                1 Reply Last reply Reply Quote 0
                                • d.healeyD
                                  d.healey @A Former User
                                  last edited by

                                  @iamlamprey Now I don't feel so bad :p I'm trying to copy what the audio programmer does in the video but he's working directly with JUCE audio buffers. Do we have any access to them within the process function?

                                  Libre Wave - Freedom respecting instruments and effects
                                  My Patreon - HISE tutorials
                                  YouTube Channel - Public HISE tutorials

                                  ? 1 Reply Last reply Reply Quote 1
                                  • ?
                                    A Former User @d.healey
                                    last edited by

                                    @d-healey check out this thread:

                                    Link Preview Image
                                    Block-Based Processing in Third Party Node

                                    Sorry for the dumb question, had a bit of brain fog the last few days template void process(T& data) { static constexpr int NumChannels = getFixChannel...

                                    favicon

                                    Forum (forum.hise.audio)

                                    d.healeyD 1 Reply Last reply Reply Quote 1
                                    • d.healeyD
                                      d.healey @A Former User
                                      last edited by

                                      @iamlamprey Thanks, that got me a little further :)

                                      @Christoph-Hart Any idea why my node won't show up in HISE?

                                      Libre Wave - Freedom respecting instruments and effects
                                      My Patreon - HISE tutorials
                                      YouTube Channel - Public HISE tutorials

                                      1 Reply Last reply Reply Quote 0
                                      • d.healeyD
                                        d.healey
                                        last edited by

                                        @Christoph-Hart I have it working in Windows, but it still won't show up on my Debian machine. The DLL compiles successfully but it won't show up in the node list and I see this in the hardcoded fx

                                        a5264dc3-f31e-4c6f-a6d5-d0f061d555c9-image.png

                                        Libre Wave - Freedom respecting instruments and effects
                                        My Patreon - HISE tutorials
                                        YouTube Channel - Public HISE tutorials

                                        1 Reply Last reply Reply Quote 0
                                        • d.healeyD
                                          d.healey
                                          last edited by d.healey

                                          Aha I solved it. I was linking against my distro's rubberband library. I had to compile it myself and link against that instead. actually looks like I can use my distro's library, if I move it into the src folder and point the auto generated jucer project to it.

                                          Libre Wave - Freedom respecting instruments and effects
                                          My Patreon - HISE tutorials
                                          YouTube Channel - Public HISE tutorials

                                          Christoph HartC 1 Reply Last reply Reply Quote 0
                                          • Christoph HartC
                                            Christoph Hart @d.healey
                                            last edited by

                                            @d-healey There's also a Rubberband build configuration where you don't need to link against a prebuilt library and it builds it from the source files directly. I used this method and just threw the entire Rubberband library into ThirdPartyCode/src/Rubberband...

                                            d.healeyD 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            28

                                            Online

                                            1.7k

                                            Users

                                            11.9k

                                            Topics

                                            103.3k

                                            Posts