Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Recent Posts
1
3rd Party Plugins - (fb2k) / Re: Device-Priority-SMP
Last post by Defender -
Shift works globally, it doesn't matter where you press it.

Whatever happens when you press shift (apart from disabling automatic switching) or autodevice is off has nothing to do with my script, so don't waste your time writing that since is irrelevant.
Yeah, already tried by setting line 235 in buttons_device_priority.js to true but that didn't do anything :-)

Share your console log from that moment Anyway that seems like an specific error with your blueetooth device, it will be really complex to find a workaround without having it myself.
Hereby attached the console.log.
2
3rd Party Plugins - (fb2k) / Re: JScript Panel script discussion/help
Last post by Major_Tom -
And finally, since you don't like hotkeys, you can add an extra menu to panel.js:

After line 105:
this.m.AppendMenuItem(MF_STRING, 130, 'Reload Panels'); 

After line 137:
case idx == 130:
    fb.RunMainMenuCommand("File/JScript Panel 3/1");
    break;

With this, whenever you do a right click on a panel, you get a new command called "Reload Panels", where you can call the script mentioned above in the Main Menu
3
3rd Party Plugins - (fb2k) / Re: JScript Panel script discussion/help
Last post by Defender -
Open Main Menu together with Shift - under File you will find 10 possible JScript entries you can use for whatever you want. You can address them via script as shown above.

It should also be possible to use fb.RunMainMenuCommand(command) if you want another option apart from shortcuts
Never too old to learn something new :-)
I will experiment a bit with this.
Thx.
4
3rd Party Plugins - (fb2k) / Re: Device-Priority-SMP
Last post by regor -
Shift works globally, it doesn't matter where you press it.

Whatever happens when you press shift (apart from disabling automatic switching) or autodevice is off has nothing to do with my script, so don't waste your time writing that since is irrelevant.

Quote
Playback continues on PSB, but I get the dreaded popup preset to the correct default device.
Share your console log from that moment Anyway that seems like an specific error with your blueetooth device, it will be really complex to find a workaround without having it myself.

5
3rd Party Plugins - (fb2k) / Re: foo_truepeak True Peak Scanner
Last post by Defender -
Let's say someone, me perhaps, already scanned 1,000's of files with this and I want to go back and add the new RMS values.  I can turn off all scanning aside from the True Peaks, Peak Timestamp, and clipping..  If I just want to add the RMS scanning it will scan True Peaks, Peak Timestamp, and clipping too.... along with RMS. Can they (True Peaks, Peak Timestamp, and clipping) be toggled off or are they required to generate RMS? 

Thanks for the reply on clipping and its on-hold status.

I'll let you know if anything is broke in 0.6.12, haven't broken it yet.  :)
You only save around 40% of the time if you disable the LUFS-S/M scan. All the other scans don't add any significant time to the scan at all.
6
3rd Party Plugins - (fb2k) / Re: foo_truepeak True Peak Scanner
Last post by ngs428 -
Let's say someone, me perhaps, already scanned 1,000's of files with this and I want to go back and add the new RMS values.  I can turn off all scanning aside from the True Peaks, Peak Timestamp, and clipping..  If I just want to add the RMS scanning it will scan True Peaks, Peak Timestamp, and clipping too.... along with RMS. Can they (True Peaks, Peak Timestamp, and clipping) be toggled off or are they required to generate RMS? 

Thanks for the reply on clipping and its on-hold status.

I'll let you know if anything is broke in 0.6.12, haven't broken it yet.  :)
7
3rd Party Plugins - (fb2k) / Re: Device-Priority-SMP
Last post by Defender -
Also, you could try setting only a single device on the priority list. The PSD. I think if you manually select the external one, and then you power it off, it should try to switch to the PSD one automatically. i.e. a device doesn't need to be on the list for the rest to work.
Nope. Doesn't work either.
I am not sure what have you tested, or what do you mean with that.

But I have tested it myself, adding my ASIO output as the only device on the priority list and manually setting the output to my bluetooth speaker. As soon as I turn off the speaker, device is switched to ASIO and playback continues fine.
SITUATION 1:
Enable Auto-Device ON. Device 1 PSD, all others to None.
With SHIFT leftclick I can playback to external device. Switching off external device. Playback continues on PSB, but I get the dreaded popup preset to the correct default device.
BTW SHIFT leftclicking also works on my own button. Normal left click on my own button does the same as yours and keeps the output device to Device 1.

How do you try to suppress/circumvent the popup? Do you by any chance use timings for that?

SITUATION 2:
Enable Auto-Device OFF. Device 1 PSD, all others to None.
I can normal leftclick external device and continue playback to that device. Switching off external device. Playback stops and popup is there preset to PSD. This is exactly the same behavior as I have on my own button.

So in order to continue playback to Device 1 upon switching off I need to have Enable Auto-Device ON. I can only switch to an other device by SHIFT leftclicking. Switching off an external device gives me a popup preset to the correct Device 1 but playback does continue.
8
3rd Party Plugins - (fb2k) / Re: JScript Panel script discussion/help
Last post by Major_Tom -
Open Main Menu together with Shift - under File you will find 10 possible JScript entries you can use for whatever you want. You can address them via script as shown above.

It should also be possible to use fb.RunMainMenuCommand(command) if you want another option apart from shortcuts

9
3rd Party Plugins - (fb2k) / Re: JScript Panel script discussion/help
Last post by Defender -
Another idea, if you could live with a keyboard shortcut. Put this code in any panel you like (can be a hidden one) and assign a keyboard shortcut to it:

function on_main_menu(index) {
    switch (index) {
    case 1: // triggered when File>JScript Panel 3>1 is run
        window.NotifyOthers('AC.RELOAD',1);
        break;
    }
}

In all your 23 panels you just have to put the on_notify data and with the shortcut you can trigger the reload of all panels.
I don't like keyboard shortcuts, I have way too many already :-)

This however is a whole new concept for me and I don't understand how it works. How would you assign a keyboard shortcut to a panel?
10
3rd Party Plugins - (fb2k) / Re: Device-Priority-SMP
Last post by regor -
Also, you could try setting only a single device on the priority list. The PSD. I think if you manually select the external one, and then you power it off, it should try to switch to the PSD one automatically. i.e. a device doesn't need to be on the list for the rest to work.
Nope. Doesn't work either.
I am not sure what have you tested, or what do you mean with that.

But I have tested it myself, adding my ASIO output as the only device on the priority list and manually setting the output to my bluetooth speaker. As soon as I turn off the speaker, device is switched to ASIO and playback continues fine.