61
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.
62
General Audio / Re: Album Art Downloader XUI
Last post by AlexVallat -Sometimes a website just makes itself un-usable to scripts, in which case that source can no longer be used at all, sadly.
63
General Audio / Re: Album Art Downloader XUI
Last post by Mrakobes -How get error logs?
64
General Audio / Re: Album Art Downloader XUI
Last post by AlexVallat -65
Movie/Multichannel audio / Re: Changing Pitch -0,1% - 4,271% (PAL/NTSC) without changing length, artefact-free
Last post by Metal-HTPC -But anyway this doesn't have anything to do with the main toppic. Just wanted to point out that the whole pitch shifting is not something for the average streaming watcher it's for the high quality product buyer who probably already bought the same movie at least 3-5 times before.
66
Support - (fb2k) / Re: 2.24.1 crashing
Last post by Air KEN -\profile\library-v2.0 folder
\profile\metadb.sqlite" file
Run Media Library Scan "Rescan Now".
67
General - (fb2k) / SQLite Utilities DELETE help
Last post by Quetzalcoatlus -Here is my query if that helps
Code: [Select]
WITH DuplicateTitles AS (
SELECT title, bitrate,
ROW_NUMBER() OVER (PARTITION BY title ORDER BY bitrate DESC) AS row_num
FROM playlist
WHERE playlist_name = 'TestPl'
),
MaxBitrateTracks AS (
SELECT title, bitrate
FROM DuplicateTitles
WHERE row_num = 1 -- These are the tracks with the max bitrate for each title
)
DELETE FROM playlist
WHERE playlist_name = 'TestPl'
AND title IN (SELECT title FROM MaxBitrateTracks)
AND bitrate != (SELECT MAX(bitrate) FROM MaxBitrateTracks WHERE title = playlist.title)
AND title IN (
SELECT title
FROM playlist
WHERE playlist_name = 'TestPl'
GROUP BY title
HAVING COUNT(*) > 1 -- Only select duplicate titles
);
I had ai help me write it. It seems to only be selecting the correct stuff - Duplicate titles with the lower bitrates out of the dupes. The main problem was if the highest bitrate was tied among the dupes. But I think it's working now, at the very least it's good enough.
I want to delete them from the selected playlist, hopefully this is the correct method. I DO NOT want to delete them from my library. PLEASE let me know if that is what I am trying to do.
I have absolutely no idea what I am doing and it took me about 25 minutes to find the console and help documentation for SQLite Utilities. Please let me know if I am doing something dumb thanks for any help.
68
3rd Party Plugins - (fb2k) / Re: foo_vis_milk2
Last post by oops -Issue 1:There is no code for Shpeck. And Oscilloscope (at least Holger's) does not appear to support Columns UI. So, let's not use those as examples.
This component suffers from the same issue (even worse) as the non-wrapped version of foo_vis_vumeter.
It doesn't listen/comply to the coordinates it has been told.
In the case of foo_vis_vumeter that only happens after returning from fullscreen.
1) Milkdrop opens up (before fullscreen) not using the correct height (xyw are correct).
2) After fullscreen x=0, y=0, h=full height ... all of those are wrong, w is correct but shifted because of wrong x. Only after resize/track change the situation under 1 (with wrong height) is restored.
Shpeck and Oscilloscope use the same unwrapped construction both use correct coordinates after returning from fullscreen.
Please fix the issue.
I believe I've fixed #2 in foo_vis_vumeter. #1 I haven't seen yet and don't even know how it would happen. The window creation is trivial, there is no style or owner/parent change. Are you sure it is an incorrect height or you're just running it at the minimum limit in that squished aspect ratio that is giving you the funky results? The "Scanning presets..." message looks correctly positioned and not distorted.
Issue 2:Unfortunately, this is very unlikely to happen. I started the attempt but decided not to proceed. A cursory glance of the original vis_milk2 library code will give a hint of how fundamental of a change is required to support multiple instances. Look at how g_plugin is used. This is just one of those Winamp legacy things. As to why it "works" in Schpeck, wild guess is that it launches one new full instance/process of Winamp.exe for each UI element.
I want to be able to define milkdrop in more than one place (actually I want 3 spots). And preferable be able to run those instances at the same time.
Is this on your todo list?
Also, if you want 3, you must have a really good machine and GPU because the library is not very optimized and eats more RAM and GPU cycles than I care to admit.
I consider this component feature-complete. There are 3 nagging issues that I would try to address time-permitting:
- Some memory that is not fully released on exit.
- The square that renders sometimes instead of the text.
- The right and bottom strobing effect on some presets.
69
Support - (fb2k) / Re: 2.24.1 crashing
Last post by mogin -70
3rd Party Plugins - (fb2k) / Re: foo_vis_milk2
Last post by oops -I am going to do more testing this w/e see if I can get it workingBeen trying to break it. Still resolves correctly for me to "<profile>\milkdrop2\presets". Try the following: Go into Advanced Preferences, under Display > Visualisations > MilkDrop, right click the Preset directory option and reset it. It'll go <empty>. Hit "Apply" and restart the player. It should repopulate correctly to the above path.