2019年7月3日

[筆記] 使用 react-intl 在 React 實作多語系功能 i18n, internationalization

Photo by Aaron Burden on Unsplash keywords: i18n, Internationalization, intl, format react-intl @ Github API @ react-intl doc Components @ react-int doc 這篇文章主要說明如何透過 React Intl 來實作網頁上的 i18n,先備知識必須要已經基本會使用 React。 ⚠️ 文章使用的是 react-intl @ 2.9,部分功能在 3.0 後不再支援(文章最下方會說明)。 開始使用...

2019年7月2日

[筆記] WebRTC 網路影音 -實作篇(demo of media, video, audio)

Photo by freestocks.org on Unsplash 以下內容完全為整理自 30天之即時網路影音開發攻略(小白本) by 我是小馬克 @ iThome 的筆記,無原創內容。 建立串流點播工具 將影音檔轉成 HLS 用的串流檔 透過 ffmpeg 即可將影音檔(例如,mp4)轉成 .m3u8 和 .ts 適用於 HLS 的串流檔。 在 Node.js 中可以使用 fluent-ffmpeg 這個工具進行轉換: // ./ffmpeg-helper.js // 把 mp4 檔轉換成 .m3u8 索引檔和多支...