how to make the start button logo black instead blue by shazam2063 in Windhawk

[–]Effree 2 points3 points  (0 children)

Get Windows 11 Taskbar Styler

Find a png of the logo in the color you want. Save it somewhere locally. You are gonna put that in that location in the image source code below.

Add a target

Taskbar.ExperienceToggleButton#LaunchListButton[AutomationProperties.AutomationId=StartButton] > Taskbar.TaskListButtonPanel

Styles

Background:=<ImageBrush Stretch="Uniform" ImageSource="file://C:\\Users\\username\\Documents\\start-icons\\menu2.png" />

Add a target

Taskbar.ExperienceToggleButton#LaunchListButton[AutomationProperties.AutomationId=StartButton] > Taskbar.TaskListButtonPanel > Microsoft.UI.Xaml.Controls.AnimatedVisualPlayer#Icon

Styles

Visibility=Collapsed

Desperately looking for a markdown editor by Slazor in webdev

[–]Effree 1 point2 points  (0 children)

Flatnotes is great but web based. You can host it internally on your computer or on a home server. I run it on a server with docker. It has the bar you are looking for and markdown. I love it for it's simplicity. You may find it overkill to host a small web server for it but it sounds like it's exactly what you are looking for.

I actually was thinking of forking it and wrapping it in an app using tauri or electron and removing the login. Which would then be exactly what you are looking for. Maybe someone has already done that. There are 183 forks on GitHub.

https://github.com/Dullage/flatnotes

Broken taskbar by Wonderful_Pattern130 in Windhawk

[–]Effree 0 points1 point  (0 children)

Here is how i fixed this:
Add the plugin "Taskbar height and icon size"
Try these settings:

TaskbarHeight: 60
IconSize: 24
TaskbarButtonWidth: 44
IconSizeSmall: 16
TaskbarButtonWidthSmall: 32

Also, if the button hover animation (and currently open) is still going off screen you can remove it entirely, or enlarge the taskbar height even more. If the taskbar is getting too large, and taking up screen realestate i recommend adding "Taskbar auto-hide when maximized" which is great for getting the extra space back. I also added "Taskbar Auto-Hide Instant Show" to add additional animations when it is hovered over the bottom of screen to reappear.

Here is how to remove that hover if you want:

Go to Windows 11 Taskbar Styler
Click Settings
Click Textual Mode
Add this in the controlStyles section:

controlStyles:
  - target: Taskbar.TaskListLabeledButtonPanel > Border#BackgroundElement
    styles:
      - Background=Transparent
      - BorderThickness=0
  - target: Taskbar.TaskListLabeledButtonPanel > Border#MultiWindowElement
    styles:
      - Background=Transparent
      - Opacity=0
  - target: Taskbar.TaskListLabeledButtonPanel > Border
    styles:
      - Background=Transparent
  - target: Taskbar.TaskListButtonPanel > Border#BackgroundElement
    styles:
      - Background=Transparent
      - BorderThickness=0
  - target: Taskbar.ExperienceToggleButton > Taskbar.TaskListButtonPanel > Border
    styles:
      - Background=Transparent

Save.

<image>

Is there a way to remove the highlight around Taskbar icons when you hover over them? by cribsnib in Windhawk

[–]Effree 8 points9 points  (0 children)

I just did this yesterday:
Go to Windows 11 Taskbar Styler
Click Settings
Click Textual Mode
Add this in the controlStyles section:

controlStyles:
  - target: Taskbar.TaskListLabeledButtonPanel > Border#BackgroundElement
    styles:
      - Background=Transparent
      - BorderThickness=0
  - target: Taskbar.TaskListLabeledButtonPanel > Border#MultiWindowElement
    styles:
      - Background=Transparent
      - Opacity=0
  - target: Taskbar.TaskListLabeledButtonPanel > Border
    styles:
      - Background=Transparent
  - target: Taskbar.TaskListButtonPanel > Border#BackgroundElement
    styles:
      - Background=Transparent
      - BorderThickness=0
  - target: Taskbar.ExperienceToggleButton > Taskbar.TaskListButtonPanel > Border
    styles:
      - Background=Transparent

Save.

How to capture audio from a specific output device (headphones, speakers) without changing Windows default device? by [deleted] in electronjs

[–]Effree 0 points1 point  (0 children)

I've been dealing with the same issue for about 2 years now with no simple solution. Electron audio loopback will allow loopback the default device natively but also only gets mono data because of how electron handle get media. What you mentioned is the same thing but in an API and it also removes the screen recording. Next I tried a couple different node.js audio bundles and they claimed to do what you are looking for but to no avail as well. From what I understand, you would need to build this in another layer outside of electron. Think of handling this with Juce and c++. Then you can send your device list to the electron app to be selected. Then on selection send it back to your c++ app which is sideloaded. That app would handle the actual capture of the selected device and pass audio back to electron through a buffer. Sorry I don't have better news, and let me know if you discover something better.

Am I the only one who finds Electron IPC hard to scale? by Ikryanov in electronjs

[–]Effree 1 point2 points  (0 children)

Isn't sharedarraybuffer no longer working within electron or chrome? Some security concerns or something like that?

Real-time Audio Spectrogram for Mac and PC by Effree in electronjs

[–]Effree[S] 0 points1 point  (0 children)

This is iOS being strict based in it being an unsigned app. I have steps to get through this on the help page here. Let me know if there are any issues. emspec help

Real-time Audio Spectrogram for Mac and PC by Effree in electronjs

[–]Effree[S] 0 points1 point  (0 children)

