ImageTrackOptions
垫片图片的设置选项。
C++
struct ImageTrackOptions {
const char* imageUrl;
int fps;
ImageTrackOptions() : imageUrl(NULL), fps(1) {}
};
imageUrl
垫片图片的 URL,目前支持 JPEG、JPG、PNG、GIF 格式的图片。支持从本地绝对路径或相对路径添加垫片图片。
信息
在 Android 平台上,不支持从
/assets/
中添加垫片图片。fps
视频帧率,取值范围为 [1,30]。默认值为 1。