I have some videos that were created with Camtasia, but they only have xml, swf (2), and html files. I'm using the links module to stream the videos, which works fine in DNN 2.1.2. However, during an upgrade test to 4.5.1 I had to change any reference to the other files using the path "/Portals/0/YourFolder/YourFile". For instance, a new video contains these files:
myNewVid.html
myNewVid_config.xml
myNewVid.swf
myNewVid_controller.swf
In the html file, I had to change the path to controller and config files from:
"myNewVid_controller.swf?csConfigFile=myNewVid_config.xml"
to
"/Portals/0/myFolder/myNewVid_controller.swf?csConfigFile=/Portals/0/myFolder/myNewVid_config.xml"
Do that for all references in the html file.
You will also need to change one reference in the xml file:
<MovieURL>myNewVid.swf</MovieURL>
should be
<MovieURL>/Portals/0/myFolder/myNewVid.swf</MovieURL>
If anyone knows of a better way, feel free to share.
Thanks,
linque