- Open Broadcaster Software
- Cider Version 3+
- An Apple Music subscription (duh)
- Setup Cider if you haven't done so already and open the settings. Go to Connectivity and scroll down all the way. Enable the WebSockets API switch. This isn't technically needed anymore, but it's good to have it enabled nevertheless.
- Create a new Browser Source in OBS and set the URL to
https://ryzetech.github.io/cider4obs/. - The source will spawn with a default width of
800. Resize it if necessary (recommended:400width) and set the height to approximately170. - The browser will automatically attempt to connect to Cider and reestablish the connection if needed!
- To customize appearance and behavior, see the customization section below. Add your custom CSS to the Custom CSS box in the OBS browser source settings!
Not happy with the default appearance and behavior? You can customize everything using the Custom CSS box in the OBS browser source settings. Here are some examples to copy and modify:
To pick colors, I recommend https://rgbacolorpicker.com/.
#content {
/* change the background color with this: */
background-color: rgba(69, 69, 69, 42);
/* rgba($RED, $GREEN, $BLUE, $ALPHA)
alpha = how transparent it is
*/
}Customizable elements are span, .track-title, .track-artist, .track-album
/* to change the text color, do */
span {
color: white;
/* or: #ffffff; */
}
/* to make the title look neutral instead of bold, do: */
.track-title {
font-weight: normal;
}
/* similar with the album name (pay attention to the attribute!) */
.track-album {
font-style: normal;
}
/* you can even hide elements: */
.track-album {
display: none;
}
/* or target by ID if you prefer: */
#title, #artist, #album {
/* your styles here */
}Customizable elements are #progressBg, #progressBar.
/* change the progress bar background like this: */
#progressBg {
background-color: rgba(97, 97, 97, 0.45);
}
/* same goes with the bar itself: */
#progressBar {
background-color: rgba(255, 0, 132, 1);
}
/* you can also make the progress bar thicker or thinner: */
#progressBar {
height: 15px;
}You can control the behavior of the Cider4OBS overlay using CSS custom properties. Add these to the body selector in the OBS browser source's Custom CSS box:
body {
/* Fade the box in/out when music is paused or stopped */
--fade-on-stop: 1; /* 1 = enabled, 0 = disabled */
/* Fade the box in/out when Cider disconnects */
--fade-on-disconnect: 1; /* 1 = enabled, 0 = disabled */
/* Delay (ms) before fading out after pausing/stopping */
--fade-delay: 2000; /* Default: 2000ms */
/* Delay (ms) before fading out after disconnecting */
--fade-disconnect-delay: 2000; /* Default: 2000ms, falls back to --fade-delay if not set */
/* Hide the box when connected but Cider is idle */
--hide-on-idle-connect: 1; /* 1 = enabled, 0 = disabled */
/* Hide the box unless music is playing */
--hide-unless-playing: 1; /* 1 = enabled, 0 = disabled */
}Tip: You can combine these options to customize exactly when the overlay appears or fades out. For example, to only show the overlay when music is playing and fade out quickly when paused:
body {
--fade-on-stop: 1;
--fade-delay: 1000;
--hide-unless-playing: 1;
}-
--show-time-labels: Set toinline-blockto show current playback time and song duration on either end of the progress bar. Default:none(hidden)#overlay { --show-time-labels: inline-block; }
-
--show-next-in-queue: Set toblockto show a box with the next song in queue that fades/slides in before the current song ends. Default:none(hidden)#overlay { --show-next-in-queue: block; }
-
--next-in-queue-reveal-time: Number of seconds before the current song ends to reveal the next-in-queue box. Default:10#overlay { --next-in-queue-reveal-time: 15; }
-
--next-in-queue-slide-direction: Direction from which the next-in-queue box slides in. Options:top,bottom,left,right, ornoneto disable slide animation. Default:top#overlay { --next-in-queue-slide-direction: left; }
Thank you for supporting this project by using and spreading it! You are my heroes!
Do you want to appear here? Open a new issue and outline your involvement. I'll be happy to add you here!
A list of entities I want to thank for supporting me in different ways!
Cider Collective |
|---|
| Thank you so much for giving me access to early builds, making change response much faster! |
![]() Aquasius |
|---|
| Thanks for the original idea, initial feedback, and the driving force to make this open source! |
Tell me in the issues tab! <3 Don't have a GitHub account? Feel free to contact me on Discord, Telegram, or via Mail


