0

我的视频文件编码和播放一直运行良好,但编码的纯音频文件无法在 Azure 媒体播放器中播放。在媒体播放器中,它显示初始加载循环,但从未开始播放音频。

下面是Transform创建代码;

TransformOutput[] outputs = new TransformOutput[]
{
   new TransformOutput
(
     new StandardEncoderPreset
     (
        codecs: new Codec[]
        {
           new AacAudio
           (
             channels: 2,
             samplingRate: 48000,
             bitrate: 128000,
             profile: AacAudioProfile.AacLc
           ),
 
     new H264Video
     (                                  
        keyFrameInterval:TimeSpan.FromSeconds(2),
        layers:  new H264Layer[]
        {
           new H264Layer
          (
             bitrate: 600000,
             width: "640",
             height: "360",
             label: "SD"
          )
        }
     ),
 }

new TransformOutput(analyzerPreset)
};

4

1 回答 1

0

根据https://blogs.msdn.microsoft.com/randomnumber/2017/06/21/azure-media-player-support-for-audio-only-and-video-only-streams/http://amp .azure.net/libs/amp/latest/docs/features.html,Azure 媒体播放器不支持纯音频流。要仅播放音频,您需要使用不同的播放器。

于 2019-11-15T16:05:51.023 回答