音楽館

Solitude テーマの音楽館ページの設定方法を学びます。

ページの設定

Hexo ブログのルートディレクトリでターミナルを開き、以下のコマンドを入力して新しいページを作成します

hexo new page music

データファイルの作成

ブログディレクトリの source フォルダに music フォルダが生成され、その中に index.md ファイルが含まれます。 次に、ページの type 値を追加します。

参考(必要に応じて変更してください):

index.md
---
title: music
date: 2025-07-13 23:24:50
comment: false
type: music
---

テーマ設定ファイルの変更

以下の設定を変更する必要があります

音楽館の設定

音楽館を有効にする場合は、この項目を変更する必要があります。ここでは、自分の歌詞を変更します。他の項目は、必要に応じてカスタマイズしてください。

_config.solitude.yml
# 883行あたり
# --------------------------- start ---------------------------
# Music Page
# 音楽館
music:
  enable: true
  # 歌詞 ID / シングル ID
  id: 5144842535
  # サービス:netease / qq / xiami / kugou / baidu
  server: netease
  # 类型:playlist / song
  type: playlist
  # デフォルトの音量
  volume: 0.8
  # 自動再生を有効にするかどうか
  mutex: true
  # 再生方式:list / random
  order: list
# --------------------------- end ---------------------------

Meting API配置

正常に使用できる場合は変更しないでください。失敗した場合は、自作または他の Meting API を使用してください。

_config.solitude.yml
# 584行あたり
# --------------------------- start ---------------------------
# Meting API
# This part of the content uses metingjs,
# can only use NetEase Cloud Music, QQ Music and other music platforms supported by the mainland China region,
# the subsequent consideration of the use of JSON files to store music information and customize the implementation of the third-party API does not depend on the page.
# Music Page
meting_api: "https://meting.qjqq.cn/?server=:server&type=:type&id=:id&auth=:auth&r=:r" # Custom API
# --------------------------- end ---------------------------

音楽カプセルの設定

これは左下の音楽カプセルで、オプションで開くことができます。他の項目は、必要に応じてカスタマイズしてください。

_config.solitude.yml
# 593行あたり
# --------------------------- start ---------------------------
# Capsule music
# 音乐胶囊
capsule:
  enable: true
  # 歌詞 ID / シングル ID
  id: 5144842535
  # サービス:netease / qq / xiami / kugou / baidu
  server: netease
  # 类型:playlist / song
  type: playlist
  volume: 0.8
# --------------------------- end ---------------------------