音声ガイダンスを追加する
運転中は、ユーザーの注意がルートに集中するようにしなければなりません。提供された運転操作データからビジュアル表現を構築できるだけでなく (上のセクションを参照)、経路誘導のガイダンス中に対話できるようにするためのローカライズされたテキスト表現を取得することもできます。これらの運転操作通知はStringとして提供され、任意のTTSソリューションと組み合わせて使用できます。
注運転操作通知はドライバーを対象としています。歩行者のガイダンスに使用することは推奨しません。
HERE SDK には、事前に録音された音声スキンは含まれていません。そのため、再生用に TTS エンジンを統合する必要があります。オーディオ再生の詳細と例を以下に紹介します。
通知の例 (文字列として提供):
Voice message: After 1 kilometer turn left onto North Blaney Avenue.
Voice message: Now turn left.
Voice message: After 1 kilometer turn right onto Forest Avenue.
Voice message: Now turn right.
Voice message: After 400 meters turn right onto Park Avenue.
Voice message: Now turn right.
これらの通知を受信するには、EventTextDelegate を設定します。
visualNavigator.eventTextDelegate = self
...
// Conform to EventTextDelegate.
// Notifies on messages that can be fed into TTS engines to guide the user with audible instructions.
// The texts can be maneuver instructions or warn on certain obstacles, such as speed cameras.
func onEventTextUpdated(_ eventText: heresdk.EventText) {
// We use the built-in TTS engine to synthesize the localized text as audio.
voiceAssistant.speak(message: eventText.text)
// We can optionally retrieve the associated maneuver. The details will be nil if the text contains
// non-maneuver related information, such as for speed camera warnings.
if (eventText.type == TextNotificationType.maneuver) {
let maneuver = eventText.maneuverNotificationDetails?.maneuver;
}
}
ここでは VoiceAssistant というヘルパー クラスを使用し、音声合成エンジンをラップして操作通知を読み上げます。エンジンはAppleのAVSpeechSynthesizerクラスを使用します。
このクラスに関心がある場合は、GitHubの「Navigation」サンプルアプリの一部としてこのクラスが含まれています。
スピード取締カメラの警告は特定の国でのみ利用可能であり、SafetyCameraWarningDelegateが設定されている場合にのみEventTextとして含まれます。
Natural Guidance は、運転操作通知を改善するために重要なオブジェクトを使用します。
必要に応じて、Natural Guidance を有効にすることもできます。EventText テキストを強化して、ルートに沿って重要なオブジェクト (信号機や停止標識など) を含めることで、運転操作をよりわかりやすくできます。例:「次の信号機で左折してウォール ストリートに入ります」この機能はデフォルトで無効になっています。有効にするには includedNaturalGuidanceTypes のリストを使用して、trafficLight などの NaturalGuidanceType を ManeuverNotificationOptions に少なくとも 1 つ追加します。
LanguageCode を設定すると、通知テキストと UnitSystem をローカライズしてメートル法またはインペリアル法の長さ単位を決定できます。ルートが設定される前にこれを呼び出すようにしてください。呼び出さないと、デフォルト設定 (en-US、metric) が使用されます。ManeuverNotificationOptionsの詳細については、「APIリファレンス」を参照してください。
public func setupVoiceGuidance(visualNavigator: VisualNavigator) {
var maneuverNotificationOptions = ManeuverNotificationOptions()
let ttsLanguageCode = getLanguageCodeForDevice(supportedVoiceSkins: VisualNavigator.availableLanguagesForManeuverNotifications())
// Set the language in which the notifications will be generated.
maneuverNotificationOptions.language = ttsLanguageCode
// Set the measurement system used for distances.
maneuverNotificationOptions.unitSystem = UnitSystem.metric
visualNavigator.maneuverNotificationOptions = maneuverNotificationOptions
print("LanguageCode for maneuver notifications: \(ttsLanguageCode).")
// Set language to our TextToSpeech engine.
let locale = LanguageCodeConverter.getLocale(languageCode: ttsLanguageCode)
encoder?.setLocaleLanguage(locale: locale)
if voiceAssistant.setLanguage(locale: locale) {
print("TextToSpeech engine uses this language: \(locale)")
} else {
print("TextToSpeech engine does not support this language: \(locale)")
}
}
この例では、デバイスの優先言語設定を使用しています。以下に取得方法の一例を示します。
private func getLanguageCodeForDevice(supportedVoiceSkins: [heresdk.LanguageCode]) -> LanguageCode {
// 1. Determine if preferred device language is supported by our TextToSpeech engine.
let identifierForCurrenDevice = Locale.preferredLanguages.first!
var localeForCurrenDevice = Locale(identifier: identifierForCurrenDevice)
if !voiceAssistant.isLanguageAvailable(identifier: identifierForCurrenDevice) {
print("TextToSpeech engine does not support: \(identifierForCurrenDevice), falling back to en-US.")
localeForCurrenDevice = Locale(identifier: "en-US")
}
// 2. Determine supported voice skins from HERE SDK.
var languageCodeForCurrenDevice = LanguageCodeConverter.getLanguageCode(locale: localeForCurrenDevice)
if !supportedVoiceSkins.contains(languageCodeForCurrenDevice) {
print("No voice skins available for \(languageCodeForCurrenDevice), falling back to enUs.")
languageCodeForCurrenDevice = LanguageCode.enUs
}
return languageCodeForCurrenDevice
}
内部的には、運転操作通知のテキストは RouteProgress イベントからアクセスできる Maneuver データから生成されます。RouteProgress イベントは、渡された位置情報の更新に基づいて頻繁に生成されます。運転操作通知では、テキスト メッセージを生成する頻度とタイミングを指定できます。これは、ManeuverNotificationTimingOptions で指定できます。
ManeuverNotificationType のそれぞれに、移動モードと道路タイプごとの ManeuverNotificationTimingOptions を設定できます。また、メートル単位の距離または秒単位でタイミングを指定できます。
ManeuverNotificationType.range:最初の通知。rangeNotificationDistanceInMetersまたはrangeNotificationTimeInSecondsで指定。ManeuverNotificationType.reminder:2 つ目の通知。reminderNotificationDistanceInMetersまたはreminderNotificationTimeInSecondsで指定。ManeuverNotificationType.distance:3 つ目の通知。distanceNotificationDistanceInMetersまたはdistanceNotificationTimeInSecondsで指定。ManeuverNotificationType.action:4 つ目の通知。actionNotificationDistanceInMetersまたはactionNotificationTimeInSecondsで指定。
タイプは距離の順に並べられます。運転操作の数メートル手前のみの TTS メッセージをカスタマイズする場合は、distanceNotificationDistanceInMeters のみを設定します。maneuverNotificationOptions.includedNotificationTypes でタイプを除外することもできます。たとえば、distance タイプのみを設定すると、運転操作が行われても (= action)、他の通知は受信しません。
以下では、高速道路 (道路タイプ) の車 (= 移動モード) の distance タイプ値のみを調整し、その他の値はすべてそのままにしています。
// Get currently set values - or default values, if no values have been set before.
// By default, notifications for cars on highways are sent 1300 meters before the maneuver
// takes place.
var carHighwayTimings = navigator.getManeuverNotificationTimingOptions(transportMode: TransportMode.car,
timingProfile: TimingProfile.fastSpeed)
// Set ManeuverNotificationType.distance (3rd notification):
// Set a new value for cars on highways and keep all other values unchanged.
carHighwayTimings.distanceNotificationDistanceInMeters = 1500
// Apply the changes.
navigator.setManeuverNotificationTimingOptions(transportMode: TransportMode.car,
timingProfile: TimingProfile.fastSpeed,
options: carHighwayTimings)
// By default, we keep all types. If you set an empty list you will disallow generating the texts.
// The names of the type indicate the use case: For example, range is the farthest notification.
// action is the notification when the maneuver takes place.
// And reminder and distance are two optional notifications when approaching the maneuver.
maneuverNotificationOptions.includedNotificationTypes = [
ManeuverNotificationType.range, // first notification.
ManeuverNotificationType.reminder, // second notification.
ManeuverNotificationType.distance, // third notification.
ManeuverNotificationType.action // fourth notification.
]
デフォルトでは、運転操作通知のテキストはプレーン テキストの正字法 ("Wall Street") です。一部の TTS エンジンはボイス データをサポートしており、SSML 表記の "wɔːl"striːt" の他プレーン テキストの "Wall Street" も追加されています。これにより、より正確な発音になります。以下のコードを呼び出してボイス データを有効にします。
// Add phoneme support with SSML.
// Note that phoneme support may not be supported by all TTS engines.
maneuverNotificationOptions.enablePhoneme = true
maneuverNotificationOptions.notificationFormatOption = NotificationFormatOption.ssml
ボイス データを使用した音声メッセージの例:
After 300 meters turn right onto <lang xml:lang="ENG"><phoneme alphabet="nts" ph=""wɔːl"striːt" orthmode="ignorepunct">Wall Street</phoneme></lang>.
「API リファレンス」を参照して、ManeuverNotificationOptions で設定できるその他のオプションを確認してください。
HERE SDK では 37 の言語がサポートされています。VisualNavigator.availableLanguagesForManeuverNotifications() を使用して VisualNavigator から言語をクエリできます。HERE SDK 内のすべての言語は LanguageCode 列挙型 (enum) として指定されます。これをLocaleインスタンスに変換するには、LanguageCodeConverterを使用できます。これはオープンソースのユーティリティクラスで、GitHubの「Navigation」のサンプルアプリの一部として含まれています。
注運転操作通知の生成でサポートされている各言語は、HERE SDK フレームワーク内に音声スキンとして格納されています。フレームワークを展開し、
voice_assetsフォルダーを探してください。使用予定のないアセットを手動で削除して、HERE SDK パッケージのサイズを小さくすることができます。
ただし、運転操作通知を TTS エンジンにフィードするには、選択した TTS エンジンで指定の言語がサポートされていることを確認する必要もあります。通常、各デバイスにはいくつかの言語がプレインストールされていますが、最初はすべての言語が表示されていない場合があります。
注「SpatialAudioNavigation」サンプルアプリでは、
VisualNavigatorとiOSのネイティブコードを併用して、オーディオパンを使用してTTSオーディオメッセージを再生し、ステレオパノラマで方向を示す方法を確認できます。この例はGitHubで確認できます。
音声ガイダンスの対応言語
以下で、サポートされているすべての音声言語のリストと、HERE SDK フレームワーク内に保存されている関連する音声スキンの名前を確認できます。
- アラビア語 (サウジアラビア):voice_package_ar-SA
- ベンガル語:voice_package_bn-IN
- ブルガリア語:voice_package_bg-BG
- カタルーニャ語:voice_package_ca-ES
- 中国語 (簡体字中国):voice_package_zh-CN
- 中国語 (繁体字香港):voice_package_zh-HK
- 中国語 (繁体字台湾):voice_package_zh-TW
- クロアチア語:voice_package_hr-HR
- チェコ語:voice_package_cs-CZ
- デンマーク語:voice_package_da-DK
- オランダ語:voice_package_nl-NL
- 英語 (英国):voice_package_en-GB
- 英語 (米国):voice_package_en-US
- ペルシア語 (イラン):voice_package_fa-IR
- フィンランド語:voice_package_fi-FI
- フラマン語 (ベルギー):voice_package_nl-BE
- フランス語 (カナダ):voice_package_fr-CA
- フランス語:voice_package_fr-FR
- ドイツ語:voice_package_de-DE
- ギリシャ語:voice_package_el-GR
- グジャラート語:voice_package_gu-IN
- ヘブライ語:voice_package_he-IL
- ヒンディー語:voice_package_hi-IN
- ハンガリー語:voice_package_hu-HU
- インドネシア語 (バハサ):voice_package_id-ID
- イタリア語:voice_package_it-IT
- 日本語:voice_package_ja-JP
- カンナダ語:voice_package_kn-IN
- 韓国語:voice_package_ko-KR
- マラヤーラム語:voice_package_ml-IN
- ノルウェー語 (ブークモール):voice_package_nb-NO
- ポーランド語:voice_package_pl-PL
- ポルトガル語 (ブラジル):voice_package_pt-BR
- ポルトガル語 (ポルトガル) voice_package_pt-PT
- ルーマニア語:voice_package_ro-RO
- ロシア語:voice_package_ru-RU
- セルビア語:voice_package_sr-CS
- スロバキア語:voice_package_sk-SK
- スペイン語 (アルゼンチン):voice_package_es-AR
- スペイン語 (メキシコ):voice_package_es-MX
- スペイン語 (スペイン):voice_package_es-ES
- スウェーデン語:voice_package_sv-SE
- タミル語:voice_package_ta-IN
- テルグ語:voice_package_te-IN
- タイ語:voice_package_th-TH
- トルコ語:voice_package_tr-TR
- ウクライナ語:voice_package_uk-UA
- ベトナム語:voice_package_vi-VN
HERE SDKフレームワークを展開し、voice_assetsフォルダーを見つけます。フレームワークのサイズを縮小する場合は、不要な音声パッケージを削除できます。
空間的な運転操作の音声通知
EventTextDelegate から提供される同じ voiceText (上記を参照) を、空間オーディオ情報を使用して強化することもできます。
空間オーディオの通知を使用すると、音声合成文字列のステレオパノラマをリアルタイムで調整できます。これは、車に座っているドライバーと関連する次のキュー (運転操作および警告) の位置に基づいて行われます。
EventTextListener を使用すると、次のキューの運転操作テキストだけでなく、EventTextListener.SpatialNotificationDetails で HERE SDK によって定義された空間オーディオ軌跡の 1 つを構成する方位角要素も取得できます。結果の SpatialTrajectoryData には次に使用される方位角が含まれており、空間オーディオの軌跡が終了したかどうかを示します。
この情報を取得するには、EventTextOptions.enableSpatialAudio を有効にする必要があります。
SpatialManeuverAudioCuePanningを使用してパンを開始し、CustomPanningDataを渡してSpatialManeuverのestimatedAudioCueDurationを更新し、そのinitialAzimuthInDegreesとsweepAzimuthInDegreesのプロパティをカスタマイズします。
サンプルアプリを試す
- GitHubの「Navigation」サンプルアプリをお試しください。このアプリでは、TTSエンジンを統合して音声コマンドを再生する方法の例を示しています。
- 空間オーディオの詳細については、GitHubの「SpatialAudioNavigation」サンプルアプリをご覧ください。
7 日前の更新










