2016-11-13 66 views
0

有没有方法可以设置在分析视频中的情绪时多频繁地生成聚合结果?Microsoft认知服务情感API:视频聚合结果频率

我目前使用Microsoft Cognitive Services Emotion API(https://www.microsoft.com/cognitive-services/en-us/emotion-api),但我找不到任何相关文档。

在做一些研究时,我发现可以使用Azure Media Analytics设置间隔(https://azure.microsoft.com/en-us/documentation/articles/media-services-face-and-emotion-detection/)。具体通过设置预设如:

{ 
    "version": "1.0", 
    "options": { 
    "aggregateEmotionWindowMs": "987", 
    "mode": "aggregateEmotion", 
    "aggregateEmotionIntervalMs": "342" 
    } 
} 

我正在寻找类似于Microsoft Cognitive Services Emotion API的东西。

谢谢。

回答

0

今天通过Microsoft Cognitive Services无法实现这一点。您只能在通过Azure媒体服务调用服务时设置预设。

0

你是对的,你可以通过媒体服务编辑器设置检测间隔。您是否需要使用Cognitive API的具体原因?

+0

我使用认知API,因为我没有意识到使用Azure Media Analytics进行情绪检测。 –