Currently browsing

Page 15

mac 重新啟動 輸入法

pkill -f SCIM.app 有時候輸入法切換會出現長條的選字列很礙眼。又不想重新開機,所以輸入上面的指令就會不見了。

使用 NGINX + nginx-rtmp-module 架設 HLS live streaming server

請先參考之前的文章: [CentOS7] nginx rtmp 伺服器架設,架設好基本的 rtmp 伺服器之後,只要更改下列組態就可以啟用 HLS live streaming server: 上面的 xxx 就改變成你的路徑。然後一樣直接 stream 到 rtmp://xxxxx/live/xxx,在 /xxx/hls 下面就會有 xxx.m3u8 及一堆 xxx-xxx.ts …

FFmpeg using NVIDIA GPUs

官方文件: https://developer.nvidia.com/ffmpeg 編譯一般的 CPU 的組態,設定之前要先安裝 lame/3.100 & x264/0.157.2935 ./configure –enable-nonfree –enable-gpl –enable-libx264 –enable-libmp3lame –enable-shared –enable-static –prefix=/opt/ffmpeg/4.1_cpu 在弄 GPU 組態之前要先安裝 nv-codec-headers # git …

swift 4 – 國曆轉農曆

let dateAt: String = “2016/1/1” let dateFormatter: DateFormatter = DateFormatter() dateFormatter.dateFormat = “yyyy/MM/dd” let dateComps: NSDateComponents = NSCalendar(calendarIdentifier: NSCalendar.Identifier.chinese)!.components([.year, .month, .day], from: …