statistics list_video_duration#

Description#

各タスクの動画の長さを出力します。

Examples#

$ annofabcli statistics list_video_duration --project_id prj1

出力結果#

CSV出力#

$ annofabcli statistics list_video_duration  --project_id prj1 \
--output out.csv --format csv
out.csv#

task_id

task_status

task_phase

task_phase_stage

input_data_id

input_data_name

video_duration_second

input_data_updated_datetime

sample_task_03

complete

acceptance

1

sample_video_03.mp4

sample_video_03.mp4

25

2024-10-04T09:18:02.416+09:00

sample_task_04

complete

acceptance

1

sample_video_04.mp4

sample_video_04.mp4

18.7

2024-10-05T09:18:02.416+09:00

JSON出力#

$ annofabcli statistics list_video_duration  --project_id prj1 \
--output out.json --format pretty_json
out.json#
[
{
    "task_id": "test1",
    "task_status": "complete",
    "task_phase": "acceptance",
    "task_phase_stage": 1,
    "input_data_id": "c37be9c2-c8e7-472b-8766-7f16e197c6ce",
    "input_data_name": "video1",
    "video_duration_second": 5.294,
    "input_data_updated_datetime": "2024-10-04T09:18:02.416+09:00"
}
]

Usage Details#

各タスクの動画の長さを出力します。

usage: annofabcli statistics list_video_duration [-h] [--yes]
                                                 [--endpoint_url ENDPOINT_URL]
                                                 [--annofab_user_id ANNOFAB_USER_ID]
                                                 [--annofab_password ANNOFAB_PASSWORD]
                                                 [--annofab_pat ANNOFAB_PAT]
                                                 [--mfa_code MFA_CODE]
                                                 [--logdir LOGDIR]
                                                 [--disable_log] [--debug]
                                                 [--input_data_json INPUT_DATA_JSON]
                                                 [--task_json TASK_JSON]
                                                 [-p PROJECT_ID]
                                                 [-f {csv,json,pretty_json}]
                                                 [-o OUTPUT] [--latest]
                                                 [--temp_dir TEMP_DIR]

Named Arguments#

--input_data_json

入力データ情報が記載されたJSONファイルのパスを指定します。 JSONファイルは $ annofabcli input_data download コマンドで取得できます。

--task_json

タスク情報が記載されたJSONファイルのパスを指定します。 JSONファイルは $ annofabcli task download コマンドで取得できます。

-p, --project_id

出力対象プロジェクトのID。--input_data_json--task_json が未指定のときは必須です。

-f, --format

Possible choices: csv, json, pretty_json

出力フォーマットを指定します。

Default: 'csv'

-o, --output

出力先のファイルパスを指定します。未指定の場合は、標準出力に出力されます。

--latest

入力データ情報とタスク情報の最新版を参照します。このオプションを指定すると数分待ちます。

--temp_dir

指定したディレクトリに、入力データのJSONやタスクのJSONなどテンポラリファイルをダウンロードします。

global optional arguments#

--yes

処理中に現れる問い合わせに対して、常に yes と回答します。

--endpoint_url

Annofab WebAPIのエンドポイントを指定します。

Default: 'https://annofab.com'

--annofab_user_id

Annofabにログインする際のユーザーID

--annofab_password

Annofabにログインする際のパスワード

--annofab_pat

Annofabにログインする際のパーソナルアクセストークン

--mfa_code

Annofabにログインする際のMFAコード

--logdir

ログファイルを保存するディレクトリを指定します。

Default: .log

--disable_log

ログを無効にします。

--debug

HTTPリクエストの内容やレスポンスのステータスコードなど、デバッグ用のログが出力されます。

オーナロールまたはアノテーションユーザロールを持つユーザで実行してください。