HTML5 ビデオを再生し、SRT 字幕を表示する Web サイトを作成しようとしています。ここで行われることをエミュレートしようとしていますが、自分の Web サイトで同じことを行うと、FireBugTypeError: textTrack[i] is undefined
が JavaScript デバッガーで報告されます。apache2、php などで Debian Squeeze サーバーを実行しています。javascript を正しく動作させるためにインストールする必要があるコンポーネントはありますか? 字幕に i の値をハードコードするように強化している htmltexttrack.js を編集しようとしましたが、それでも定義されていないというエラーが報告され、javascript の重要な部分が欠落していると思われました。
質問する
105 次
1 に答える
1
I have checked your code in firebug and for some reason, my browser can not access the caption file on it's original source within the html5texttrack.js
(of curse I can access the file directly from my browser)
<track kind="caption" src="http://accessibility.oit.ncsu.edu/video/audiodescriptions/source/captions.vtt" label="English" />
firebug does not generate any errors but in the console log, there is a read line for the GET
method requesting this file.
what I did, copied the caption file on my computer and then changed the line of code which loads the caption to this:
<track kind="caption" src="captions.vtt" label="English">
and everything worked like a charm...
于 2012-12-26T00:02:20.490 に答える