2022/01/06

鼠鬚管 注音+行列

終於... 解決

一個問題,沒有人寫解法,要嘛太過困難沒人寫的出來
要嘛太過簡單,沒有人覺得應該要寫下來 U_Ub

有趣的是,通常遇到前者的機率要低的多

安裝 squirrel (鼠鬚管)
!!官網上的 pkg 檔,在 12.1 monterrey (14" arm) 仍舊無法執行,錯誤訊息是無法驗證
此 app 的發行者
因此要用 homebrew 安裝
brew install --cask squirrel

安裝行列
curl -fsSL https://git.io/rime-install | bash -s -- array emoji custom:add:
schema=array30

注意,安裝完 array30 後,default.custom.yaml 目前內容如下:
__patch:
# Rx: custom:add:schema=array30 {
  - patch/+:
      schema_list/+/+:
        - schema: array30
# }

要修正成這樣
patch:
      schema_list:
      - schema: array30
      - schema: bopomofo_tw

然後重新部署就可以了

default.yaml 官網不建議修改,應新增一個 default.custom.yaml 再修改成你要的樣子
你沒寫在 default.custom.yaml ,預設會套用 default.yaml 的設定 (我猜的)
 

---

mbp 14 monterey 12.2

昨天弄了很久,鼠鬚管仍然是這幾種輸入法
朙月拼音、地球拼音、注音
五筆畫、倉頡、速成、五筆

我想要的是只要
注音 台灣
行列

昨天去 rime 官網下的 squirrel.pkg 不行用,後來爬文裝了另一篇 #520 樓的
有成功裝起來
但是不管怎麼調整 ~/Library/Rime 底下的 default.yaml / default.custom.yaml
就算刪掉所有輸入法只留 bopomo tw (都有重新開機、重新部署鼠鬚管)

輸入法的數量都沒有變

是不是調錯設定了?  


mkvtools dts to ac3

mkvtools dts to ac3


ffmpeg 參數有點多,麻煩了點,另一支程式 eac3to 滿好用的,很單純
tested: eac3to Interstellar.2014.1080p.BluRay.x264.AC3-WiKi.mkv Interstellar.2014.1080p.BluRay.x264.AC3-WiKi.ac3

先把 dts 轉出

用指令將 dts mka 檔轉成 ac3 檔
eac3to 放在 K:\OneDrive\_greensoft\mkvtoolnix-64-bit-53.0.0\eac3to
進 cmd 時要先修改 path
path=%path%;K:\OneDrive\_greensoft\mkvtoolnix-64-bit-53.0.0\eac3to
這樣不管 cd 到哪邊都可以執行 eac3to 指令

回 mkvtools ,把剛剛 eac3to 轉完的 ac3 檔加回來 
語言是 und (fined) ,記得修一下

最後再合併成一個檔


參考資料
I have no idea why you're using some external tool to extract the streams from mkv, re encode the audio, remux and then copy to the USB stick separately when you could just do it all in one ffmpeg command:

ffmpeg -i input.mkv -c:v copy -c:a ac3 -b:a 320k /path/to/usb/output.mkv
Replac 320k with 640k if you have a 5.1 channel stream, input.mkv with your source file and /path/to/usb/ with the path to the folder on your USB that you want the file in.

I have never encoded with that codec nor audio with >2 channels, so I don't know whether or not it needs some special parameters to work, but I believe it should work just fine.
tested: ffmpeg -i Interstellar.2014.1080p.BluRay.x264.AC3-WiKi.mkv -c:v copy -c:a ac3 -b:a 640k E:\ac3.mkv