- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLoggerOptions.setDisableVideo()
方法的一些代码示例,展示了YoVariableLoggerOptions.setDisableVideo()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoVariableLoggerOptions.setDisableVideo()
方法的具体详情如下:
包路径:us.ihmc.robotDataLogger.logger.YoVariableLoggerOptions
类名称:YoVariableLoggerOptions
方法名:setDisableVideo
暂无
代码示例来源:origin: us.ihmc/IHMCRobotDataLogger
public static YoVariableLoggerOptions parse(String[] args) throws JSAPException
{
SimpleJSAP jsap = new SimpleJSAP("YoVariabeLogger", "Logs YoVariables and video from a robot", new Parameter[] {
new Switch("disableVideo", 'n', "noVideo", "Disable video recording"),
new FlaggedOption("logDirectory", JSAP.STRING_PARSER, YoVariableLoggerOptions.defaultLogDirectory, JSAP.NOT_REQUIRED, 'd', "directory",
"Directory where to save log files"),
new FlaggedOption("videoQuality", JSAP.DOUBLE_PARSER, String.valueOf(YoVariableLoggerOptions.defaultVideoQuality), JSAP.NOT_REQUIRED, 'q',
"quality", "Video quality"),
new Switch("flushAggressivelyToDisk", 's', "sync", "Aggressively flush data to disk. Reduces change of data loss but doesn't work on slow platters.") });
JSAPResult config = jsap.parse(args);
if (jsap.messagePrinted())
{
System.out.println(jsap.getUsage());
System.out.println(jsap.getHelp());
System.exit(-1);
}
YoVariableLoggerOptions options = new YoVariableLoggerOptions();
options.setLogDirectory(config.getString("logDirectory"));
options.setVideoQuality(config.getDouble("videoQuality"));
options.setDisableVideo(config.getBoolean("disableVideo"));
options.setFlushAggressivelyToDisk(config.getBoolean("flushAggressivelyToDisk"));
return options;
}
代码示例来源:origin: us.ihmc/ihmc-robot-data-logger
public static YoVariableLoggerOptions parse(String[] args) throws JSAPException
{
SimpleJSAP jsap = new SimpleJSAP("YoVariabeLogger", "Logs YoVariables and video from a robot", new Parameter[] {
new Switch("disableVideo", 'n', "noVideo", "Disable video recording"),
new FlaggedOption("logDirectory", JSAP.STRING_PARSER, YoVariableLoggerOptions.defaultLogDirectory, JSAP.NOT_REQUIRED, 'd', "directory",
"Directory where to save log files"),
new FlaggedOption("videoQuality", JSAP.DOUBLE_PARSER, String.valueOf(YoVariableLoggerOptions.defaultVideoQuality), JSAP.NOT_REQUIRED, 'q',
"quality", "Video quality for MJPEG"),
new FlaggedOption("videoCodec", JSAP.STRING_PARSER, String.valueOf(defaultCodec), JSAP.NOT_REQUIRED, 'c', "codec", "Desired video codec. AV_CODEC_ID_H264 or AV_CODEC_ID_MJPEG"),
new FlaggedOption("crf", JSAP.INTEGER_PARSER, String.valueOf(defaultCRF), JSAP.NOT_REQUIRED, 'r', "crf", "CRF (Constant rate factor) for H264. 0-51, 0 is lossless. Sane values are 18 to 28."),
new Switch("flushAggressivelyToDisk", 's', "sync", "Aggressively flush data to disk. Reduces change of data loss but doesn't work on slow platters.") });
JSAPResult config = jsap.parse(args);
if (jsap.messagePrinted())
{
System.out.println(jsap.getUsage());
System.out.println(jsap.getHelp());
System.exit(-1);
}
YoVariableLoggerOptions options = new YoVariableLoggerOptions();
options.setLogDirectory(config.getString("logDirectory"));
options.setVideoQuality(config.getDouble("videoQuality"));
options.setDisableVideo(config.getBoolean("disableVideo"));
options.setVideoCodec(CodecID.valueOf(config.getString("videoCodec")));
options.setCrf(config.getInt("crf"));
options.setFlushAggressivelyToDisk(config.getBoolean("flushAggressivelyToDisk"));
return options;
}
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer类的一些代码示例,展示了YoVariableServer类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中us.ihmc.robotDataLogger.YoVariableClient类的一些代码示例,展示了YoVariableClient类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中us.ihmc.robotDataLogger.YoVariablesUpdatedListener类的一些代码示例,展示了YoVariablesUpdatedListener类的
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLoggerOptions类的一些代码示例,展示了YoVariableLoggerOptions类
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLoggerListener类的一些代码示例,展示了YoVariableLoggerListene
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableSummarizer类的一些代码示例,展示了YoVariableSummarizer类的具体用法。
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLoggerDispatcher类的一些代码示例,展示了YoVariableLoggerDispa
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLogger类的一些代码示例,展示了YoVariableLogger类的具体用法。这些代码示例主要
本文整理了Java中us.ihmc.robotDataLogger.handshake.YoVariableHandshakeParser类的一些代码示例,展示了YoVariableHandshake
本文整理了Java中us.ihmc.robotDataLogger.logger.YoVariableLogReader类的一些代码示例,展示了YoVariableLogReader类的具体用法。这些
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.findVariableInRegistries()方法的一些代码示例,展示了YoVariable
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.start()方法的一些代码示例,展示了YoVariableServer.start()的具体用法
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.updateChangedVariables()方法的一些代码示例,展示了YoVariableSe
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.close()方法的一些代码示例,展示了YoVariableServer.close()的具体用法
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.update()方法的一些代码示例,展示了YoVariableServer.update()的具体
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.setMainRegistry()方法的一些代码示例,展示了YoVariableServer.se
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.createSummary()方法的一些代码示例,展示了YoVariableServer.crea
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.tickAndUpdate()方法的一些代码示例,展示了YoVariableServer.tick
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.addSummarizedVariable()方法的一些代码示例,展示了YoVariableSer
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer.()方法的一些代码示例,展示了YoVariableServer.()的具体用法。这些代码示例主要来
我是一名优秀的程序员,十分优秀!