We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
版本信息:Linux, Ubuntu 18.04.2 LTS, uavs3e version: 1.2.208_release
编码使用脚本:
import os import time uavs3_v1_2_208 = "/home/yxj/yangxijie/software/git/uavs3e/build/linux/uavs3enc" yuv_video = "/mnt/video/E/FourPeople_1280x720_60.yuv" yuv_width = '1280' yuv_height = '720' yuv_fps = '60' set_qp = '45' set_speed_level = '3' coding_video = ' ./uavs3e.avs3' begin_time = time.time() cmd = uavs3_v1_2_208 + ' --speed_level ' + set_speed_level + ' --width ' + yuv_width + ' --height ' + yuv_height + ' --fps_num ' + yuv_fps + ' --fps_den 1 ' + ' --i_period ' + yuv_fps + ' --rc_type 0 ' + ' --input_bit_depth 8 ' + ' --qp ' + set_qp + ' --wpp_threads 40 ' + ' --frm_threads 40 ' + ' --input ' + yuv_video + ' --output ' + coding_video + ' --verbose 0 ' os.system(cmd) end_time = time.time() print('END' + str(end_time - begin_time) + 's')
发现将log参数调整为0:None还是会在控制台输出长串的星号
0:None
使用python3 a.py得到输出:
python3 a.py
Version: 1.2.208_release, SHA-1: cd295084706a307f887dea18b53d4716795974d4 ----------------------------------------------------------------------------------------------------------------------------------- < Sequence's Info > resolution input : 1280 x 720 resolution coding : 1280 x 720 bitdepth input : 8 bitdepth coding : 8 frame rate : 60 / 1 intra picture period : 60 close_gop : 0 max b frames : 15 signature : 0 < LookAhead Info > lookahead : 40 scenecut : 0 schistogram : 0 adaptive_gop : 0 < Parallel Info > WPP threads : 6 frame threads : 40 < RC Info > RC type : 0 (0: CQP, 1: CRF, 2: ABR, 3: CBR) qp : 45 qp_offset_cb : 0 qp_offset_cr : 0 < CU split CFG > ctu_size: 128 min_cu_size: 4 max_part_ratio: 8 max_split_times: 6 min_qt_size: 8 max_bt_size: 64 max_eqt_size: 32 max_dt_size: 16 < Tool CFG > Loop Filter: deblock: 1, sao: 1, alf: 1, cross_patch: 1, Inter: AMVR(1) HMVP_NUM(8) AFFINE(1) SMVD(1) UMVE(1) EMVR(1) Intra: TSCPM(1) IPF(1) DT(1) Transform: PBT(1) SECTrans(1) Quant: WeightedQuant: 0 ENC-Side Tools: chroma_qp(1) AQ(0) Speed_level: 3 ************************************************************ ************************************************************ **************************************************************************************** *********************************************************************************************************************************** (省略星号)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
版本信息:Linux, Ubuntu 18.04.2 LTS, uavs3e version: 1.2.208_release
编码使用脚本:
发现将log参数调整为
0:None
还是会在控制台输出长串的星号使用
python3 a.py
得到输出:The text was updated successfully, but these errors were encountered: