我使用Node-Webkit,它只是一个hello world程序。 这是我的代码
<!DOCTYPE html>
<html>
<head>
<title>Hello Node Webkit</title>
</head>
<body>
<h1>Hello Node Webkit</h1>
<video src="http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4" controls></video>
</p>
</body>
</html>
{
"name": "myapp.helloworldapp",
"version": "0.0.1",
"description": "A Hello Node webkit app",
"main": "index.html",
"webkit": {
"plugin": true
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"chromium-args": "--load-plugin=ffmpegsumo.dll",
"author": "richardmtp@gmail.com",
"license": "MIT"
}
我使用以下D:\...\nw\nw.exe D:\...\helloWorld\app.v1.nw
运行程序。
然后屏幕显示如下,请找到附图
但不是在玩&amp;播放按钮也被禁用
答案 0 :(得分:2)
您播放视频的HTML看起来不错,但问题是开箱即用的NW不支持MP3 / MP4和许多其他格式,因此您需要将ffmpeg.dll替换为这里...
答案 1 :(得分:0)