vault backup: 2023-05-16 20:40:00

This commit is contained in:
2023-05-16 20:40:00 +08:00
parent ef2b29f327
commit 67e6ea9575
2 changed files with 14 additions and 5 deletions

View File

@@ -65,7 +65,7 @@
"state": {
"type": "markdown",
"state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"file": "05. 資料收集/libsndfile.md",
"mode": "source",
"source": true
}
@@ -138,7 +138,7 @@
"state": {
"type": "backlink",
"state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"file": "05. 資料收集/libsndfile.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -163,7 +163,7 @@
"state": {
"type": "outline",
"state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md"
"file": "05. 資料收集/libsndfile.md"
}
}
},
@@ -216,8 +216,9 @@
},
"active": "86bf670f0874e941",
"lastOpenFiles": [
"05. 資料收集/名言佳句.md",
"05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"05. 資料收集/libsndfile.md",
"05. 資料收集/名言佳句.md",
"05. 資料收集/讀書筆記/20230418 - 窮人的經濟學.md",
"05. 資料收集/讀書筆記/20220619 - 精確的力量.md",
"05. 資料收集/讀書筆記/20220526 - 深入淺出設計模式.md",
@@ -244,7 +245,6 @@
"00. Inbox/Router port forwarding.md",
"attachments/Pasted image 20230504183452.png",
"attachments/Pasted image 20230504183439.png",
"02. 工作/01. Logitech/ME.md",
"00. Inbox/想要的鏡頭/變焦",
"00. Inbox/想要的鏡頭/定焦",
"00. Inbox/想要的鏡頭",

View File

@@ -0,0 +1,9 @@
從 http://www.mega-nerd.com/libsndfile/#Download 下載的windows版本裡面只有DLL沒有lib所以需要從DLL導出lib這樣才方便使用。
導出方式:
```console
cd ~/OneDrive/codes/test/C++/testWavFft/fftw-3.3.5-dll64
/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 12.0/VC/bin/lib.exe //machine:x64 //def:libfftw3f-3.def
/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 12.0/VC/bin/lib.exe //machine:x64 //def:libfftw3-3.def
/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 12.0/VC/bin/lib.exe //machine:x64 //def:libfftw3l-3.def
```