【问题标题】:convert a set of flash files into SCORM Package for moodle将一组 flash 文件转换为 moodle 的 SCORM 包
【发布时间】:2013-04-10 06:24:48
【问题描述】:

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

【问题讨论】:

    标签: flash moodle scorm


    【解决方案1】:

    您可以将其转换为 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 是相对于文件本身的。 我没有测试清单,所以,也许缺少一些东西,但你可以从那里开始。

    希望这会有所帮助。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-12-27
      • 1970-01-01
      • 1970-01-01
      • 2017-03-08
      • 2021-01-27
      • 2020-05-11
      相关资源
      最近更新 更多