- 由於 HTML5 針對 MPEG Streaming 越來越細緻,也需要做得好,所以紀錄一下研究的結果!MPEG-DASH (Dynamic Adaptive Streaming over HTTP) 是一個可調整 bitrate 的 streaming 技術。透過這樣的技術,可以在收看 streaming 時,針對網路的流量來調整最適合的品質播放。最常見的就是 youtube,如果仔細觀察就會發現,品質是可以根據用戶的網路速度來調整的。如果想要觀察這樣的行為,可以直接用這個網址測試!這樣就可以直接切換不同的頻寬的影片了。使用 DASH 的好處是,不僅可以切換不同品質的影片,也能夠把聲音跟影像分開!這樣才能夠保證在切換的時候不會造成聲音停頓的問題!
- 使用最小安裝的 CentOS 是不包含 nfs 的 mount util 的! 所以如果下 mount nfs 的指令就會出現
# mount -t nfs 192.168.1.101://storage /mnt/storage mount: wrong fs type, bad option, bad superblock on 192.168.1.101://storage, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program) In some cases useful info is found in syslog - try dmesg | tail or so
使用 dmesg | tail 則會看到類似下面的訊息# dmesg | tail e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module. RPC: Registered tcp transport module. RPC: Registered tcp NFSv4.1 backchannel transport module. Slow work thread pool: Starting up Slow work thread pool: Ready FS-Cache: Loaded NFS: Registering the id_resolver key type FS-Cache: Netfs 'nfs' registered for caching
此時只要安裝 nfs-utils 即可!yum install nfs-utils
如果是 Window 網芳則加入 cifs 即可yum install cifs-utils
加好後就可以正常 mount 了!別忘了在 /etc/fstab 加入設定,這樣開機才會自動 mount 喔!Linux | 13001 觀看 | 2014-08-16 | 洪國恩 上傳 - 專題 | 8854 觀看 | 2014-08-14 | 洪國恩 上傳
- 這是個滿特別的錯誤,雖然不是在我遇到的,不過記錄一下,以後遇到就知道怎麼解決囉!
PHP Warning: require_once(): Unable to allocate memory for pool. in .....
這是主要出現的錯誤訊息。從訊息上看起來不太知道問題是甚麼,因為即使把 php.ini 中的 memory_limit 加大也沒甚麼用處!因為主要的問題是出現在 APC (Alternative PHP Cache) ,原因不明,但是解決方法很簡單,修改 apc.ini 即可.; 確認產生 tmp 的路徑及規則 apc.mmap_file_mask=/tmp/apc.XXXXXX ; Shared memory 的大小 apc.shm_size=96M ; Cache 的存活時間 apc.ttl=3600 ; User cache 的存活時間 apc.user_ttl=3600 ; Garbage-collection 的時間 apc.gc_ttl=3600
修改完之後再重新啟動 httpd 就可以囉!PHP | 3914 觀看 | 2014-08-13 | 標籤: php, httpd.conf, apc, Unable To Allocate Memory For Po, require_once, cat_web_development | 洪國恩 上傳 - LectureScape: http://juhokim.com/lecturescape/數位學習 | 6839 觀看 | 2014-08-12 | 洪國恩 上傳
- 最近申請了中華電信的 hicloud ,新掛載 storage 時需要自己動手 fdisk & mount很久沒手動做這個事情了!~ 記錄一下免得忘記!
- 專題 | 7936 觀看 | 2014-07-19 | 洪國恩 上傳
- Disk 的部分可以考慮使用 LVM,影片範例只是省略這個部分,用簡單的方法說明而已!
- 3D printing has grown in sophistication since the late 1970s; TED Fellow Skylar Tibbits is shaping the next development, which he calls 4D printing, where the fourth dimension is time. This emerging technology will allow us to print objects that then reshape themselves or self-assemble over time.科學應用 | 7039 觀看 | 2014-07-12 | 洪國恩 上傳
- PHP | 7966 觀看 | 2014-07-03 | 洪國恩 上傳
- JavaScript | 4483 觀看 | 2014-07-03 | 標籤: window.location.hash, hash, 捲動視窗, cat_web_development | 洪國恩 上傳