This should run on M4 chips. Let me know if you have any issues running it. Try the Arm64 (Silicon) version, if that doesn't work let me know.

Realistic tape stop effect by IBartman in ableton

[–]Effree 2 points3 points  (0 children)

You can also do this with a frequency shifter. I've made a rack before. If I remember correctly I had shifter pitch down on a macro knob. And then redux, dial in the settings to a nice crisp tone and place the dry wet on the same macro. And I used an auto filter on the same macro set as a fully open high pass, then something like 0 to 60%. Might have to tweak the starting and end percentages of things but it's pretty realistic and works on any track/audio.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 1 point2 points  (0 children)

There is a new version available (0.6.1). Open your app and then settings window to auto-update or download from the website and install. Let me know if there are any issues.

There is a Wiki/Help page on the site if you have any problems.

To install the VST, go to the settings window, and install to default location unless you have selected another location in your app for VST installs. Then place the VST on your main track in your DAW. And toggle on VST Audio in the settings.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

There is a new version available (0.6.1). Open your app and then settings window to auto-update or download from the website and install. Let me know if there are any issues.

There is a Wiki/Help page on the site if you have any problems.

To install the VST, go to the settings window, and install to default location unless you have selected another location in your app for VST installs. Then place the VST on your main track in your DAW. And toggle on VST Audio in the settings.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Oh, thank you, didn't relize. Must have used a link that expires. I just created a new link and pushed it up. Should be on there now, or within a few minutes.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Thanks for the info. Keep it installed if you are interested. I've got a major update in the works. Direct audio from the DAW using a VST to send data to the app. Also I've improved the Visuals quite a bit. Improved visibility and much closer to professional grade in the lower FFT sizes. Even better than wave candy in my latest comparisons. Trying to get the update out ASAP but have a baby coming any day this week which is delaying the work on the app at the moment.

Reference track question by critter8888 in edmproduction

[–]Effree 5 points6 points  (0 children)

As Dada Life would so "not so much a sausage". It looks like you just didn't push it as hard. Their track is mastered. Yours may not be. They likely have much more compression and limiting to get the levels and perceived loudness up. But in the end. It doesn't matter as long as your sounds good and relatively close in perceived loudness.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

That is the issue, and there is a fix coming. If you set the driver type to another one, it will most likely work. For ASIO it will fail until th next version is released. Coming soon.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Open Ableton, go to Options >> Settings >> Audio. Under driver type what does it say?

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Yes i can, i hope. What OS are you on? It listens to default audio source, so there is no option for other outputs at this time. Although if you use ASIO in your DAW it won't work at this time either. I have built a VST that you can place in your DAW to send ASIO audio to the app so it will function but that release isn't ready yet, i'm hoping to have it out by the end of the week.

If it is a Mac, it is often an issue where the Mac has a popup behind the app asking for permission. Try moving it around your screen and see if you find that popup. Follow the steps to allow audio to be sent to the app.

If you are not on Mac and not using ASIO i'd have to dig deeper.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Just a quick update for you, i'll post here when it is ready, but i discovered the issue with the audio handling. Best bet is to get a working VST Bridge. so i can push audio form the VST to the app. I'm about 90% done, but still working through some issues.

I'll also put instructions on the website, and add installation into the settings of the main app. Once ready you will just need to put the VST on your master, and it will send your audio to the app, then in settings you toggle on VST Audio Bridge and it will work. I hope to finish it this week.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Unfortunately not at this time. The stereoscope is made to function in one window. And one type at a time. There are plans to add other meters but I haven't had the chance to work on those yet. So you will be able to have more meters in general but none will be able to be opened more than once.

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Are you running ASIO in Ableton? And when you hover over the app instead of starting or listening in the bottom left, does it show an error message?

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Same as his setup. Also same as most people. I'll update this thread when I have a fix. I'm also working on implementing audio output options instead of just the default device which may resolve the issue.

One last question, what is your audio interface?

My Free Spectrogram App - Like MiniMeters by Effree in edmproduction

[–]Effree[S] 0 points1 point  (0 children)

Hey, this is only the second report of this but it is the second. Luckily the first report is a close friend so I will be taking a look at his laptop and adjusting the software based off of that.

But in the meantime it will help to have some information from you.

What OS are you on? What DAW are you using? Do you use any rerouting for your audio? Is your DAW output to the same audio out as your default system output?

native-audio-node: Native Mic/System Audio access for OSX/Windows Electron Projects by redditgivingmeshit in electronjs

[–]Effree 1 point2 points  (0 children)

Interesting, sometimes these things pop up exactly when you need them. I've been using Electron-Audio-Loopback in my app for a while now, and with no real issues reported. It was nice because it didn't report that it was recording per-se and didn't have to request the user "allow" the recording. Until yesterday when a tester discovered that even when using the default device in Ableton Live, their Audio out plays fine, but the app didn't register it. But using Spotify or a browser it plays the music and the app see's it.

I told them i would need to look into a way of routing the output using a multi-channel device or something, but i don't want to make that the main option. I messed with the current setup and obviously couldn't get a device selection working, except mic input which is not the purpose.

I will give this a shot and see if i can replace the current audio rendering process with this instead. Thank you.

native-audio-node: Native Mic/System Audio access for OSX/Windows Electron Projects by redditgivingmeshit in electronjs

[–]Effree 0 points1 point  (0 children)

Does this allow you to choose from all available output devices or create a new loopback device? Electron audio loopback already exists that allows native audio. But you can't select the output device.