| 編號 | 作品名稱 | 發行日期 | 首發平台 | 其他平台(部分) | 維基百科連結 | |
|---|---|---|---|---|---|---|
| 1 | Final Fantasy | 1987-12-18 | Famicom | NES、PlayStation、WonderSwan Color、GBA、PSP、iOS、Android、Windows、Switch、PS4 | Final Fantasy | |
| 2 | Final Fantasy II | 1988-12-17 | Famicom | PlayStation、WonderSwan Color、GBA、PSP、iOS、Android、Windows、Switch、PS4 | [Final Fantasy II](https://en.wikiped |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 常用國字標準字體表 (4808字) | |
| 一丁七三下丈上丑丐不丙世丕且丘丞丟並丫中串丸凡丹主乃久么之尹乍乏乎乒乓 | |
| 乖乘乙九也乞乩乳乾亂了予事二于云井互五亙些亞亟亡交亦亥亨享京亭亮人仁什 | |
| 仃仆仇仍今介仄以付仔仕他仗代令仙仞仿伉伙伊伕伍伐休伏仲件任仰仳份企位住 | |
| 佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣作你伯低伶余佝佯依侍佳使佬供例來侃佰 | |
| 併侈佩佻侖佾侏信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞倌倍倣俯倦倥俸 | |
| 倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉偺偽停假偃偌做偉健偶偎 | |
| 偕偵側偷偏倏傢傍傅備傑傀傖傘傭債傲傳僅傾催傷傻傯僧僮僥僖僭僚僕像僑僱億 | |
| 儀僻僵價儂儈儉儒儘儔儐優償儡儲儷儼兀元允充兄光兇兆先兌克免兔兒兕兗兜兢 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # FFmpeg 常用轉檔指令整理與說明 | |
| 本文件整理了常見的 `ffmpeg` 用法,包括 H.264 Profile 轉換、影片解析度縮放、保留音訊等操作方式,並提供詳細參數說明。 | |
| - 這裡有各種格式影片素材可以下載: https://test-videos.co.uk/ | |
| ## 1. 使用 FFmpeg 產生有畫面與聲音的測試影片 | |
| ```sh | |
| resolution=640x360 # 畫面大小 |
- Go to https://store.rg-adguard.net.
- Search for the HEVC Video Extensions from Device Manufacturer (
Microsoft.HEVCVideoExtension) app by entering the following store URL.https://www.microsoft.com/en-us/p/hevc-video-extensions-from-device-manufacturer/9n4wgh0z6vhq- Do not use the normal HEVC Video Extensions app URL, because that can't play HEVC videos in Windows Media Player for some inscrutable reason.
- Download the x64 appx file, or whatever your Windows architecture is.
- You may have to right click › Save Link As because the URL scheme is http, not https, if your browser is set to enforce HTTPS-only mode.
- If it tries to save as a filename that's just a GUID, you may copy the correct .appx filename and save it as that instead.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // from http://scratch99.com/web-development/javascript/convert-bytes-to-mb-kb/ | |
| function bytesToSize(bytes) { | |
| var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; | |
| if (bytes == 0) return 'n/a'; | |
| var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024))); | |
| if (i == 0) return bytes + ' ' + sizes[i]; | |
| return (bytes / Math.pow(1024, i)).toFixed(1) + ' ' + sizes[i]; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Version key/value should be on his own line | |
| PACKAGE_VERSION=$(cat package.json \ | |
| | grep version \ | |
| | head -1 \ | |
| | awk -F: '{ print $2 }' \ | |
| | sed 's/[",]//g') | |
| echo $PACKAGE_VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // JSON to Uint8Array parsing and visa versa | |
| // (Intended Bluetooth communication on Cordova) | |
| var JsonToArray = function(json) | |
| { | |
| var str = JSON.stringify(json, null, 0); | |
| var ret = new Uint8Array(str.length); | |
| for (var i = 0; i < str.length; i++) { | |
| ret[i] = str.charCodeAt(i); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // array buffer to JSON | |
| const dataString JSON.stringify(Array.from(new Uint8Array(arrayBuffer))); | |
| // send around | |
| // JSON to ArrayBuffer | |
| new Uint8Array(JSON.parse(dataString)).buffer |
NewerOlder