如何在HTM Software for Multiview Video中设置输入文件

时间:2018-02-08 11:11:06

标签: hevc multiview h.265

我是HM Software的新手。我已经尝试过用于单声道和立体声视频的HM软件,现在我有点混淆使用HTM软件进行多视图视频。我将配置文件baseCfg_3view.cfg用于我从here下载的视频气球。在配置文件#======== File I/O ===================== InputFile_0 : newspapercc_4.yuv InputFile_1 : newspapercc_2.yuv InputFile_2 : newspapercc_6.yuv 中,有输入视频的示例设置:

./TAppEncoderStatic -c ../cfg/MV-HEVC/baseCfg_3view.cfg  -i ../testseq/balloons_00_1024x768_synth_tex_cam02.75_cam03.25_QP29.yuv -o out.yuv -q 36 -b ../testseq/balloons_00_1024x768_common_bin_QP29_base.bin -wdt 1024 -hgt 768 -fr 30 | tee out.log

所以我尝试使用与Mono和Stereo相同的命令对Multiview进行视频编码:

Error parsing option "Frame1" with argument "B    8     1    0  0     0.442    0        0        0        4      4     -8 -10 -12 -16     0      0".

3D-HTM Software: Encoder Version [16.2] based on HM Version [16.9][Linux][GCC 4.8.5][64 bit] 

我收到了这个错误:

<activity
  android:name="com.google.android.gms.ads.AdActivity"
  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  tools:replace="android:theme"
 />

我不知道如何在命令中设置输入文件视频以对视频进行编码,我是否应该使用对应的视频而不是使用上面链接中的视频?

提前致谢

1 个答案:

答案 0 :(得分:0)

我找到了答案

在I / O配置中:

$ python -m timeit -s "import tst" "tst.author_1()" 1000 loops, best of 3: 263 usec per loop $ python -m timeit -s "import tst" "tst.author_2()" 100 loops, best of 3: 2.72 msec per loop $ python -m timeit -s "import tst" "tst.prop_1()" 1000 loops, best of 3: 1.65 msec per loop $ python -m timeit -s "import tst" "tst.prop_2()" 1000 loops, best of 3: 767 usec per loop

#======== File I/O =====================
InputFile_0 : newspapercc_4.yuv
InputFile_1 : newspapercc_2.yuv

只需确保输入文件的路径,在这种情况下我的输入视频文件路径位于文件夹/ testseq /中,因此更改InputFile_0,InputFile_1和InputFile_2成为:

InputFile_2 : newspapercc_6.yuv
InputFile_0 : ../testseq/balloons_00_1024x768_synth_tex_cam02.75_cam03.25_QP29.yuv.yuv
InputFile_1 : ../testseq/balloons_00_1024x768_synth_tex_cam02.75_cam03.25_QP29.yuv.yuv

然后我再次运行命令

InputFile_2 : ../testseq/balloons_00_1024x768_synth_tex_cam02.75_cam03.25_QP29.yuv.yuv

它对我有用