我有一组嵌入到一个html文件中的flash文件。无论如何,我可以将其转换为在Moodle中使用的SCORM包。或者有没有更好的方法将其作为moodle LMS的课程?
答案 0 :(得分: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中的hrefs相对于文件本身。 我没有测试清单,所以,也许有些东西丢失了,但你可以从那里开始。
希望这有帮助。