public interface Recorder
| Modifier and Type | Method and Description |
|---|---|
int |
getFrameRate() |
VideoType |
getVideoType() |
void |
init(VideoConfiguration configuration)
Initializes particular video recorder implementation, e.g.
|
void |
setFrameRate(int framerate) |
void |
setVideoTargetDir(File videoTargetDir) |
void |
setVideoTargetDir(String videoTargetDir) |
void |
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 recordvoid setVideoTargetDir(String videoTargetDir)
videoTargetDir - name of directory you want to save all videos tovoid setVideoTargetDir(File videoTargetDir)
videoTargetDir - directory you want to save all videos tovoid setVideoType(VideoType videoType)
videoType - type of video you want all videos to beVideoType getVideoType()
Video stopRecording()
startRecording()void setFrameRate(int framerate)
framerate - of recorder videosint getFrameRate()
Copyright © 2014 JBoss by Red Hat. All rights reserved.