Hello!
I am testing some functionalities in krpano, everything in going fine, only that I don't have the sound! If I play the file alone in win explorer, it works fine. I had checked the paths, I put the plugins inside my xml etc but still nothing... ;((((
<include url="%SWFPATH%/skin/videoplayer.xml" />
.....
<!-- soundinterface plugin -->
<plugin name="soundinterface"
url="%SWFPATH%/plugins/soundinterface.swf"
alturl="%SWFPATH%/plugins/soundinterface.js"
rootpath="%SWFPATH%/skin"
preload="true"
keep="true"
volume="1.0"
mute="false"
/>
.....
<events name="video_events" devices="mobile.or.tablet.or.HTML5" keep="true"
onmousedown="video_auto_start();"
onremovepano="if(xml.scene != video_scene, plugin[video].seek(0); plugin[video].pause(); );" />
<action name="video_auto_start">
if(video_auto_start !== true,
if(plugin[video].ispaused,
plugin[video].play();
delayedcall(0.1, plugin[video].pause() );
);
if(hotspot[spotvideolien].ispaused,
hotspot[spotvideolien].play();
delayedcall(0.1, hotspot[spotvideolien].pause() );
);
set(events[video_events].onmousedown, null);
set(video_auto_start, true);
);
</action>
.....
<hotspot name="videospot"
url="media_playback_start.png"
scale="0.5"
zoom="true"
ath="-26.5" atv="0"
onclick="looktohotspot(get(name),90); videoplayer_open('%SWFPATH%/skin/cats.mp4|%SWFPATH%/skin/cats.webm', '%SWFPATH%/skin/cats-poster.jpg', 0.5);"
/>
<!-- hotspots video -->
<hotspot name="spotvideolien" url="%SWFPATH%/skin/media_playback_start.png"
scale="0.5"
zoom="true"
loop="false"
ath="-1" atv="-2"
video_auto_start="true"
range="90.0"
volume="1.0"
mute="false"
onclick="looktohotspot(get(name),get(view.fov)); videoplayer_open('%SWFPATH%/skin/feu.mp4|%SWFPATH%/skin/feu.webm', %SWFPATH%/skin/feu.jpg); video_auto_start();" pausedonstart="true" />
Thanks!