如何使用Node-Webkit播放视频?

时间:2016-04-26 11:56:26

标签: html5 html5-video node-webkit

我使用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运行程序。

然后屏幕显示如下,请找到附图

output-image

但不是在玩&amp;播放按钮也被禁用

  1. 我在nw Root文件夹中包含ffmpegsumo.dll

2 个答案:

答案 0 :(得分:2)

您播放视频的HTML看起来不错,但问题是开箱即用的NW不支持MP3 / MP4和许多其他格式,因此您需要将ffmpeg.dll替换为这里...

https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases

答案 1 :(得分:0)