2016-06-14 9 views
0

以下のエラーで失敗したAzureメディアエンコーディングジョブがあります。 ジョブが正常にサブミットされた後、これはazureバックエンド側からのエラーです。Azureメディアサービスエンコーディングがエラーで失敗しました:0x80131040

タスク 'エンコード' エラー:ErrorProcessingTask: のWindows AzureのMediaエンコーダのタスクのワークフローを設定する予期しないエラー:できませんでした ロードファイルまたはアセンブリ「Microsoft.WindowsAzure.MediaServices.Platform、 バージョン= 2.10。 0.0、Culture =ニュートラル、PublicKeyToken = 31bf3856ad364e35 'または のいずれかに依存します。見つかったアセンブリのマニフェスト定義 がアセンブリ参照と一致しません。 (HRESULTからの例外: 0x80131040)

ここで何が起こっているのでしょうか?

答えて

1

私はいくつかの理由でH264アダプティブビットレートMP4セット720と古いプロセッサ名のWindows AzureのMediaエンコーダはもう動作しないような古いエンコーディングジョブプリセット名を使用していることが分かりました。

{ 
    "Version": 1.0, 
    "Codecs": [ 
    { 
     "KeyFrameInterval": "00:00:02", 
     "StretchMode": "AutoSize", 
     "H264Layers": [ 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 3400, 
      "MaxBitrate": 3400, 
      "BufferWindow": "00:00:05", 
      "Width": 1280, 
      "Height": 720, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     }, 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 2250, 
      "MaxBitrate": 2250, 
      "BufferWindow": "00:00:05", 
      "Width": 960, 
      "Height": 540, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     }, 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 1500, 
      "MaxBitrate": 1500, 
      "BufferWindow": "00:00:05", 
      "Width": 960, 
      "Height": 540, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     }, 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 1000, 
      "MaxBitrate": 1000, 
      "BufferWindow": "00:00:05", 
      "Width": 640, 
      "Height": 360, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     }, 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 650, 
      "MaxBitrate": 650, 
      "BufferWindow": "00:00:05", 
      "Width": 640, 
      "Height": 360, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     }, 
     { 
      "Profile": "Auto", 
      "Level": "auto", 
      "Bitrate": 400, 
      "MaxBitrate": 400, 
      "BufferWindow": "00:00:05", 
      "Width": 320, 
      "Height": 180, 
      "BFrames": 3, 
      "ReferenceFrames": 3, 
      "AdaptiveBFrame": true, 
      "Type": "H264Layer", 
      "FrameRate": "0/1" 
     } 
     ], 
     "Type": "H264Video" 
    }, 
    { 
     "Profile": "AACLC", 
     "Channels": 2, 
     "SamplingRate": 48000, 
     "Bitrate": 128, 
     "Type": "AACAudio" 
    } 
    ], 
    "Outputs": [ 
    { 
     "FileName": "{Basename}_{Width}x{Height}_{VideoBitrate}.mp4", 
     "Format": { 
     "Type": "MP4Format" 
     } 
    } 
    ] 
} 
:多分多分

私は標準プロセッサ名Mediaエンコーダを使用してのようなジョブ設定文字列を使用して問題を修正しない一時的なものです

関連する問題