public interface Recorder
| Modifier and Type | Method and Description |
|---|---|
int |
getFrameRate() |
VideoType |
getVideoType() |
void |
init(VideoConfiguration configuration)
Initializes particular video recorder implementation, e.g.
|
Recorder |
setFrameRate(int framerate) |
Recorder |
setMessage(String message)
You have access to this message in resulting report so you can document what some video actually means.
|
Recorder |
setVideoTargetDir(File videoTargetDir) |
Recorder |
setVideoTargetDir(String videoTargetDir) |
Recorder |
setVideoType(VideoType videoType) |
void |
startRecording()
Starts to record your test.
|
void |
startRecording(File file)
Starts to record your test.
|
void |
startRecording(File file,
VideoType videoType)
Starts to record your test.
|
void |
startRecording(String fileName)
Starts to record your test.
|
void |
startRecording(String fileName,
VideoType videoType)
Starts to record your test.
|
void |
startRecording(VideoType videoType)
Starts to record your test.
|
Video |
stopRecording()
Stops to record your video after you started it with
startRecording() |
void init(VideoConfiguration configuration)
configuration - configuration of this video recorder implementationvoid startRecording()
void startRecording(VideoType videoType)
videoType - type of video you want to getvoid startRecording(String fileName)
fileName - name of video you want to start to recordvoid startRecording(File file)
file - file where to save recorded videovoid startRecording(String fileName, VideoType videoType)
fileName - name of video you want to start to recordvideoType - type of video you want to start to recordvoid startRecording(File file, VideoType videoType)
file - file where to save recorder videovideoType - type of video you want to start to recordRecorder setVideoTargetDir(String videoTargetDir)
videoTargetDir - name of directory you want to save all videos toRecorder setVideoTargetDir(File videoTargetDir)
videoTargetDir - directory you want to save all videos toRecorder setVideoType(VideoType videoType)
videoType - type of video you want all videos to beVideoType getVideoType()
Video stopRecording()
startRecording()Recorder setFrameRate(int framerate)
framerate - of recorder videosint getFrameRate()
Recorder setMessage(String message)
message - message to add for to be recorded videoCopyright © 2014–2015 JBoss by Red Hat. All rights reserved.