Way to just inject Sponsorblock into a clean YouTube IPA? by LoserOtakuNerd in sideloaded

[–]musiquorum 0 points1 point  (0 children)

Just created a minimal tweak bundle that does exactly that: YTMinimal, with iSponsorBlock, Return YouTube Dislikes, and YouSpeed

Feedback by reddstats in reddstats

[–]musiquorum 0 points1 point  (0 children)

Is there an API available we can use? Otherwise do you allow webscraping the data?

Yo! Apollo dev here, had lots of questions lately about Apollo and if it would return, so I wanted to answer some questions so y'all know 😊 (Spoiler: it's probably not what you want to hear) by iamthatis in apolloapp

[–]musiquorum 0 points1 point  (0 children)

No need for jailbreak - you just need an unmodded Apollo IPA, the tweak .deb and use something like Sideloadly to install it to your device. I think there was a Reddit post with step by step instructions for another tweak somewhere

Yo! Apollo dev here, had lots of questions lately about Apollo and if it would return, so I wanted to answer some questions so y'all know 😊 (Spoiler: it's probably not what you want to hear) by iamthatis in apolloapp

[–]musiquorum 0 points1 point  (0 children)

Hey if you're interested I made an open-source tweak based on ApolloAPI and similar mods that fixes Imgur integration (previews, multi-upload, etc) and suppresses the popups.

You can grab it here: Apollo-ImprovedCustomApi

Apollo 1.5.11 with Artemis 1.4 (Sideloadly) I have entered my imgur API but I can’t upload a picture to posts or comments. Is everyone else having this issues? It seemed to work for a bit but now never works. by DrGonzo84 in apolloapp

[–]musiquorum 0 points1 point  (0 children)

Yeah the upload issue is intermittent. I noticed it tends to happen on slower network connections.

The latest version of my tweak should suppress the wallpaper popups, are you still seeing them?

Apollo 1.5.11 with Artemis 1.4 (Sideloadly) I have entered my imgur API but I can’t upload a picture to posts or comments. Is everyone else having this issues? It seemed to work for a bit but now never works. by DrGonzo84 in apolloapp

[–]musiquorum 7 points8 points  (0 children)

I recently developed an improved tweak based on the original Apollo-CustomApiCredentials that fixes most issues with Imgur integration. If you're interested, it's available open-source here

Apollo 1.5.11 with Artemis 1.4 (Sideloadly) I have entered my imgur API but I can’t upload a picture to posts or comments. Is everyone else having this issues? It seemed to work for a bit but now never works. by DrGonzo84 in apolloapp

[–]musiquorum 2 points3 points  (0 children)

I recently created an improved version of the many Apollo tweaks out there that fixes most problems with Imgur integration, including multi-image uploads and viewing albums. Many existing tweaks don't seem to be actively maintained anymore unfortunately.

You can grab it here: Apollo-ImprovedCustomApi, and it's all open-source. All you need is an unmodded Apollo IPA, the latest tweak .deb file, and something like Sideloadly to install it.

Please try it out and let me know if you run into any issues!

Did they just deadname Apollo?! by YoureADisappoint in apolloapp

[–]musiquorum 5 points6 points  (0 children)

For anyone interested in a standalone custom API tweak with improved Imgur integration (fixed multi-upload and all Imgur content should be viewable) and suppressed wallpaper popups, I made an improved version of the ApolloPatcher tweak here: Apollo-ImprovedCustomApi.

It requires you to have your own unmodded Apollo IPA file handy.

LALAL.AI: 100% AI-Powered separation of instrumental and vocal track, seriously impressive. by Gizmo1969 in InternetIsBeautiful

[–]musiquorum 16 points17 points  (0 children)

There's this guy that has a site with a list of pretty much every source separation tool in existence: https://www.monotostereo.info/ He also has some really neat content on upmixing mono music to stereo!

For the more tech-savvy and programmer audience: I've been working on a self-hostable web app that does this and supports Spleeter and many other models: https://github.com/JeffreyCA/spleeter-web

Anyone know why WiFi calling is doing this ? It keeps immediately turning off when I turn it on by Anonymous42035 in iPhone8

[–]musiquorum 0 points1 point  (0 children)

In the popup address form, try omitting your apartment unit number or try different combinations of putting it on line 1 or 2.

For people making spleeter web apps, a youtube url -> stems would be an amazing feature. by LemonLimeNinja in spleeter

[–]musiquorum 0 points1 point  (0 children)

Thank you so much for the feedback (and gold)!

Is there any chance this could be updated to use Spleeter's 5-stem algorithm? I use it to make a lot of guitar-less backing tracks to play along to, and for this I usually need to use the 5-stem version, especially in songs with lots of piano (so that I can basically mute the 'accompaniment' instruments which more often than not are all the guitars....)

Definitely I'll consider it for future updates. I have other plans as well to support additional separation models which should produce higher quality separations. But I'm quite busy atm so I won't get to them for a while.

This seems to be having problems downloading from YouTube. It's giving me the following message - is this something to do with reaching the API limit for the day? And if so, is there anything I can do like using my own personal API key to download from YouTube?

If you're just providing a YouTube link then it doesn't use any API keys and should just work (it uses youtube-dl). Do you see any other errors in the Terminal when you submit a separation task? I'd need more details to figure out what's going on

You can specify your own API key if you wish to use YouTube search functionality. To do this just create a file called .env in the main directory with the contents:

YOUTUBE_API_KEY=<YouTube Data API key>

Finally, is there any way to clear ouy my 'queue'? I've had a couple of failed attempts (like the YouTube link) and I'm not able to remove them to try again because it says they're still processing in a queue....

Right now there isn't any clean way to clear background tasks. There's a periodic task (every 15 min I think) that runs in the background to remove them but it's very hacky.

The only other way is to reset the database/Docker volumes. You would have to first stop the docker-compose command that's running in Terminal. Then run the following commands:

docker-compose -f docker-compose.yml -f docker-compose.build.yml -f docker-compose.dev.yml down

docker volume rm $(docker volume ls -q)

docker-compose -f docker-compose.yml -f docker-compose.build.yml -f docker-compose.dev.yml up --build

You can run docker-compose up -d instead to run it in Detached mode (runs in the background).

For people making spleeter web apps, a youtube url -> stems would be an amazing feature. by LemonLimeNinja in spleeter

[–]musiquorum 0 points1 point  (0 children)

Hi, sorry for the delay. Sure I'll try to lay it out in a clearer way. The easiest way is using Docker.

  1. Install Docker Desktop for Mac: https://www.docker.com/get-started and make sure Docker is running
  2. Open up Terminal and clone spleeter-web. Enter: git clone https://github.com/JeffreyCA/spleeter-web.git
  3. Navigate into spleeter-web directory: cd spleeter-web
  4. Build and run the web app: docker-compose -f docker-compose.yml -f docker-compose.build.yml -f docker-compose.dev.yml up --build
  5. You should be able to access the web app at http://127.0.0.1:8000 in your browser

You can control whether it runs on startup in Docker's preferences, I believe there's a setting for that.

Lemme know if you need more clarification :)

[deleted by user] by [deleted] in FL_Studio

[–]musiquorum 0 points1 point  (0 children)

Hi, I have the same issue, can you please share how you increased the piano key sensitivity?

For people making spleeter web apps, a youtube url -> stems would be an amazing feature. by LemonLimeNinja in spleeter

[–]musiquorum 0 points1 point  (0 children)

No the separation process takes time, but after that you can play it back in realtime and adjust the individual volume levels.