如標題
前情提要 下載PDF時 用了這篇作驗證,
https://www.dotblogs.com.tw/mepowerlmay/2020/06/19/222459
今天要做影片的撥放 用了這篇
https://www.dotblogs.com.tw/mepowerlmay/2020/08/27/191552
1. video js 遇到iphone 打開畫面無法撥放影片問題
你可能少了 Accept-Ranges: bytes ,這個主要加在header裡面有兩種加法
IIS 的pool 如果是 傳統模式這樣寫 context.Response.AppendHeader("Accept-Ranges", "bytes");
IIS 的pool 如果是 整合模式這樣寫 context.Response.AddHeader("Accept-Ranges", "bytes");
2. 遇到 HTTP Handlers不清楚的問題 可參考下面兩篇
http://vito-note.blogspot.com/2013/01/http-modules-and-http-handlers.html
https://www.itread01.com/content/1545772341.html
以上文章僅用紀錄資料使用.....