Catégories
Informatique

Apple Script / Automator : Fade out dans Spotify puis Pause

Hop vous le cherchiez? Le voici, un script utilisable dans Apple Script ou dans Automator pour faire faire un fondu à Spotify puis mettre le programme en pause. Les valeurs sont ajustables pour changer la vitesse de la chose :)

tell application "Spotify"
	set volumespotify to the sound volume
	if player state is not paused then
		repeat
			--Fade down	
			repeat with i from volumespotify to 0 by -1 --try by -4 on slower Macs
				set the sound volume to i
				delay 0.05 -- Adjust this to change fadeout duration (delete this line on slower Macs)
			end repeat
			pause
			--Restore original volume
			set the sound volume to volumespotify
			exit repeat
		end repeat
		
	end if
end tell

Laisser un commentaire