HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. trillbilly
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 98
    • Posts 614
    • Groups 0

    Topics

    • trillbillyT

      VirtualBox + Export Wizard

      Watching Ignoring Scheduled Pinned Locked Moved General Questions virtualbox export wizard virtual machine
      3
      0 Votes
      3 Posts
      224 Views
      trillbillyT

      @Dan-Korneff This was it. I appreciate your help!

    • trillbillyT

      Saving/Exporting Edited Audio

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      175 Views
      trillbillyT

      @d-healey Ok cool, let me check this out! Thanks.

    • trillbillyT

      HISE Build - "This application is not supported on this Mac"

      Watching Ignoring Scheduled Pinned Locked Moved General Questions build xcode mac apple
      5
      0 Votes
      5 Posts
      314 Views
      trillbillyT

      @d-healey Then my job here is done.

    • trillbillyT

      Video Game Sampling Laws/Legal Obligations

      Watching Ignoring Scheduled Pinned Locked Moved General Questions sampling law legal
      6
      0 Votes
      6 Posts
      574 Views
      DanHD

      @trillbilly pretty much!

    • trillbillyT

      Creating Multiple Samplemaps

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      372 Views
      trillbillyT

      @d-healey I figured out that it was looking for samples titled differently. Maybe I'm misunderstanding the script. Once I changed all my sample names, it worked.

    • trillbillyT

      if (value >= -1) | issue with IF function

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      169 Views
      trillbillyT

      @d-healey Ahhh, ok I see. Let me implement this into the project. Thanks again.

    • trillbillyT

      Angled Sliders Issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      37
      0 Votes
      37 Posts
      2k Views
      trillbillyT

      @Christoph-Hart Awesome, thank you.
      Just out of curiosity, trying to link the scripted knobs/sliders via the Property Editor does not work. Is this simply because they are scripted or something to do with the CSS implemented?

    • trillbillyT

      Change Preset Category with Button

      Watching Ignoring Scheduled Pinned Locked Moved General Questions presets preset category preset button
      1
      0 Votes
      1 Posts
      65 Views
      No one has replied
    • trillbillyT

      Sampler Playhead Stops/Disappears Randomly

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      68 Views
      No one has replied
    • trillbillyT

      Snap to Grid Sampler or Audio Loop Player?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      1
      0 Votes
      1 Posts
      185 Views
      No one has replied
    • trillbillyT

      VST3 + Waveform 13 = Not Visible within DAW

      Watching Ignoring Scheduled Pinned Locked Moved General Questions waveform vst3 visibility windows
      5
      0 Votes
      5 Posts
      602 Views
      A

      @trillbilly export a simple plugin and have them try it. See if it's hise or if it's whatever you did in your actual project

    • trillbillyT

      FL Studio Artifacts

      Watching Ignoring Scheduled Pinned Locked Moved General Questions fl studio fruity loops fx plugin midi playback artifacts
      8
      0 Votes
      8 Posts
      469 Views
      trillbillyT

      @Christoph-Hart If I enable the "Simulate varying audio buffer size" setting, it makes the plugin nearly inaudible within HISE.

    • trillbillyT

      Transpose/Detune Incoming Audio

      Watching Ignoring Scheduled Pinned Locked Moved General Questions transpose detune incoming audio
      5
      0 Votes
      5 Posts
      452 Views
      trillbillyT

      Thanks for all the replies. I have yet to use an outside library like RNBO or Faust but maybe its time I give something a shot.

      I figured out a way to get a detune effect (sort of) by modulating the Delay of a Simple Gain effect. Not perfect but for small, subtle changes is ok.

      I will check out these libraries and try to dive a bit deeper into one of them.

      Beast and thank you.

      Aaron

    • trillbillyT

      Samplemap 1 not loading - other load fine

      Watching Ignoring Scheduled Pinned Locked Moved General Questions sampelr samplemaps custom samples sample import
      20
      0 Votes
      20 Posts
      742 Views
      trillbillyT

      @d-healey When I use Console.print it does seem the SampleDropper is performing BEFORE the Viewport.

      Interface: Object 0x8371f570 (SampleDropper)
      Interface: 50.0 (Samplemap)

      I've got the Viewport calling for samplemaps in oninit. I've got the SampleDropper contained to the SampleLoadSave.js.

      I guess I assumed that oninit was processed first and then the other .js files.

      How do I go about switching the order in which their callbacks trigger?

    • trillbillyT

      Undo/Redo with Randomization?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting undo redo sampler metaparameter
      7
      1 Votes
      7 Posts
      593 Views
      trillbillyT

      Just giving a bump. Any help is appreciated.

    • trillbillyT

      SOLVED: Arp skipping steps?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions arp skip steps stride
      2
      0 Votes
      2 Posts
      267 Views
      trillbillyT

      Solved.

      I didnt realize having the "note length" of the arp set to the highest setting would cause this but sure enough that was it. If anyone else comes across this, insure your Note Length is below maximum value.

    • trillbillyT

      User Specified Sample Folder per Sampler?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting sample folder custom samples folder location
      5
      0 Votes
      5 Posts
      451 Views
      trillbillyT

      @Lindon said in User Specified Sample Folder per Sampler?:

      FileSystem.browseForDirectory(var startFolder, var callback)

      Yes, thank you. I have added this to the SampleLoadSave.js of the CustomSampleImport project. On Right Click, it opens the directory browser twice. I can select a folder but it does not load the samples in the folder or randomize the folder.

      SampleDropper.setMouseCallback(function(event) { // Clear the sample on double click if(event.doubleClick) { Sampler1.clearSampleMap(); return; } this.data.hover = event.hover; // Show a directory browser on right click if(event.rightClick) { FileSystem.browseForDirectory(FileSystem.Samples, loadSample); return; this.repaint(); } });

      Here is how I am randomizing some components in case I need something here. I know there is a way to reduce the script, I just don't know it.

      const sampleMapsRAN = Sampler.getSampleMapList(); inline function onShuffleSamplebtn1Control(component, value) { if (value) { local index = Math.randInt(0, sampleMapsRAN.length); local sampleMap = sampleMapsRAN[index]; Sampler1.loadSampleMap(sampleMap); SampleViewer1.setValue(index); SampleName1.setValue(list[index]); } }; Content.getComponent("ShuffleSamplebtn1").setControlCallback(onShuffleSamplebtn1Control);

      Thanks again.

    • trillbillyT

      onNoteOn: Engage multiple MIDI events

      Watching Ignoring Scheduled Pinned Locked Moved Scripting onnoteon midi multiple events
      5
      0 Votes
      5 Posts
      342 Views
      trillbillyT

      @d-healey said in onNoteOn: Engage multiple MIDI events:

      HiseSnippet 1232.3oc6YstaaaCElxNLX1YMXsnXX+TnX+vAHHvNqWFPPPct3TXz5DuH2r8u.FoisIrDolDsa7F1qwdcVA1KvdT5av1gRxQxIZINdcqoc1+PP7bg7biemifaGHsgvPY.wnTmw9.w3yoViEp960mwEjl6SLVk1hEpf.yXR6N1mEFBNDCihuPSvnzRjneu646xbYBaHkDgbhjaCuh6wUoTaW+kbW2CXNPGtWFoeb8l1RwdRW4PzdJRqR7Y1CX8fCYZwJPIFK2vgqjAVJlBBQY1U5L1pu7MhX4OgGxOyEzKpQrvMJlLYu9bWm1S70PBtQsS87hwd9Cos3N7KnmFA9hHFloZjMFXT35LoZ2BSxHiIsTrIcepkc.2WkxQaOqPaJvDRWFFpyZJwxRLdKcOIJfPsgGa.bP.t3BEp7zpUW2Der1VcGJrUbovTJNTpfiDUVq7OWtT4eor4kY0sat7zGSfz0EBxksN6FbcJVQLz6LHXcyQL2gvEBht+zwzkmsXpcrWmQPonofqNxGRVefz0QGqzue0L.IIrgu85l6yTLcRIgFJmODn3ZywXeXDVUGmhJQ2GBGnj9Xc8UxeXkizYnKSMc4j9dSBCLdLUNTmnDgb03r2qtE0XUu1ZrY0DuOsMWY2OearPN1HFo92vFStYdOZitcAaUpAtD8feXduFN6G+pwG+JTKt.hfEiN7uLZs42yFAlu.DPfN3U6ZPF+iYEYzelQFOxVgGem.lHzWFN0FaAd7NRgNJjR70gHP.7iGqylYoumjEjKq287CPmLWcrXpgAQkE63IGJTSUFTb57vRy1U2ouQjQ9bvIW5C.zc02SP22iJP7TKPgvwUyC7tvuaPwTcnxbf3rNA7d8vNuaaNAPm437Rg7rJOJg0iV2DgyQv7xohuQHnNlI5AUPV017Y3Cje4K1UMhddaolNte0dR5NpIk6182z6f20rRKzawd1azCTZVGFAwWYMys2NiKo4dhFzuxZqUtToI5DNkNSLfLxtU4RfaHjQEdOgL.ZLBckJp.rKxV2AafQee0.65ZZYTHwpPQUQ0fqlTCZ4xcf.BGKzVlpiGjH6M8d6g0IyftknIYuKo9a+t5yUCSsA64iHUZHjUtIS9bLLZ7q3wMV+h9bCUi0wvko55WhG2wwEZKwFS5FVo.Y+FN8puE+mfrfadrySs+SqGNraW94QyX1k65EpPanoGVeQLd.EwNMcftrgtJyvAHxhKWL.b5HijmLSNQZr67Il+cM+3t+3KSgyVZhMZw87cgFhQfKVxEYiO.qwh7yITmt6bKoP52WJ31YaccLnRRQYr8bcncTJ7CSRo7v5GCt.Kaa3ut9qv1mr.LNAyYr31+4B4lu9JZr4ZpQyL+3cryheZO14wxgJtnWKFVDpgHvdfV3zd1.d5BA1zSiVTPi2Gut5DzCKP3Ds3OweILqoWajvr1Dly6nsatXz17Fsk9Obz1iFAAi3vaR+nzpeJOtasEi6tXb26Fi619C+3tKOOi6dii+sXVzOBlEcyEyhtXVz+2OK5+EmgGyNPdpcLTutN8yhnf9sH5eTpDskdsYsK2ffnQ93mZaO8VcEE2bdU7alWEe77p3SlWEe57p3ylWE+1aVQ8Xt6LTI8huZRHsZ2HpirgQCACqxitQP9KPdFlyA

      Ahhh, ok I see now. Thank you and best!

    • trillbillyT

      CustomSampleImport - Loop Panel Visibility

      Watching Ignoring Scheduled Pinned Locked Moved Scripting loop loop panel customsample custom sample sampler
      11
      0 Votes
      11 Posts
      549 Views
      trillbillyT

      @d-healey Ahhhh, its all about placement. Thank you. It seems that did the trick!