FLV 設定

本主題包含有關與FLV輸出相關的編碼設置的詳細信息。

cue_points

cue_points:Array

API 版本:V2

上級:輸出

有效值:帶有提示點設置的哈希數組

兼容的工作類型:伏特

描述:

Zencoder支持將事件和導航提示點添加到VP6 Flash Video(FLV)文件。編碼FLV文件時,提示點將嵌入到FLV流和FLV元數據包中。

有兩種提示點類型:“導航”和“事件”。導航提示點可用於讓用戶搜索視頻文件的指定部分。導航提示點在指定的提示點位置創建關鍵幀,因此您可以使用代碼將視頻播放器的播放頭移動到該位置。您可以在FLV文件中設置特定點,以使用戶可以查找。例如,您的視頻可能有多個章節或片段,並且您可以通過在視頻文件中嵌入導航提示點來控制視頻。

事件提示點可用於在SWF視頻播放器中執行在FLV播放期間在指定點觸發的動作。

有關更多信息,請參閱此Adobe關於提示點的文章

{
  "input": "s3://zencodertesting/test.mov",
  "outputs": [
    {
      "cue_points": [
        {
          "type": "navigation",
          "time": 30.4,
          "name": "My Cue Point",
          "data": {
            "mykey": "myvalue"
          }
        }
      ]
    }
  ]
}

也可以看看:typetimenamedata

type

type:String

API 版本:V2

上級:輸出

有效值:導航或事件

兼容的工作類型:伏特

描述:

cue_point類型:“導航”或“事件”。

{
  "input": "s3://zencodertesting/test.mov",
  "outputs": [
    {
      "cue_points": [
        {
          "type": "navigation",
          "time": 30.4,
          "name": "My Cue Point",
          "data": {
            "mykey": "myvalue"
          }
        }
      ]
    }
  ]
}

也可以看看: cue_pointstimenamedata

time

time:Float

API 版本:V2

上級:輸出

有效值:正浮點數

兼容的工作類型:伏特

描述:

cue_point的時間,以秒為單位。

{
  "input": "s3://zencodertesting/test.mov",
  "outputs": [
    {
      "cue_points": [
        {
          "type": "navigation",
          "time": 30.4,
          "name": "My Cue Point",
          "data": {
            "mykey": "myvalue"
          }
        }
      ]
    }
  ]
}

也可以看看: cue_pointstypenamedata

name

name:String

API 版本:V2

上級:輸出

兼容的工作類型:伏特

描述:

cue_point的名稱。

{
  "input": "s3://zencodertesting/test.mov",
  "outputs": [
    {
      "cue_points": [
        {
          "type": "navigation",
          "time": 30.4,
          "name": "My Cue Point",
          "data": {
            "mykey": "myvalue"
          }
        }
      ]
    }
  ]
}

也可以看看: cue_pointstimetypedata

data

data:Hash

API 版本:V2

上級:輸出

有效值:鍵/值對

兼容的工作類型:伏特

描述:

cue_point的數據,作為鍵/值對的哈希。

{
  "input": "s3://zencodertesting/test.mov",
  "outputs": [
    {
      "cue_points": [
        {
          "type": "navigation",
          "time": 30.4,
          "name": "My Cue Point",
          "data": {
            "mykey": "myvalue"
          }
        }
      ]
    }
  ]
}

也可以看看: cue_pointstimenametype