ホーム   Liplis   トップ   差分 バックアップ リロード   一覧 検索 最終更新   ヘルプ   最終更新のRSS
 

ClalisToneEmotional

Last-modified: 2022-02-27 (日) 22:15:07
Top/ClalisToneEmotional

ClalisToneEmotional

概要

「Clalis 感情付与」と「Clalis 口調変換」の合わせ技です。

指定された変換ファイルを元に、口調変換します。
さらに単語単位に分割し、単語ごとの感情と感情レベルを付与して返します。

口調変換については「Clalis 口調変換」、
感情付与については「Clalis 感情付与」を御覧ください。
 

デモフォーム

以下のページでAPIを試すことが出来ます。
ClalisApi.gif
 
 

APIリファレンス

SOAP

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     XML
     
     

POST TO XML

  • 引数
      sentence
      toneFileUrl
  • XML名前空間
     なし
  • 出力フォーマット
     XML
     
     

POST TO JSON

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     JSON
     
     

REST TO XML

  • 引数
      sentence
      toneFileUrl
  • XML名前空間
     なし
  • 出力フォーマット
     XML

 

REST TO JSON

  • 引数
      sentence
      toneFileUrl
  • 出力フォーマット
     JSON
     
     

出力フォーマット

要求方法によって出力フォーマットが異なります。
フォーマットの種類は以下のとおりです。

XMLフォーマット https://liplis.mine.nu/XMLSchema 名前空間

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 <?xml version="1.0" encoding="utf-8"?>
 <resEmotional xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="https://liplis.mine.nu/XMLSchema">
  <resWordList>
    <msgLeafAndEmotion>
      <name>string</name>
      <emotion>int</emotion>
      <point>int</point>
    </msgLeafAndEmotion>
    <msgLeafAndEmotion>
      <name>string</name>
      <emotion>int</emotion>
      <point>int</point>
    </msgLeafAndEmotion>
  </resWordList>
 </resEmotional>

XMLフォーマット

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 <?xml version="1.0" encoding="utf-8"?>
 <resEmotional xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <resWordList>
    <msgLeafAndEmotion>
      <name>string</name>
      <emotion>int</emotion>
      <point>int</point>
    </msgLeafAndEmotion>
    <msgLeafAndEmotion>
      <name>string</name>
      <emotion>int</emotion>
      <point>int</point>
    </msgLeafAndEmotion>
  </resWordList>
 </resEmotional>

JSONフォーマット

すべて開くすべて閉じる
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
-
|
-
|
|
|
!
-
|
|
|
!
|
!
  {"resWordList":
   [
    {
     "emotion":int,
     "name":"string",
     "point":int
    },
    {
     "emotion":int,
     "name":"string",
     "point":int
    }
   ]
  }