这是我的 .atom/init.coffee 文件的内容
View=require('atom').View
class Player extends View
@content: -> @raw """
<video controls width="100%" height="100%" id="video">
<source src="file:///C:/Users/myname/play/html5/mov_bbb.mp4" type="video/mp4">
</video>
"""
player=new Player
atom.workspaceView.appendToLeft(player)
Atom 编辑器启动后,显示一个 HTML5 视频的控制栏,但无法播放其指定的视频文件。
如何在 Atom 编辑器中播放视频?