HISE Logo Forum
    • Categories
    • Register
    • Login

    Spectral Analyser Questions

    Scheduled Pinned Locked Moved General Questions
    13 Posts 3 Posters 566 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.
    • ustkU
      ustk @mehmethand
      last edited by

      @mehmethand ahah that’s all I’d like to have too especially for the upcoming release :) but that might be too much too ask… maybe having a larger window is doable, I’ll try to have a look tomorrow if I could find in the source…

      Can't help pressing F5 in the forum...

      M 1 Reply Last reply Reply Quote 1
      • M
        mehmethand @ustk
        last edited by

        @ustk Thank you so much. I also checked the source code but I couldn't find anything. I'm sure many of the answers are hidden there.

        ustkU 2 Replies Last reply Reply Quote 0
        • ustkU
          ustk @mehmethand
          last edited by

          @mehmethand The truth about the universe is there, somewhere deep inside the source code…

          Can't help pressing F5 in the forum...

          1 Reply Last reply Reply Quote 0
          • ustkU
            ustk @mehmethand
            last edited by ustk

            @mehmethand Oh yeah I forgot that one to add to the bug list... Changing the buffer size breaks the analyser until you reopen the project.
            It would be good to have the buffer size setting on the fft node too, as well as a time average setting, and/or max display mode. Well, after the bugs are fixed...

            Can't help pressing F5 in the forum...

            1 Reply Last reply Reply Quote 1
            • ustkU
              ustk
              last edited by ustk

              So I can add more buffer sizes, (at 131072 my processor begins to slow down...) but the reaction of the analyser is kind of cool.

              I found a second bug: it is impossible to access the Buffer Size from the script (although the Preview Type works)

              Can't help pressing F5 in the forum...

              ulrikU 2 Replies Last reply Reply Quote 0
              • ulrikU
                ulrik @ustk
                last edited by

                @ustk To change the buffer size via script you use the actual buffer size in the script like

                inline function onBufferSizeControl(component, value)
                {
                	local sizes = [4096, 8192, 16384, 32768];
                	
                	Analyser1.setAttribute(Analyser1.BufferSize, sizes[value]);
                };
                
                HiseSnippet 1015.3ocuV0uaaaCDmx1LHxaMXEXO.B9ub.7BrR7bSWwvbhSxfwZRLlSKFPQQGsDsMQnIEnnRhaQA1i5dD1aP2QIYK5T0r.iso+vv2w6ie2w6CNTICnwwRExw8pEQTjyWiGsPnm0eFgIPCNA4rC9bRrlp7xXc7hHRbLMD43T8mMLbbqgR+9qe5XBmHBnErPnWKYAzWxlyzEbG16WXb9YjP5Ur4VR2o2f.onujKS.7TE2FEQBtlLkdAwHVELxYqSCYZoZjlnowHG7wxvEilIuUjI+qYwrwbpgvGMBLTF6yj7PChM++xanpaXzas4g5OiwCGtLWDiPN0FVjYplkY9V74rP1J9EYnuI8.uBMryQNUVGxUWCx9eIHWBjbrfTsLH8T7n.EKRWbhAOeEdf.tvlPfqBanjIKpxqpf6KAID58lStldlBHVoQytsa2xC9Y2WTuNbcDq8tgn7NRP3KhoJeuezKs.YuoT8oSlPCzMar5vFfRE5j4uWRFS4F0V5SPw9x4QRAPzrgsPF0MeLAmIndSRDAZlT3IEGm.tRMh8dpwJJIuYvRSzB7EOgta8OT2kKCHbuXPrXvguoS6m2sk2g9Oe+Vd9cO3vNs7NX+m08v29h5t0cWg58ho5izZEabhl1rfcgSakYy2j5o2Bnz0F1F8a1PSuS23yD7iPDUdfWX8F6ZrPdf0mv4igx9lkDzlziUR4BoldonYZjW+i08t+QSlT5Y4FiSUkdromT8PJ1TjLeLUYm2MBBEkqWou0iqROHK6XInTLPvzWFQyoKZU8Kou.kmdMcH4HDDUm1erSd+wHNKjpPrPy7shzJJMBJF.scOzqFbBQSVZKvrfqhnJMyDQNmPuAFmk064hOgFesVFkJa90JxY6GmmuqvqW0aQAwfd2xB0yVwn2u2aFkMcl1VDXbbTpUbvX+8ZilStyNHVCOtY34IXqJ1T3riMGea.MvFP+v8.D.26CnN8hHJvYVdcsXc7zkyzc2BD+SFcLcKoz+Q9hhOe3FLVUFlvI50m0ZV5je.TVt1.NyPLQLSuvdoz8G.W6KWV1tzcFkVz8Hg6SwCY5fYki2JkfWnx6+Z7luN6I3rw2EfsF9re6A2cU6w0Q+OrZ0dOFNCK0wKm5lu.a0P30viUM0pD1e1anhZVnm2UVbuW8eoEuneUlnYhomSfUDPaB9hj4ifx4.Jj5DBJ27PDmJlIQYzsMzFPLhJBSI9D7kenug1I+P+kG9+hOlSBTx2EjMizbSrcJGHtEoOvxEdoGP64ubtHF21LcAdby6BBL0GeGTaUtN6uA5bvFnSmMPmueCzo6Fnyy1.cN7A0w7txiRzx4YyN.FCOMc+jiyoBBT8l1Vf9apmCLSC
                

                Hise Develop branch
                MacOs 15.3.1, Xcode 16.2
                http://musikboden.se

                ustkU M 2 Replies Last reply Reply Quote 1
                • ustkU
                  ustk @ulrik
                  last edited by

                  @ulrik oh thanks I didn't know that! I was using the cb value…

                  Can't help pressing F5 in the forum...

                  ulrikU 1 Reply Last reply Reply Quote 0
                  • ulrikU
                    ulrik @ustk
                    last edited by

                    @ustk It's more cumbersome to change the preview type I think, and it's a bit flaky

                    HiseSnippet 1716.3oc2X8taaaCDWJIpnxsMqcqXXeTPXevA0K0x14esXnN+svaM+AwosCnoniQh1lHRjZRzIwqH.6i8wpOBCXu.6QnuAcGojsnbbxb8ZK1l+PPt63Q96NdGu6zdQLWbbLKRS27fdgXM8aZzrGk2Y8NHBUqwFZ5yZrMJliirRXsVuPTbL1SSWe5GKXnaNil726dzZHeD0EmwRS6YLhK9Ij.BOi6d0+Qhu+VHO7Aj.kUWqdCWFcclOqKfmoMJqEhbOF0FuCRrroLzzu1ldDNKpIGwwwZ5yrFyqWyNrSoIq+YjXxQ9XAgiVSXiRXuEy2SfXw+qsdGhu2d8s6XMMci8x7BSm3Etqw1DOx.9YdiaKEXkogp+Pep7va5bvyQEdkUf2HfjtBjlIAR2wnoaDIjmIQfmaXzfBWNsPfaWEJIqUap+vvXcFrBJe9.zw3sh.hAZTbwxkKYA+YtGVn.35i4VmfhrVkh76Eiibr9dKYvv7sw7Ma0B6xKZOPnMnTlNIm2SPGg8Ep0+LAEWmEDxn.QQa0EcopWYbTuhPc328uu4ZcAjEYES9UbAB0mPwVs5Rc4DF0hQSj1DDJ1yHleQ29aXI3j86hmqvqKX5ybQ9x8HFN9WTq7JKVxZYmUpTxxYwpKWqjU0JKs3xu7gELKXNvELeLluJmGQNpKGWLic1gVJYOeg7jdIfYSUefP+h1b7Yb6KrvyA6aztgrc2dNwNjZXqi78OBxWJNBiV3rxbUALuK2UsMHbLbUh8P5pr2gw6PnsAKv9wLJgEfgnKA0twtPZNK1kEhEzMCg.nHP29NJ6D2I.LNyxsCh1FaEFgOgfO0hPs3cvhioqOVrl+Vm9dIZJRVRg68blSd.IHlP8vmAHVJ56b.I8cuvFBIUg3HNAGCYHA+Pyc2IKROcisKUvDLeSaNbB1OvJMbbKeFhC1+ADerXIl1DOgzQnso8YfjUJOeYIQOfvoZepSId7N.mJK0mSGLocGtXQkSXjh2CRO+U65QXC7kxUbT6jWOAw0prryB0VXgJUS.EGGnJaImpKsRkkGRVkDgUVbwZkKWSJTDcNPwDbrAhiD.30GRsrNzdvCRM7NDXeX1SDGZWJYIMD9dPn88j2B2qOe3gYe1oOmEcbL7TOVndKjeL9P541ELOO45SMsOWFiLFb7yXDQ1WcFiRrOreJoFPLNdWZQY7egyKXMrnVsForz8xGGMRwhpeQWkhEocCNBGol8IVHTRHecFiKuNiZYP2DmixBYzFTBe2PbJ8EqDok5QgZRSkhJXobYEoYSqH0zm3gizHdhtGxd6QShZ09Cz9.1Awcwv6v0qq8zFhnOQExTfkk4B71.x0bwI0KMM1.GeLmEBm1fXAM8qOdX+rrS8f58xHZTWlnNfQ8etdRdp5Rf1kBk6hhsGfNS0PD3e.lLSvzsLTB0kPZVUNNpfpgJndvPfBf7vfpV8PTDbXJmZN6s+KGfFWCV96E5HRyjzVoMy8A4FkWfYH9s9+KwMV4SjaTZuWta7qLtP8ubNzaxSa77hkUj1vcLFphhhY7aOSwL.WYdy3OCyLiq4M3pbPsDM8uvHWsjbVQ0pUkVQVQBA227l2LD2JB1arwFCL4bNB4OYlq91FutfkkZUC0xkNPgLPprfg8CpHJEBjCUmneYhBmCCSbgFkgVzEcMf346aWLrRp.3Q1bMKKZHlFS38TizFtY9YFul4yl0XjOmNlv8NF6Q3tcFMdmZD3U797mX7lNZzsLRFEHCryXr0OMoyA4L9yAYjb9EFjHjN.zfPmbXP4ssANo2VWoIwL12tt9zej.r19rthz1sQPCpPBpwNcCZBoAtXvcQoXeQ0Z8oDIfIzkEzBPzDS8jDuG9kJzQPqmJzouP06jYSrjaXzDZlWNqlzo70RZqmiNAa8XLEGIhtbthY2+8wc18vwd18cc4vwePDhFGxhyswMwAjCf28hUY9zXX5T7uruHbWk+5LTzHE8tGsEXjiTmlHd2HYdypArtTdt7joG67D0657Oenr9QD0NympOnvm02f9m+j4Gmu+gYeL1jDD5i2jdB1G54ShwuDZxqEpqOuO27A4aynrvNvTotpQ.6igjy1swQpXejFDLmILePFm6VeerOFoFM+s0eBDEhRJ+OY9BmO3uEzHuu9FiD3ZIxLs9+Qoto+uVotONP4yQUjOGmQ.xMh8J2jo9DwxWWxArap7S5ZZrsf1xo+jdFFkmurV.7h3qbcEt6uC7OiVmJSfNUm.cpMA5rvDnyhSfNKMA5r7UpinXzpc4rfjTQfwdalz2t9lTDDIKi509KvQodoP
                    

                    Hise Develop branch
                    MacOs 15.3.1, Xcode 16.2
                    http://musikboden.se

                    1 Reply Last reply Reply Quote 0
                    • M
                      mehmethand @ulrik
                      last edited by

                      @ulrik Thanks for your help, Is there a way to change the dB range also?

                      ulrikU ustkU 2 Replies Last reply Reply Quote 0
                      • ulrikU
                        ulrik @mehmethand
                        last edited by

                        @mehmethand I don't know about that, sorry!

                        Hise Develop branch
                        MacOs 15.3.1, Xcode 16.2
                        http://musikboden.se

                        1 Reply Last reply Reply Quote 0
                        • ulrikU
                          ulrik @ustk
                          last edited by

                          @ustk said in Spectral Analyser Questions:

                          (although the Preview Type works)

                          Yes the module will change but not an attached FloatingTile, at least not for me, I have to change the "index" in the "setPropertiesFromJSON"...

                          Hise Develop branch
                          MacOs 15.3.1, Xcode 16.2
                          http://musikboden.se

                          1 Reply Last reply Reply Quote 0
                          • ustkU
                            ustk @mehmethand
                            last edited by

                            @mehmethand That is not currently possible

                            @ulrik yes changing the floating tile data is a bit harder. But I generally don't want all types. You can also create 3 tiles and just show the one you want

                            Can't help pressing F5 in the forum...

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

                            24

                            Online

                            1.8k

                            Users

                            12.0k

                            Topics

                            104.1k

                            Posts