我正在使用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": "[email protected]",
  "license": "MIT"
}

我用下面的D:\...\nw\nw.exe D:\...\helloWorld\app.v1.nw运行程序。
然后屏幕显示如下,请查找附加图像
html5 - 如何使用Node-Webkit播放视频?-LMLPHP
但不播放&播放按钮也被禁用
我在nw根文件夹中包含了ffmpegsumo.dll

最佳答案

你播放视频的HTML看起来不错,但问题是现成的NW不支持MP3/MP4和许多其他格式,所以你需要用这里的一个替换股票ffmpeg.dll。。。
https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases

关于html5 - 如何使用Node-Webkit播放视频?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36864245/

10-13 00:13