檢測音樂的真實比特率

前言

雖然自認是木耳,從小到大都聽 128 kbps 的 MP3,不重視音質也聽不出來有什麼特別糟的感受,但自從換了高級的耳機一陣子後,總覺得在 YouTube、Spotify 聽和聽手機載的 MP3 有微妙的不同,感覺 MP3 的聽起來比較輕薄,少了些什麼的感覺,不知是不是自己想太多…

總之這陣子打算更新所有音樂,把音樂升級到 320 kbps 看看,畢竟 MP3 的 128 kbps 可以說是 “可欣賞音樂” 的最低限度,勉強保住了音樂的輪廓細節。雖然還有更低比特率像 64 kbps、96 kbps 的 MP3,但那已經難稱得上是音樂欣賞了。

然而許多音樂下載器標示的 320 kbps 其實下載下來不是真的 320kbps,就像買了 A5 和牛標籤的牛肉,切開才發現只是一般肉質。更甚至有的下載器在下載的同時會將來源的 128 kbps 的檔案硬生生轉檔成 320 kbps 來欺騙檔案管理器顯示音訊的位元速率為 320 kbps,所以下面來紀錄一下怎麼透過頻譜分析程式來檢查音檔的真實比特率,可以說是給音樂做 X 光掃描一樣。

教學

1.alexkay/spek: Acoustic spectrum analyser

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- const { frameRate, animationTime, stepSize, accelerationDelta, accelerationMax, keyboardSupport, arrowScroll, pulseAlgorithm, pulseScale, pulseNormalize, fixedBackground } = theme.smoothscroll

script.
window.SmoothScrollOptions = {
frameRate: !{frameRate ? frameRate : 150 },
animationTime: !{animationTime ? animationTime : 400 },
stepSize: !{stepSize ? stepSize : 100 },
accelerationDelta: !{accelerationDelta ? accelerationDelta : 50 },
accelerationMax: !{accelerationMax ? accelerationMax : 3 },
keyboardSupport: !{keyboardSupport},
arrowScroll: !{arrowScroll ? arrowScroll : 50 },
pulseAlgorithm: !{pulseAlgorithm},
pulseScale: !{pulseScale ? pulseScale : 4 },
pulseNormalize: !{pulseNormalize ? pulseNormalize : 1 },
fixedBackground: !{fixedBackground}
}

script(async src=url_for(theme.smoothscroll.smoothscroll_js))


2. 上層資料夾 themes/[主題]/layout/includes/additional-js.pug裡隨便一處打上下面的程式碼來引入剛寫的 PUG,縮進別忘了確認。

1
2
3
//- 使頁面平滑滾動
if theme.smoothscroll.enable
!= partial("includes/third-party/smoothscroll", {}, { cache: true })


API 自定義選項

以下為可選,可不用配置。

  • Options
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
// Scrolling Core(滾動核心)
animationTime : 400, // [ms]
stepSize : 100, // [px]

// Acceleration(加快)
accelerationDelta : 50, // 50
accelerationMax : 3, // 3

// Keyboard Settings(鍵盤設定)
keyboardSupport : true, // option
arrowScroll : 50, // [px]

// Pulse (less tweakable) 脈衝 (不太能調整)
// ratio of "tail" to "acceleration" "尾部"與"加速度"之比
pulseAlgorithm : true,
pulseScale : 4,
pulseNormalize : 1,

// Other(其他)
touchpadSupport : false, // ignore touchpad by default 默認情況下忽略觸控板
fixedBackground : true,
excluded : ''
}

  • 如果要在加載庫 (同步版本) 後設定自定義選項:
1
2
<script src="SmoothScroll.js"></script>
<script>SmoothScroll({ keyboardSupport: false })</script>

  • 如果要在加載庫 (異步版本) 之前設定自定義選項:
1
2
<script>window.SmoothScrollOptions = { keyboardSupport: false }</script>
<script async src="SmoothScroll.js"></script>


參考來源