갤러리

애플뮤직에서 뉴진스 노래가 나오면 스킵

페이지 정보

profile_image
작성자 최고관리자
댓글 0건 조회 52회 작성일 25-07-04 01:36

본문

cron 으로 돌리는 애플스크립트... 

애플뮤직에서 뉴진스 노래가 나오면 스킵 다른 노래 틀어줌


tell application "Music"

    if player state is playing then

        set currentTrack to current track

        set artistName to artist of currentTrack        

        if artistName is equal to "뉴진스" then

            next track

            return "뉴진스 노래 넘김"

        else

            set trackName to name of currentTrack

            set albumName to album of currentTrack

            set trackInfo to "현재 재생중: " & trackName & " | 아티스트: " & artistName & " | 앨범: " & albumName

            return trackInfo

        end if

    else

        return "노래가 더 이상 없습니다."

    end if

end tell


이제 폰에도 자동화 하면 됨


아이폰 단축어 기능을 활용하면 됩니다. 음악없음


댓글목록

등록된 댓글이 없습니다.