本文介绍了Expression Encoder 4 Pro是否具有针对H.264的2遍CBR选项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Expression Encoder 4 Pro是否具有H.264输出格式的2遍CBR选项?  试用版不允许我查看.h264下的选项。  谢谢!

Does Expression Encoder 4 Pro have a 2-pass CBR option for the H.264 output format?  The trial version won't let me view options under .h264.  Thanks!

推荐答案


  • CBR - 1通行证
  • VBRConstrained
  • VBRUnconstrained
  • VBRQuality

SDK实现了与创建类型的新比特率对象相同的四个项目:

The SDK implements these same four items as creating new bitrate objects of type:


  • ConstantBitrate - 它取一个整数参数,比特率以kbps为单位(1000为1000 kbps)
  • VariableConstrainedBitrate - 它接受两个整数参数,平均比特率和峰值比特率
  • VariableUnconstrainedBitrate - 采用单个整数参数,平均比特率
  • VariableQualityBitrate - 采用单个整数参数,质量为百分比(100为全质量)

例如:

 


src = new MediaItem(myVideoPathGoesHere);
src.OutputFormat = new MP4OutputFormat();
src.OutputFormat.VideoProfile = new HighH264VideoProfile();
src.OutputFormat.VideoProfile.Bitrate = new ConstantBitrate(suggestedBitRate);


这篇关于Expression Encoder 4 Pro是否具有针对H.264的2遍CBR选项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 22:31