All Projects → itsmeow → Spicetify-Canvas

itsmeow / Spicetify-Canvas

Licence: MIT License
Spotify Canvas, on Spicetify for Desktop!

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Spicetify-Canvas

spicetify-custom-apps-and-extensions
A community-driven collection of custom apps for Spicetify (https://github.com/khanhas/spicetify-cli)
Stars: ✭ 157 (+361.76%)
Mutual labels:  spotify, spicetify, spicetify-cli, spicetify-extensions, spicetify-apps
spicetify-extensions
extensions for spotify i'm creating
Stars: ✭ 207 (+508.82%)
Mutual labels:  spotify, spicetify, spicetify-cli, spicetify-extensions
spicetify-hide-podcasts
Spicetify extension to hide podcasts
Stars: ✭ 193 (+467.65%)
Mutual labels:  spotify, spicetify, spicetify-cli, spicetify-extensions
spicetify-marketplace
Download extensions and themes directly from Spicetify
Stars: ✭ 125 (+267.65%)
Mutual labels:  spotify, spicetify, spicetify-extensions
SpotifyNoPremium
A cross-platform Spicetify theme which declutters Spotify stock UI and removes all ads.
Stars: ✭ 376 (+1005.88%)
Mutual labels:  spotify, spicetify, spicetify-cli
Spotify-Customizer
Chrome extension to customize Spotify web client (themes, lyrics, ...)
Stars: ✭ 27 (-20.59%)
Mutual labels:  spotify, spicetify
spicetify
🎨 Omni for Spicetify
Stars: ✭ 111 (+226.47%)
Mutual labels:  spotify, spicetify
Spicetify Themes
A community-driven collection of themes for customizing Spotify through Spicetify (https://github.com/khanhas/spicetify-cli)
Stars: ✭ 3,034 (+8823.53%)
Mutual labels:  spotify, spicetify
Comfy-spicetify
Stay comfy while listening to music
Stars: ✭ 307 (+802.94%)
Mutual labels:  spotify, spicetify
MySpotify
A website to view your Spotify stats.
Stars: ✭ 38 (+11.76%)
Mutual labels:  spotify
spotify-card
Generate spotify embeds using canvas
Stars: ✭ 21 (-38.24%)
Mutual labels:  spotify
connectr
A super lightweight Spotify controller
Stars: ✭ 100 (+194.12%)
Mutual labels:  spotify
Songify
A simple tool that gets the current track from Spotify, YouTube and Nightbot.
Stars: ✭ 66 (+94.12%)
Mutual labels:  spotify
Tweeterify
A Twitter bot which recommends some Spotify top charts songs to people
Stars: ✭ 18 (-47.06%)
Mutual labels:  spotify
Spotify-Headless
Experimental wrapper for Spotify API to search songs and control the web player using the CLI. (Feat. Puppeteer)
Stars: ✭ 73 (+114.71%)
Mutual labels:  spotify
owntone-server
OwnTone is forked-daapd's new name. Linux/FreeBSD DAAP (iTunes) and MPD media server with support for AirPlay devices (multiroom), Apple Remote (and compatibles), Chromecast, Spotify and internet radio.
Stars: ✭ 1,408 (+4041.18%)
Mutual labels:  spotify
SpotifyApi.NetCore
Lightweight .NET Core wrapper for the Spotify Web API
Stars: ✭ 31 (-8.82%)
Mutual labels:  spotify
163MusicToSpotify
Convert your favorite 163 music playlist to Spotify
Stars: ✭ 98 (+188.24%)
Mutual labels:  spotify
nowplaying-widget
A Spotify Now Playing widget that's accessible with anything that can render a webpage
Stars: ✭ 15 (-55.88%)
Mutual labels:  spotify
SpotiSharp
Cross-platform music assistant
Stars: ✭ 22 (-35.29%)
Mutual labels:  spotify

Spicetify Canvas

Canvas Example

 

For Spicetify MIT License Discord PayPal

The first implementation of Spotify Canvas for the Desktop client ever!
With XPUI / Spicetify 2.0 support!

Demo

The extension is designed to show Canvases in the fullscreen view. The following are with minimal theming (this is what is included in Themes/canvas, for the new XPUI):

Canvas w/o mouse overlay Canvas, overlay

How it works

The mobile Spotify client uses a protocol called Protobuf to communicate with the bridge/cosmos/hermes API and request a canvas link for a given track. However, the Desktop and Web clients do not have protobuf-based implementations and purely send JSON requests.

librespot-java was vital for figuring out the Protobuf format and endpoint for this request. Big thank you to @devgianlu for his work on librespot and the EntityCanvazRequest proto file.

Using the knowledge from librespot, I was able to make a fetch call that bypasses the javascript Cosmos API and does a direct web request with binary protobuf data. You can then decode the binary response to get a list of canvases for a given track (previously, I had to encode the binary as UTF-8 and use the builtin Cosmos client, which was very unreliable).

After that, a video tag is inserted into the fullscreen overlay's DOM with the src set to the canvas.

Sounds simple, right? We're just getting started. Canvases are H.264 encoded MP4 files. Spotify's client has MP4 disabled/not supported because MP4/H.264 is a proprietary format and Spotify has no license or use for it in the desktop client. This means the video will not play with all of the above I just did.

Lucky for us, Chromium Embedded Framework (the browser the client works off of) is open-source, and you can build it yourself with MP4 enabled. You can literally drag and drop replace the built pak files and DLLs into the Spotify install folder and it will just work, so long as your branch is set to the one Spotify uses.

That's it! I will elaborate on the whole CEF thing in the installation section.

Help and Troubleshooting

This app is not very easy to install. If you come across any problems, feel free to create an issue or contact me on my Discord

Installation (short version)

  1. Install Spicetify
  2. Run spicetify
  3. Run spicetify backup apply
  4. Add the extension to the Spicetify extensions folder
  5. Run spicetify config extensions getCanvas.js
  6. Add the theme to the Spicetify themes folder
  7. Run spicetify config current_theme canvas (If you want to use your own theme, paste the user.css contents into the end of your current theme's user.css)
  8. Run spicetify apply
  9. Read and follow part two of the long installation.

Installation (long version)

THIS INSTALLATION IS NOT EASY. YOU WILL NEED ~50-70GB HARD DRIVE SPACE, AT LEAST 8GB RAM, GOOD COMPUTER KNOWLEDGE, A DECENT PROCESSOR, GOOD INTERNET, AND A LOT OF TIME.

Part One (Easy)

The first part is pretty simple. Install Spicetify, you can look at how to do that here.

After that, run the spicetify command with no arguments to generate your configuration.

Then run spicetify backup apply to patch your client.

Now, navigate to your Spicetify extensions directory and put getCanvas.js from the Extensions folder of this repository into the folder. Run spicetify config extensions getCanvas.js to add the extension.

Next, navigate to your Spicetify themes directory and place the canvas folder from Themes in this repository within it. Run spicetify config current_theme canvas to set your theme to the new theme.

If you want to use your own theme, take the code from Themes/canvas/user.css and paste it at the end of your current theme. No guarantees this will work, but I tried to make it as universal and unintrusive as possible.

Next, run spicetify apply to load the new theme and extensions into your client.

Part Two (Pain and Suffering)

Most extensions end installation steps here, but this extension is a LOT harder to get working due to some limitations of the Spotify client. You will need to build Chromium Embedded Framework with proprietary codecs enabled. If you want a more detailed explanation of why, read "How it works".

I'd love to just post the build myself for everyone to use, but that would be violating copyright law, so you have to build it yourself.

I've only ever done this on Windows, so my instructions will be mostly catered for Windows. If someone wishes to contribute instructions for other OSes, feel free to make a pull request.

Pre-requisites

You will need the prerequisites for your OS listed here under "Platform Build Configurations". You can also view those requirements here for more detail.

I will sum them up:

  • Python (2.7 or 3.8/3.9, I used 3.8)
  • Visual Studio Community 2017 or 2019, or Visual Studio Build Tools 2017 or 2019
  • "Desktop development with C++", "C++ MFC for latest v(version) build tools (x86 & x64)", C++ ATL for latest v(version) build tools (x86 & x64)" support Visual Studio components. You can install these with the "Visual Studio Installer" program, click Modify on your VS install and find those packages. You don't need the ARM components.
  • "Windows 10 SDK 10.0.19041" or higher as a VS component or from Microsoft's installer. Make sure you enable the "SDK Debugging Tools" in this installer. If you use Visual Studio to install it, Chromium says you can get it from "Control Panel → Programs → Programs and Features → Select the “Windows Software Development Kit” → Change → Change → Check “Debugging Tools For Windows” → Change", but personally I had to use the installer and select only the debugging tools since I already had the SDK from VS. If you miss the debugger installation step, your build will error.

Getting the branch number

Next, you need to find the CEF branch for your Spotify version. Spotify lists these relations here. If you hover over the "CEF version" link for your Spotify version, it links to a URL that looks like this https://bitbucket.org/chromiumembedded/cef/get/4430.tar.bz2.

Update: it appears Spotify is not as actively updating the relations anymore. Use the commit method instead of the branch method. 4430 in particular is picky about versions. Use 7a604aa as your checkout commit for Spotify 1.1.60.668.

The number you want is the number before .tar.bz2. As of current, that branch number is 4430 in Chromium version 90.0.4430.93 for Spotify 1.1.60.668.

You can verify you have the correct version by enabling devtools in spicetify spicetify enable-devtool apply, right clicking somewhere, press "Show Chrome Tools", and then click the chrome://version link. The CEF and chromium version should match.

If you really want precision (sometimes Spotify will break on a newer version despite being on the same branch, due to how CEF's versioning works), use a commit instead.

Using a commit instead

In the chrome://version menu (explanation above), find the CEF version. After the first +, there is a g, then a commit hash, then another +. Get the string of letters and numbers between +g and +chromium.

This will be your checkout argument that you will use later.

Setup

Next, go to C:\ in This PC and create a folder called code. Inside code, make a folder called chromium_git, and a folder called depot_tools. This is the end result:

C:\code\
  chromium_git\
  depot_tools\

Next, download automate-git.py and place it in C:\code\.

Create a batch script inside C:\code\, name it build.bat. If the name change doesn't change the icon, press View in file explorer and check "File name extensions" and rename it again. Paste the following into this script and save it (you can open it by right clicking and pressing edit):

set CEF_USE_GN=1
set GN_DEFINES=is_official_build=true proprietary_codecs=true ffmpeg_branding=Chrome use_thin_lto=false enable_nacl=false blink_symbol_level=0 symbol_level=0
set GYP_MSVS_VERSION=2019
set CEF_ARCHIVE_FORMAT=tar.bz2
python automate-git.py --download-dir=C:\code\chromium_git --branch=4430 --no-debug-build

Change 4430 from --branch to the proper branch for your Spotify version. If you want to use a commit, remove --branch=.... Replace it with --checkout=7a604aa, using the correct commit tag. Make sure you don't include the first g from the CEF version.

If you use VS 2017, change GYP_MSVS_VERSION to 2017.

Next, open command prompt as administator (NOT POWERSHELL). You can do this by searching Command Prompt in the Start Menu, right clicking it, and pressing "Run as Administrator".

Change directories to the automate folder. cd C:\code\ (if you use another drive than C, use cd /d (path))

Run it!

Execute the script. build.bat. This will take many hours to download CEF, depot_tools, and Chromium. After which it will check out the correct branches and build Chromium.

Re-using your folder

If you want to use the CEF build folders again (for Spotify updates, it isn't super rare Spotify changes the internal CEF version used), you should add --depot-tools-dir=C:\code\depot_tools after the first run so that it won't download it again. You can also get commit checkout errors, so if you encounter any of those add --force-clean to remove the old commit data and force a change.

CEF also notes for "small incremental changes", you can use --fast-update to try to patch your existing build. You should probably only use this when going between commits on a branch, and not when changing branches.

Possible Errors + Solutions

CalledProcessError: Command 'gn gen out'

If you get an error that looks like this:

subprocess2.CalledProcessError: Command 'gn gen out\\Debug_GN_x86 --ide=vs2019 --sln=cef --filters=//cef/*' returned non-zero exit status 1 in C:\code\chromium_git\chromium\src\...

It means you forgot to install the Windows SDK debugging tools. Review the Prerequisites.

This error can also occur if Visual Studio was not found on the PATH in the default location. You should install it in the default location, but there is an environment variable that lets you change it? I would just install it in the default spot. I would also recommend using VS Build Tools instead if this is the case.

Hash does not appear to be a valid hash in this repo

If you get an error that looks like this when it says Running "gclient revert --nohooks" after the download stage (I did, not sure why) gclient_scm.NoUsableRevError: 82> Hash ee537ac096667eed6559124164c3e8482646fd77 does not appear to be a valid hash in this repo, go to C:/depot_tools/gclient_scm.py, open it in a text editor, find line 879 (Ctrl + F "NoUsableRevError"), and comment out logging.warning("Couldn't find usable revision, will retrying to update instead: %s", e.message)). It's split onto three lines, so put a # before each line.

It will end up like this:

    except NoUsableRevError as e:
      # If the DEPS entry's url and hash changed, try to update the origin.
      # See also http://crbug.com/520067.
      #logging.warning(
       #   "Couldn't find usable revision, will retrying to update instead: %s",
        #  e.message)
      return self.update(options, [], file_list)

After editing that, go to your automate batch script and add --no-depot-tools-update and --depot-tools-dir=C:\code\depot_tools to the arguments list for the python command, otherwise your changes will be overwritten. Rerun the script, it should've saved most of the progress from that point.

Results

After around 12 hours with my AMD Ryzen 3600, my build was completed, not counting errors and troubleshooting. The results are placed in C:\code\chromium_git\chromium\src\out\Release_GN_x86. You will know if it's done because cefclient.exe will exist in this folder. Run the client, go to some sites, make sure it works. Go to https://html5test.com, check under Video and make sure there is a check next to H.264 support. If not, you messed something up.

You can also find the CEF binary distribution which contains the files you are looking for in C:\code\chromium_git\chromium\src\cef\binary_distrib. The non-symbol distrib will have the files you need in the Release and Resources folders, split up. Merge the two, and you should have all the files you need and some extras.

If it works, good news, you're almost done!

Now, in another Explorer, go to %appdata%/Spotify. You can type this in the address bar or use WinKey+R to open it. This folder contains your Spotify installation (Spotify.exe, resources.pak, etc).

The first thing you need to do is disable auto-updating, because Spotify will overwrite your CEF patches every time you run spicetify apply otherwise. Do this by deleting or renaming SpotifyMigrator.exe or SpotifyUpdate.exe if present. Note this method doesn't really work and your Spotify will update randomly anyway.

Next, you will need to back up your old CEF assets. Create a folder called backup in the Spotify folder, and move into it all of the following files:

  • resources.pak
  • chrome_100_percent.pak
  • chrome_200_percent.pak
  • cef_extensions.pak
  • chrome_elf.dll
  • d3dcompiler_47.dll
  • icudtl.dat
  • libcef.dll
  • libEGL.dll
  • libGLESv2.dll
  • snapshot_blob.bin
  • v8_context.snapshot.bin
  • The entire swiftshader folder
  • The entire locales folder

Next, from the Release_GN_x86 folder (or binary_distrib), copy all of the files and folders with names matching the above into your Spotify folder.

The locales and swiftshader folders you copy will contain a bunch of .info, .pdb, and .lib files. You can delete any files that are not .pak or .dll.

Note that Spotify includes a set of .mo files in its locales folder. Do not delete them.

You should also copy the same set of files you copied into Spotify into another, safe folder, in case Spotify updates or is uninstalled. You DO NOT want to lose them and rebuild Chromium. I also copied my entire Release_GN_x86 folder just to be sure, but it may be large.

Finally, start Spotify! If you did things correctly, Spotify should run as normal, except now the Canvases will appear. You can delete the contents of C:/code/chromium_git and C:/code/depot_tools to save space, but I recommend keeping the script just in case Spotify updates.

If you made it this far, you are truly technically compotent! Congratulations.

Help and Troubleshooting

If you come accross any issues not listed above, let me know! You can create an issue here or chat in my Discord. If you find a solution to a certain issue, feel free to PR the issue and solution under the Errors header.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].