請教各位大大,有一個網站用來放影片, 假設URL為: http://us4.maco8999.com/hd2/Movie/m00359_480p.mp4
在手機上可以正常觀看,用PC的話,Chrome無法觀看 / Firefox可以正常觀看
這會有可能是影片編碼問題嗎?或是其他可能呢?因為只有電腦用Chrome不行,但是找不到原因,感謝..!
寫個HTML5網頁,用<VIDEO>來放
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<video width="320" height="240" controls autoplay>
<source src="http://us4.maco8999.com/hd2/Movie/m00359_480p.mp4" type="video/mp4">
</video>
</body>
</html>