V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
a66243766
V2EX  ›  macOS

audirvana origin scrobbler last fm

  •  
  •   a66243766 · 6 天前 · 513 次点击

    audirvana origin scrobbler last fm

    last fm

    Last.fm 是一個以英國為總部的網路電台和音樂社群。有遍布 232 個國家超過 1500 萬的活躍聽眾。2007 年被 CBS 互動以 2.8 億美元價格收購,是目前歐洲 Web 2.0 網站中成交價最高的 ...

    audirvana origin scrobble

    1. 上传听歌数据到 last fm
    2. 需要自己根据 readme.md 配置自己的文件执行脚本使用 golang 实现

    为什么要用好这个?

    • 因为本人听歌习惯想脱离 applemusic 的推荐
    • 同时支持多个音乐平台的听歌记录上报,不至于被一个平台卡脖子,于是遇到了 lastfm
    • 流媒体有很多插件可以实现上报 lastfm ,但是 audirvana origin 没有好这个功能,于是自己实现,监听本地程序上报。
    • 目前看来使用到的 am (电脑手机所有的设备)、163 ( web 版本)、bandcamp 、roon 、audirvana origin 都可以上传听歌数据到 last fm ,
    • last 有强大的汇总、统计、报表、推荐功能
    • 我自己大多数是用本地 cd 抓轨 roon 、audirvana origin 播放,担心涉猎局限会结合流媒体推荐收听,喜欢再买 cd 提取本地播放

    仓库地址

    地址

    https://github.com/vincenty1ung/audirvana-origin-scrobbler

    日志

    ➜  ~ tail -f ~/Developer/code/other/audirvana-origin-scrobbler/logs/go_audirvana-origin-scrobbler.log
    {"level":"info","ts":"2025-01-24 13:46:27","caller":"scrobbler/track_check_playing.go:127","msg":"NowPlayingTrackInfo","audirvanaTrackInfo":{"TrackID":"","Title":"电动少女","Album":"Here Comes a New Challenger!!!","Artist":"Chinese Football","Duration":310,"Position":17.055999755859375,"Url":"file:///Users/vincent/Documents/多媒体/音乐/CD/Chinese Football/Here Comes a New Challenger!!!/01 电动少女.m4a","AirfoiLogo":""}}
    {"level":"info","ts":"2025-01-24 13:46:27","caller":"scrobbler/lastfm.go:253","msg":"TrackUpdateNowPlaying","req":{"api_key":"","api_sig":"","sk":"","artist":"Chinese Football","albumArtist":"Chinese Football","track":"电动少女","album":"Here Comes a New Challenger!!!","trackNumber":1,"mbid":"164c18f1-2c8f-48a1-9a40-6ccec763e297","context":"","duration":310}}
    {"level":"info","ts":"2025-01-24 13:49:03","caller":"scrobbler/lastfm.go:232","msg":"PushTrackScrobble:","req":{"api_key":"","api_sig":"","artist":"Chinese Football","albumArtist":"Chinese Football","track":"电动少女","album":"Here Comes a New Challenger!!!","trackNumber":1,"timestamp":1737697587,"mbid":"164c18f1-2c8f-48a1-9a40-6ccec763e297","context":"","streamId":0,"duration":310,"chosenByUser":0,"sk":""}}
    {"level":"info","ts":"2025-01-24 13:49:04","caller":"scrobbler/track_check_playing.go:102","msg":"标记听歌完成","track":"电动少女"}
    {"level":"info","ts":"2025-01-24 13:51:21","caller":"exec/exec.go:290","msg":"checkValidPath:The path [/Users/vincent/Documents/多媒体/音乐/CD/Chinese Football/Here Comes a New Challenger!!!/02 清醒白日梦.m4a] exists and [false] a directory"}
    {"level":"info","ts":"2025-01-24 13:51:21","caller":"exec/exec.go:290","msg":"checkValidPath:The path [/Users/vincent/Documents/多媒体/音乐/CD/Chinese Football/Here Comes a New Challenger!!!/02 清醒白日梦.m4a] exists and [false] a directory"}
    {"level":"info","ts":"2025-01-24 13:51:21","caller":"scrobbler/track_check_playing.go:127","msg":"NowPlayingTrackInfo","audirvanaTrackInfo":{"TrackID":"","Title":"清醒白日梦","Album":"Here Comes a New Challenger!!!","Artist":"Chinese Football","Duration":301,"Position":0.8213750123977661,"Url":"file:///Users/vincent/Documents/多媒体/音乐/CD/Chinese Football/Here Comes a New Challenger!!!/02 清醒白日梦.m4a","AirfoiLogo":""}}
    {"level":"info","ts":"2025-01-24 13:51:21","caller":"scrobbler/lastfm.go:253","msg":"TrackUpdateNowPlaying","req":{"api_key":"","api_sig":"","sk":"","artist":"Chinese Football","albumArtist":"Chinese Football","track":"清醒白日梦","album":"Here Comes a New Challenger!!!","trackNumber":2,"mbid":"403cbccb-cf8b-4e35-b05b-f5a5567045fe","context":"","duration":301}}
    {"level":"info","ts":"2025-01-24 13:54:06","caller":"scrobbler/lastfm.go:232","msg":"PushTrackScrobble:","req":{"api_key":"","api_sig":"","artist":"Chinese Football","albumArtist":"Chinese Football","track":"清醒白日梦","album":"Here Comes a New Challenger!!!","trackNumber":2,"timestamp":1737697881,"mbid":"403cbccb-cf8b-4e35-b05b-f5a5567045fe","context":"","streamId":0,"duration":301,"chosenByUser":0,"sk":""}}
    {"level":"info","ts":"2025-01-24 13:54:07","caller":"scrobbler/track_check_playing.go:102","msg":"标记听歌完成","track":"清醒白日梦"}
    ^C
    ➜  ~ tail -f ~/Developer/code/other/audirvana-origin-scrobbler/logs/go_audirvana-origin-scrobbler.log
    {"level":"info","ts":"2025-01-24 14:32:47","caller":"scrobbler/track_check_playing.go:50","msg":"60 秒检查","共计上传歌曲标记":25}
    {"level":"info","ts":"2025-01-24 14:33:47","caller":"scrobbler/track_check_playing.go:50","msg":"60 秒检查","共计上传歌曲标记":25}
    
    a66243766
        1
    a66243766  
    OP
       6 天前


    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   690 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 21:50 · PVG 05:50 · LAX 13:50 · JFK 16:50
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.