次の方法で共有


Transcriptions - List Files

指定された ID で識別される文字起こしのファイルを取得します。

GET {endpoint}/speechtotext/v3.2-preview.2/transcriptions/{id}/files
GET {endpoint}/speechtotext/v3.2-preview.2/transcriptions/{id}/files?sasValidityInSeconds={sasValidityInSeconds}&skip={skip}&top={top}&filter={filter}

URI パラメーター

名前 / 必須 説明
endpoint
path True

string

サポートされている Cognitive Services エンドポイント (プロトコルとホスト名、例: https://westus.api.cognitive.microsoft.com)。

id
path True

string (uuid)

文字起こしの識別子。

filter
query

string

使用可能なファイルのサブセットを選択するためのフィルター式。

        - Supported properties: name, createdDateTime, kind.

        - Operators:

          - eq, ne are supported for all properties.

          - gt, ge, lt, le are supported for createdDateTime.

          - and, or, not are supported.

        - Example:

          filter=name eq 'myaudio.wav.json' and kind eq 'Transcription'
sasValidityInSeconds
query

integer (int32)

SAS URL が有効である必要がある期間 (秒単位)。 既定の期間は 12 時間です。 BYOS (https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/speech-encryption-of-data-at-rest#bring-your-own-storage-byos-for-customization-and-logging): 値 0 は、SAS トークンのないプレーン BLOB URI が生成されることを意味します。

skip
query

integer (int32)

スキップされるデータセットの数。

top
query

integer (int32)

スキップ後に含まれるデータセットの数。

応答

名前 説明
200 OK

PaginatedFiles

わかりました

ヘッダー

Retry-After: integer

Other Status Codes

Error

エラーが発生しました。

セキュリティ

Ocp-Apim-Subscription-Key

コグニティブ サービス アカウント キーをここで指定します。

型: apiKey
/: header

Authorization

このリージョンの STS によって返される JWT からアクセス トークンを指定します。 STS URL に次のクエリ文字列を追加して、トークンに管理スコープを追加してください: ?scope=speechservicesmanagement

型: apiKey
/: header

Get all files
Get all transcription files the name of which starts with the specified string

Get all files

要求のサンプル

GET {endpoint}/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?sasValidityInSeconds=120&skip=0&top=2&filter=createdDateTime%20ge%202018-01-24T09:54:39Z

応答のサンプル

{
  "values": [
    {
      "self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files/ee4733cd-b1a7-4813-87e2-00d582c28a29",
      "name": "mywavefile1.wav.json",
      "kind": "Transcription",
      "properties": {
        "size": 200
      },
      "createdDateTime": "2020-01-13T08:00:00Z",
      "links": {
        "contentUrl": "https://customspeech-usw.blob.core.windows.net/artifacts/mywavefile1.wav.json?st=2018-02-09T18%3A07%3A00Z&se=2018-02-10T18%3A07%3A00Z&sp=rl&sv=2017-04-17&sr=b&sig=e05d8d56-9675-448b-820c-4318ae64c8d5"
      }
    },
    {
      "self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files/28bc946b-c251-4a86-84f6-ea0f0a2373ef",
      "name": "mywavefile2.wav.json",
      "kind": "Transcription",
      "properties": {
        "size": 200
      },
      "createdDateTime": "2020-01-13T08:00:00Z",
      "links": {
        "contentUrl": "https://customspeech-usw.blob.core.windows.net/artifacts/mywavefile2.wav.json?st=2018-02-09T18%3A07%3A00Z&se=2018-02-10T18%3A07%3A00Z&sp=rl&sv=2017-04-17&sr=b&sig=e05d8d56-9675-448b-820c-4318ae64c8d5"
      }
    }
  ],
  "@nextLink": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?skip=2&top=2"
}

Get all transcription files the name of which starts with the specified string

要求のサンプル

GET {endpoint}/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?sasValidityInSeconds=120&skip=0&top=10&filter=name%20eq%20'mywavefile1.wav.json'

応答のサンプル

{
  "values": [
    {
      "self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files/ee4733cd-b1a7-4813-87e2-00d582c28a29",
      "name": "mywavefile1.wav.json",
      "kind": "Transcription",
      "properties": {
        "size": 200
      },
      "createdDateTime": "2020-01-13T08:00:00Z",
      "links": {
        "contentUrl": "https://customspeech-usw.blob.core.windows.net/artifacts/mywavefile1.wav.json?st=2018-02-09T18%3A07%3A00Z&se=2018-02-10T18%3A07%3A00Z&sp=rl&sv=2017-04-17&sr=b&sig=e05d8d56-9675-448b-820c-4318ae64c8d5"
      }
    }
  ]
}

定義

名前 説明
DetailedErrorCode

DetailedErrorCode

Error

エラー

ErrorCode

エラーコード

File

ファイル

FileKind

FileKind

FileLinks

FileLinks

FileProperties

FileProperties

InnerError

InnerError

PaginatedFiles

PaginatedFiles

DetailedErrorCode

DetailedErrorCode

説明
InvalidParameterValue

パラメーター値が無効です。

InvalidRequestBodyFormat

要求本文の形式が無効です。

EmptyRequest

空の要求。

MissingInputRecords

入力レコードがありません。

InvalidDocument

ドキュメントが無効です。

ModelVersionIncorrect

モデルのバージョンが正しくありません。

InvalidDocumentBatch

ドキュメント バッチが無効です。

UnsupportedLanguageCode

サポートされていない言語コード。

DataImportFailed

データのインポートに失敗しました。

InUseViolation

使用中の違反。

InvalidLocale

ロケールが無効です。

InvalidBaseModel

ベース モデルが無効です。

InvalidAdaptationMapping

適応マッピングが無効です。

InvalidDataset

データセットが無効です。

InvalidTest

テストが無効です。

FailedDataset

失敗したデータセット。

InvalidModel

モデルが無効です。

InvalidTranscription

文字起こしが無効です。

InvalidPayload

ペイロードが無効です。

InvalidParameter

パラメーターが無効です。

EndpointWithoutLogging

ログ記録なしのエンドポイント。

InvalidPermissions

アクセス許可が無効です。

InvalidPrerequisite

前提条件が無効です。

InvalidProductId

製品 ID が無効です。

InvalidSubscription

サブスクリプションが無効です。

InvalidProject

プロジェクトが無効です。

InvalidProjectKind

プロジェクトの種類が無効です。

InvalidRecordingsUri

無効な記録 URI。

OnlyOneOfUrlsOrContainerOrDataset

URL またはコンテナーまたはデータセットのいずれか 1 つだけ。

ExceededNumberOfRecordingsUris

記録 URI の数を超えました。

ModelMismatch

モデルの不一致。

ProjectGenderMismatch

プロジェクトの性別の不一致。

ModelDeprecated

モデルは非推奨になりました。

ModelExists

モデルが存在します。

ModelNotDeployable

モデルはデプロイできません。

EndpointNotUpdatable

エンドポイントは更新できません。

SingleDefaultEndpoint

単一の既定のエンドポイント。

EndpointCannotBeDefault

エンドポイントを既定にすることはできません。

InvalidModelUri

モデル URI が無効です。

SubscriptionNotFound

サブスクリプションが見つかりません。

QuotaViolation

クォータ違反。

UnsupportedDelta

サポートされていないデルタ。

UnsupportedFilter

サポートされていないフィルター。

UnsupportedPagination

サポートされていない改ページ位置。

UnsupportedDynamicConfiguration

サポートされていない動的構成。

UnsupportedOrderBy

サポートされていない注文者。

NoUtf8WithBom

bom を含む utf8 はありません。

ModelDeploymentNotCompleteState

モデルのデプロイが完了していない状態です。

SkuLimitsExist

SKU の制限が存在します。

DeployingFailedModel

失敗したモデルのデプロイ。

UnsupportedTimeRange

サポートされていない時間範囲。

InvalidLogDate

ログの日付が無効です。

InvalidLogId

無効なログ ID です。

InvalidLogStartTime

ログの開始時刻が無効です。

InvalidLogEndTime

ログの終了時刻が無効です。

InvalidTopForLogs

ログの top が無効です。

InvalidSkipTokenForLogs

ログのスキップ トークンが無効です。

DeleteNotAllowed

削除は許可されていません。

Forbidden

禁じられた。

DeployNotAllowed

デプロイは許可されていません。

UnexpectedError

予期しないエラー。

InvalidCollection

コレクションが無効です。

InvalidCallbackUri

コールバック URI が無効です。

InvalidSasValidityDuration

SAS の有効期間が無効です。

InaccessibleCustomerStorage

お客様のストレージにアクセスできません。

UnsupportedClassBasedAdaptation

サポートされていないクラス ベースの適応。

InvalidWebHookEventKind

Web フック イベントの種類が無効です。

InvalidTimeToLive

有効期限が無効です。

InvalidSourceAzureResourceId

ソース Azure リソース ID が無効です。

ModelCopyOperationExists

モデルのコピー操作が存在します。

Error

エラー

名前 説明
code

ErrorCode

エラーコード
大まかなエラー コード。

details

Error[]

エラーや予想されるポリシーに関するその他のサポートの詳細。

innerError

InnerError

InnerError
https://microsoft.sharepoint.com/%3Aw%3A/t/CognitiveServicesPMO/EUoytcrjuJdKpeOKIK_QRC8BPtUYQpKBi8JsWyeDMRsWlQ?e=CPq8owで利用可能な Cognitive Services API ガイドラインに準拠した新しい内部エラー形式。 これには、必須プロパティ ErrorCode、メッセージ、および省略可能なプロパティ ターゲット、details(キー値ペア)、内部エラー (入れ子にできます) が含まれます。

message

string

高レベルのエラー メッセージ。

target

string

エラーの原因。 たとえば、無効なドキュメントの場合は "documents" または "document id" になります。

ErrorCode

エラーコード

説明
InvalidRequest

無効な要求エラー コードを表します。

InvalidArgument

無効な引数のエラー コードを表します。

InternalServerError

内部サーバー エラー コードを表します。

ServiceUnavailable

サービスを使用できないエラー コードを表します。

NotFound

見つからないエラー コードを表します。

PipelineError

パイプライン エラー コードを表します。

Conflict

競合エラー コードを表します。

InternalCommunicationFailed

内部通信に失敗したエラー コードを表します。

Forbidden

禁止されているエラー コードを表します。

NotAllowed

許可されていないエラー コードを表します。

Unauthorized

承認されていないエラー コードを表します。

UnsupportedMediaType

サポートされていないメディアの種類のエラー コードを表します。

TooManyRequests

要求の数が多すぎるエラー コードを表します。

UnprocessableEntity

処理不可能なエンティティ エラー コードを表します。

File

ファイル

名前 説明
createdDateTime

string (date-time)

このファイルの作成時刻。 タイムスタンプは ISO 8601 の日付と時刻の形式でエンコードされます (https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representationsを参照)。

kind

FileKind

FileKind
データの種類。

links

FileLinks

FileLinks

name

string

このファイルの名前。

properties

FileProperties

FileProperties

self

string (uri)

このエンティティの場所。

FileKind

FileKind

説明
DatasetReport

データの種類はデータセット レポートです。

Audio

データの種類はオーディオです。

LanguageData

データの種類は言語データです。

PronunciationData

データの種類は発音データです。

AcousticDataArchive

データの種類は、音響データ アーカイブです。

AcousticDataTranscriptionV2

データの種類は、音響データ文字起こし v2 です。

Transcription

データの種類は文字起こしです。

TranscriptionReport

データの種類は文字起こしレポートです。

EvaluationDetails

データの種類は評価の詳細です。

ModelReport

データの種類はモデル レポートです。

OutputFormattingData

データの種類は、出力書式設定入力ファイルです。

FileLinks

名前 説明
contentUrl

string (uri)

このファイルの内容を取得する URL。

FileProperties

FileProperties

名前 説明
duration

string

このファイルがオーディオ ファイルの場合の期間。 期間は ISO 8601 期間としてエンコードされます (「PnYnMnDTnHnMnS」を参照 https://en.wikipedia.org/wiki/ISO_8601#Durations)。

size

integer (int64)

データのサイズ (バイト単位)。

InnerError

InnerError

名前 説明
code

DetailedErrorCode

DetailedErrorCode
詳細なエラー コード列挙型。

details

object

エラーや予想されるポリシーに関するその他のサポートの詳細。

innerError

InnerError

InnerError
https://microsoft.sharepoint.com/%3Aw%3A/t/CognitiveServicesPMO/EUoytcrjuJdKpeOKIK_QRC8BPtUYQpKBi8JsWyeDMRsWlQ?e=CPq8owで利用可能な Cognitive Services API ガイドラインに準拠した新しい内部エラー形式。 これには、必須プロパティ ErrorCode、メッセージ、および省略可能なプロパティ ターゲット、details(キー値ペア)、内部エラー (入れ子にできます) が含まれます。

message

string

高レベルのエラー メッセージ。

target

string

エラーの原因。 たとえば、無効なドキュメントの場合は "documents" または "document id" になります。

PaginatedFiles

PaginatedFiles

名前 説明
@nextLink

string (uri)

使用可能なエンティティが他にある場合は、ページ分割された結果の次のセットへのリンク。それ以外の場合は null。

values

File[]

渡されたクエリ パラメーター 'skip' と 'top' またはその既定値によって制限されるエンティティの一覧。

ページ分割を使用してリストを反復処理し、エンティティを並列で削除すると、一部のエンティティが結果でスキップされます。 クライアントでリストを作成し、完全なリストのフェッチ後に削除することをお勧めします。