语音指导消息配置在这里android sdk

时间:2016-05-27 10:16:22

标签: android here-api

有没有办法阻止特定语音指导消息告知用户?

更具体地说,我想阻止SDK向司机说明他到达航点或路线目的地。

有可能吗?

2 个答案:

答案 0 :(得分:0)

可以通过修改语音皮肤来删除不需要的文本。

步骤:

  1. 在数据中找到您要修改的语音皮肤// files / voice-download /

  2. 修改文件prompt.lua。

  3. 例如更改:

    -- 966: At the end of the road enter the roundabout
    ["c00c0y00"] = "Au bout de la route prenez le rond-point",
    

    为:

    -- 966: At the end of the road enter the roundabout
    ["c00c0y00"] = "",
    

答案 1 :(得分:0)

您可以使用AudioPlayerDelegate截取正在播放的音频文件,并过滤掉路径和目的地的文件,而不是黑客攻击语音皮肤lua文件:

https://developer.here.com/mobile-sdks/documentation/android-hybrid-plus/topics_api_nlp_hybrid_plus/com-here-android-mpa-guidance-audioplayerdelegate.html#topic-apiref

您可以检查当前操纵是否是跳过播放文件的航路点或目的地。