これが私の .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 エディターでビデオを再生するには?