Type in your question below and we'll check to see what answers we can find...
Loading article...
Submitting...
If you couldn't find any answers in the previous step then we need to post your question in the community and wait for someone to respond. You'll be notified when that happens.
Simply add some detail to your question and refine the title if needed, choose the relevant category, then post.
Before we can post your question we need you to quickly make an account (or sign in if you already have one).
Don't worry - it's quick and painless! Just click below, and once you're logged in we'll bring you right back here and post your question. We'll remember what you've already typed in so you won't have to do it again.
Please see below the most popular frequently asked questions.
Loading article...
Loading faqs...
Please see below the current ongoing issues which are under investigation.
Loading issue...
Loading ongoing issues...
Today, I signed up to become a curator over on Musixmatch so that I can contribute lyrics to this app which has brought me so much joy.
For these and other purposes, I'd suggest the option to always show the 'skip back 𝑥 seconds' on the mobile and desktop app. Further more, I think a keyboard shortcut would make my workflow much faster. If we aren't able to get MacOS devs to on board to integrate a native way to tap in, I would likely use Karabiner-Elements.app to remap a Spotify.app specific shortcut to one of my media keys; thus minimizing moment of my hands and maximizing my focus on the task of transcribing.
I can't be the only one wishing there was an easier way.
Totally agree here! The "skip back 15 seconds" button on Mac is cumbersome, especially when I just missed something on a podcast and only need the last 5 secs... Instead I need to stop what I'm doing, open Spotify, rewind 10 more seconds than I'd like, and then refocus. Such a pain.
Spotify, please add the following:
Thank you!
.
This is possible, I've discovered. COMMAND + SHIFT + LEFT or RIGHT ARROW
(1). I think for media keys, you need to ask Apple to add OPTION-SHIFT-F7/F9 to rewind/fast forward.
It already works OPT-SHIFT F11/F12 to get baby steps with volume.
Ask here: https://www.apple.com/feedback/macos.html
(2). About Spotify App itself, yes, CMD-SHIFT-ARROW works.
BUT it would be very helpful if there were:
a) a slider to define the skip interval (5/10/15/20/30)
b) an effort on the side of Spotify to get Apple to support a system wide media key as described at (1)
I have achieved this functionality, and much more like printing Artist - Track info or link with a free app called Hammerspoon on my Mac. I would highly recommend 👍
```
-- Spotify
-- rewind spotify 15s
hs.hotkey.bind({'cmd', 'alt', 'ctrl'}, 'left', function()
hs.spotify.setPosition(hs.spotify.getPosition()-10)
end)
-- fast-forward Spotify 5s
hs.hotkey.bind({'cmd', 'alt', 'ctrl'}, 'right', function()
hs.spotify.setPosition(hs.spotify.getPosition()+0.25)
end)
-- print current track code
hs.hotkey.bind({'ctrl', 'alt', 'cmd'}, 'up', function()
CODE = hs.spotify.getCurrentTrackId()
hs.eventtap.keyStrokes(CODE)
end)
-- print Artist - Title of current track
hs.hotkey.bind({'cmd', 'alt', 'ctrl'}, 'down', function()
ARTIST = hs.spotify.getCurrentArtist()
TITLE = hs.spotify.getCurrentTrack()
hs.eventtap.keyStrokes(ARTIST)
hs.eventtap.keyStrokes(' - ')
hs.eventtap.keyStrokes(TITLE)
end)
-- print Title | Artist of current track
hs.hotkey.bind({'cmd', 'alt', 'ctrl', 'shift'}, 'down', function()
ARTIST = hs.spotify.getCurrentArtist()
TITLE = hs.spotify.getCurrentTrack()
hs.eventtap.keyStrokes(TITLE)
hs.eventtap.keyStrokes(' | ')
hs.eventtap.keyStrokes(ARTIST)
end)
-- Copy Spotify URL to clipboard
hs.hotkey.bind({'ctrl', 'alt', 'cmd', 'shift'}, 'up', function()
LATLON = hs.execute('spotify share url', true)
hs.eventtap.keyStroke({'cmd'}, 'v')
end)
```
Hey there you, Yeah, you! 😁 Welcome - we're glad you joined the Spotify Community! While you here, let's have a fun game and get…