0

我有一组嵌入到一个 html 文件中的 flash 文件。无论如何,我可以将其转换为 SCORM 包以在 Moodle 中使用。或者有没有更好的方法将其作为课程嵌入到 moodle LMS 中?

4

1 回答 1

0

您可以将其转换为 SCORM 包。我不知道在 Moodle 中是否有更好的方法。

要创建 SCORM 包,请将所有文件放入 zip 中,并添加一个 imsManifest.xml 文件,该 xml 文件的内容应类似于:

<?xml version="1.0" standalone="no"?>
<manifest identifier="Flash content" version="1.3" xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_v1p3" xmlns:adlseq="http://www.adlnet.org/xsd/adlseq_v1p3" xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3" xmlns:imsss="http://www.imsglobal.org/xsd/imsss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 imscp_v1p1.xsd
                        http://www.adlnet.org/xsd/adlcp_v1p3 adlcp_v1p3.xsd
                        http://www.adlnet.org/xsd/adlseq_v1p3 adlseq_v1p3.xsd
                        http://www.adlnet.org/xsd/adlnav_v1p3 adlnav_v1p3.xsd
                        http://www.imsglobal.org/xsd/imsss imsss_v1p0.xsd">
  <metadata>
    <schema>ADL SCORM</schema>
    <schemaversion>CAM 1.3</schemaversion>
  </metadata>
  <resources>
    <resource identifier="Flash_content" type="webcontent" adlcp:scormType="sco" href="flashPlayer.html">
      <file href="FlashFile.swf" />
      <file href="AnotherFlash.swf" />
      <file href="FlashPlayer.html" />
    </resource>
  </resources>
</manifest>

清单必须在 zip 根目录中,imsmanifest.xml 中的 href 是相对于文件本身的。我没有测试清单,所以,也许缺少一些东西,但你可以从那里开始。

希望这可以帮助。

于 2012-11-05T17:33:55.143 回答