Interface AviExportHandler
-
- All Known Implementing Classes:
Godiva
public interface AviExportHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
animationStarted(String times, String fps)
This is called when an animation is started.void
animationStopped()
Called when the animation is stopped.String
getAviUrl(String times, String fps)
Returns the URL to fetch an AVI file.
-
-
-
Method Detail
-
getAviUrl
String getAviUrl(String times, String fps)
Returns the URL to fetch an AVI file. This depends on the timesteps and frame rate required (all other data can be obtained from the current state (GodivaStateInfo
)- Parameters:
times
- A string representing the desired timesfps
- The frame rate, in frames-per-second- Returns:
- A URL which will lead to an AVI file containing an animation
-
animationStarted
void animationStarted(String times, String fps)
This is called when an animation is started. We provide the times and FPS so that the implementation can call getAviUrl if required (for example to set a link to the AVI when an animation is started as an overlay)- Parameters:
times
-fps
-
-
animationStopped
void animationStopped()
Called when the animation is stopped.
-
-