1
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.
2
Other Lossy Codecs / Re: Can I make my own psychoacoustics audio codec?
Last post by saratoga -3
AAC - Tech / Re: AAC frames and ADTS frames
Last post by Octocontrabass -4
Other Lossy Codecs / Re: Can I make my own psychoacoustics audio codec?
Last post by Sunhillow -So, Claude 3.5 Sonnet (with reasoning) maybe give better and more code?Your initial question should be:
‘Is there an AI model that can create a psychoacoustic codec for me without me having to use my brain a little bit?’
5
foobar2000 for Mac / Re: foobar2000 for Mac: bugs
Last post by Guildencrantz -6
3rd Party Plugins - (fb2k) / Re: Channel Mixer (foo_channel_mixer)
Last post by lowenz -7
MP3 / Re: An MP3 encoder without a cutoff point
Last post by danadam -8
Site Related Discussion / Re: About the search function...
Last post by mycroft -9
3rd Party Plugins - (fb2k) / Re: JScript Panel script discussion/help
Last post by VxMiMxV -Code: [Select]
// ==PREPROCESSOR==in my mind, function on_mouse_lbtn_dblclk(x, y, mask) {on_mouse_lbtn_down(x, y)} should make double clicks behave like normal clicks...
// @name "Test"
// ==/PREPROCESSOR==
function RGB(r, g, b) {return (0xff000000 | (r << 16) | (g << 8) | (b));}
Button = {State:0};
ButtonColors = {0:RGB(0, 0, 0), 1: RGB(155, 155, 155), 2: RGB(255, 255, 255)};
function on_paint(gr) {gr.FillRectangle(0, 0, window.Width, window.Height, ButtonColors[Button.State]);}
function on_mouse_leave() {Button.State = 0; window.Repaint();}
function on_mouse_move(x, y) {Button.State = 1; window.Repaint();}
function on_mouse_lbtn_down(x, y) {Button.State = 2; window.Repaint();}
function on_mouse_lbtn_dblclk(x, y, mask) {on_mouse_lbtn_down(x, y)}
function on_mouse_lbtn_down(x, y) {Button.State = 2; window.Repaint();}
function on_mouse_lbtn_up(x, y) {Button.State = 1; window.Repaint();}
function on_focus(IsFocused) {if (!IsFocused) {Button.State = 0;}; window.Repaint();};
To test, single click and drag your mouse outside the foobar window, then try doing the same but double clicking ~
Is ES5 at fault? Is foobar at fault? I'd really appreciate if someone can explain what is happening!
10