导入必要的actionscript以使用FLV和元数据[即提示点]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导入必要的actionscript以使用FLV和元数据[即提示点]相关的知识,希望对你有一定的参考价值。

this code loads in the necessary actionscript classes for dealing with FLV [flash video] and metadata [in this case cuepoints]. this needs to be loaded right at the beginning of your code, so flash knows how to handle cuepoints embedded in FLV [flash video] files.
  1. // this should be the first bit of code at the top of your
  2. // actionscript for interactive video code. this stuff needs to
  3. // loaded and be ready for action before anything else
  4.  
  5. // import the necessary actionscript code for dealing
  6. // with metadata embedded in video [ie. cuepoints]
  7. import fl.video.*;
  8. import fl.video.MetadataEvent;
  9. // import the necessary actionscript code for dealing
  10. // with metadata embedded in video [ie. cuepoints]

以上是关于导入必要的actionscript以使用FLV和元数据[即提示点]的主要内容,如果未能解决你的问题,请参考以下文章