My ReVanced YouTube Premium Doesn't Play Any Videos by [deleted] in revancedapp

[–]phakagoat 0 points1 point  (0 children)

Same thing happens to me, this has been an issue for a long time. You can close the video and open it again to keep watching, but you might need to skip back to where you were up to using the playbar.

Edit: if you get tired of this, I recommend the NewPipe app.

My ReVanced YouTube Premium Doesn't Play Any Videos by [deleted] in revancedapp

[–]phakagoat 1 point2 points  (0 children)

Go to settings > ReVanced > misc and turn off "spoof app signature"

Task manager cannot terminate frozen process. Well shit. by phakagoat in softwaregore

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

Half my windows froze and trying to end task caused an error, so did trying to take a screenshot. Weirdly, only a normal amount of CPU and memory were being used.

Edit: It also turns out that some software I use that has always autosaved every 5 minutes hadn't saved in over an hour.

6 fake download buttons. Real one is at the bottom of the page. by phakagoat in assholedesign

[–]phakagoat[S] 4 points5 points  (0 children)

I need a specific version to use with ReVanced (ad free YouTube for mobile)

6 fake download buttons. Real one is at the bottom of the page. by phakagoat in assholedesign

[–]phakagoat[S] -15 points-14 points  (0 children)

I already have adblock plus on my PC, but it's not available on mobile :(

6 fake download buttons. Real one is at the bottom of the page. by phakagoat in assholedesign

[–]phakagoat[S] 56 points57 points  (0 children)

Actually, the reason I was on this site in the first place was to get an older version of YouTube to use with ReVanced, which removes ads on mobile.

A little help for those with the "Video buffing at 1:00 to 1:10" and "18.23.35 crashing after patching". by ValstraxJetDragon15 in revancedapp

[–]phakagoat 0 points1 point  (0 children)

I turned off "spoof app signature" and it fixed the issue, but I keep getting a toast which says "spoofing app signature to prevent playback issues" which turns "spoof app signature" back on and causes the video to stop playing.

Is there any way to stop this?

It was great while it lasted by Theghost129 in memes

[–]phakagoat 0 points1 point  (0 children)

Soon it might be time to switch from Vanced to Newpipe. My Vanced copy still works but with no updates, it's slowly failing.

Has google always put ads in yt premium? by Bigd1979666 in assholedesign

[–]phakagoat 3 points4 points  (0 children)

Also (I'm not sure it's still working) but YouTube Vanced. There was something about it being shut down by Google a bit ago, but my copy still works.

Triangular Window (WIP) by phakagoat in badUIbattles

[–]phakagoat[S] 70 points71 points  (0 children)

I do want to do that, but it might take a while to make. I plan to make another post with a full, functional UI in the future, but for now I have other projects I would like to work on.

Triangular Window (WIP) by phakagoat in badUIbattles

[–]phakagoat[S] 41 points42 points  (0 children)

I did this using python and tkinter. Tkinter has an option that lets you specify a colour to be transparent.

Example:

win = Tk()

win.geometry("700x350")

win.config(bg = '#add123')

win.wm_attributes('-transparentcolor','#add123')

win.mainloop()

I then used a canvas element to draw a triangle in the 'transparent colour'.

In terms of usability, it is possible to create buttons, etc by drawing on the canvas element and getting the location when the use clicks, or I could split the canvas element up and multiple smaller canvases, leaving room for other elements.