本文介绍了在Expression Encoder 4中自定义配置文件设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们目前使用的是使用Expression Encoder 2 SDK的代码。我们通过在媒体项上应用自定义设置来自定义视频配置文件设置。我们自定义了以下设置:


 



  < AdaptiveGop> True< / AdaptiveGop>


  < AdaptiveQuantization> 0< / AdaptiveQuantization>


  < BFrameNumber> 1< / BFrameNumber>


  <比特率> 1500000< /比特率>


  < BufferWindow> 5000< / BufferWindow> ;


  < ClosedGop> True< / ClosedGop>


  < DenoiseFilter> False< / DenoiseFilter>


  < DQuant> Off< / DQuant>


  < FrameRate> 0< / FrameRate>


  < InLoopF​​ilter> True< / InLoopF​​ilter>


  < KeyFrameSpacing> 1< / KeyFrameSpacing>


  < MaxBitrate> 2500000< / MaxBitrate>


  < Mode> Cbr< / Mode>


  < MotionChromaSearch> Luma只有< / MotionChromaSearch>


  < MotionMatchMethod> SAD< / MotionMatchMethod>


  < MotionSearchRange> Level1< / MotionSearchRange>


  < NoiseEdgeRemovalFilter> False< / NoiseEdgeRemovalFilter>


  < OverlapFilter> False< / OverlapFilter> ;


  < ResizeQuality> Bicubic< / ResizeQuality>


  < SceneChangeDetection> True< / SceneChangeDetection>


  < VideoComplexity> Best< / VideoComplexity>



 


在Expression Encoder 4中,我们必须将此设置应用于视频配置文件本身。但我很难找到所有设置的匹配。例如:set的配置文件中缺少AdaptiveGop。在Expression Encoder 4中为VC1自定义视频
配置文件的最佳方法是什么?

解决方案

We currently have code that uses  Expression Encoder 2 SDK. We customized video profile settings by applying the custom settings on the media item. We had the following settings customized :

  <AdaptiveGop>True</AdaptiveGop>

  <AdaptiveQuantization>0</AdaptiveQuantization>

  <BFrameNumber>1</BFrameNumber>

  <Bitrate>1500000</Bitrate>

  <BufferWindow>5000</BufferWindow>

  <ClosedGop>True</ClosedGop>

  <DenoiseFilter>False</DenoiseFilter>

  <DQuant>Off</DQuant>

  <FrameRate>0</FrameRate>

  <InLoopFilter>True</InLoopFilter>

  <KeyFrameSpacing>1</KeyFrameSpacing>

  <MaxBitrate>2500000</MaxBitrate>

  <Mode>Cbr</Mode>

  <MotionChromaSearch>LumaOnly</MotionChromaSearch>

  <MotionMatchMethod>SAD</MotionMatchMethod>

  <MotionSearchRange>Level1</MotionSearchRange>

  <NoiseEdgeRemovalFilter>False</NoiseEdgeRemovalFilter>

  <OverlapFilter>False</OverlapFilter>

  <ResizeQuality>Bicubic</ResizeQuality>

  <SceneChangeDetection>True</SceneChangeDetection>

  <VideoComplexity>Best</VideoComplexity>

Looks like in Expression Encoder 4, we have to apply this settings to the Video Profile itself. But I am having tough time finding a match for all the settings. Ex : AdaptiveGop is missing in the profile for set. What is the best way to customize a video profile in Expression Encoder 4 for VC1?

解决方案


这篇关于在Expression Encoder 4中自定义配置文件设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 21:59