[Avidemux-users] v2.8.1 encoding at half speed
A free video editor to cut, filter, and encode projects
Status: Beta
Brought to you by:
mean
From: Jodi W. <jo...@jo...> - 2023-08-10 16:44:39
|
Hi, I can't seem to get onto your forum, doesn't like my email. Just thought I'd report that I'm seeing a lot of slowdown with encoding in this version on my system, like half the speed of v2.8.0. It seems to be file operations too, I can see slowdown in the file loading too. Info dump below. Kind regards, Jodi. My system is: OS Name: Microsoft Windows 11 Pro OS Version: 10.0.22621 N/A Build 22621 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Workstation OS Build Type: Multiprocessor Free Original Install Date: 21/09/2022, 10:22:42 System Boot Time: 10/08/2023, 07:31:58 System Manufacturer: System manufacturer System Model: System Product Name System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: AMD64 Family 23 Model 8 Stepping 2 AuthenticAMD ~3400 Mhz BIOS Version: American Megatrends Inc. 2407, 01/07/2020 Windows Directory: C:\WINDOWS System Directory: C:\WINDOWS\system32 Boot Device: \Device\HarddiskVolume5 System Locale: en-gb;English (United Kingdom) Input Locale: en-gb;English (United Kingdom) Time Zone: (UTC+00:00) Dublin, Edinburgh, Lisbon, London Total Physical Memory: 16,296 MB Available Physical Memory: 7,340 MB Virtual Memory: Max Size: 21,672 MB Virtual Memory: Available: 8,898 MB Virtual Memory: In Use: 12,774 MB Page File Location(s): C:\pagefile.sys See below for a py for my encoder settings. #PY <- Needed to identify # #--automatically built-- adm = Avidemux() if not adm.loadVideo("E:/Coding/final24 raw.ts"): raise("Cannot load E:/Coding/final24 raw.ts") if not adm.appendVideo("E:/Coding/final25 raw.ts"): raise("Cannot append E:/Coding/final25 raw.ts") if not adm.appendVideo("E:/Coding/final26 raw.ts"): raise("Cannot append E:/Coding/final26 raw.ts") if not adm.appendVideo("E:/Coding/final27 raw.ts"): raise("Cannot append E:/Coding/final27 raw.ts") if not adm.appendVideo("E:/Coding/final28 raw.ts"): raise("Cannot append E:/Coding/final28 raw.ts") adm.clearSegments() adm.addSegment(0, 50000, 2495466667) adm.addSegment(1, 50000, 3023683334) adm.addSegment(2, 50000, 770750000) adm.addSegment(3, 50000, 2946166667) adm.addSegment(3, 3735950000, 179883333) adm.addSegment(4, 50000, 4495450000) adm.markerA = 0 adm.markerB = 3599050000 adm.setPostProc(3, 3, 0) adm.setHDRConfig(1, 1, 1, 1, 0) adm.videoCodec("x264", "useAdvancedConfiguration=True", "general.params=2PASSBITRATE=1000", "general.threads=0", "general.preset=medium", "general.tuning=none", "general.profile=high", "general.fast_decode=False", "general.zero_latency=False" , "general.fast_first_pass=True", "general.blueray_compatibility=False", "general.fake_interlaced=False", "level=-1", "vui.sar_height=1", "vui.sar_width=1", "vui.overscan=0", "vui.vidformat=5", "vui.fullrange=False" , "vui.colorprim=2", "vui.transfer=2", "vui.colmatrix=2", "vui.chroma_loc=0", "MaxRefFrames=3", "MinIdr=25", "MaxIdr=250", "i_scenecut_threshold=40", "intra_refresh=False", "MaxBFrame=3", "i_bframe_adaptive=1" , "i_bframe_bias=0", "i_bframe_pyramid=2", "b_deblocking_filter=True", "i_deblocking_filter_alphac0=0", "i_deblocking_filter_beta=0", "cabac=True", "interlaced=False", "constrained_intra=False", "tff=True" , "fake_interlaced=False", "analyze.b_8x8=True", "analyze.b_i4x4=True", "analyze.b_i8x8=True", "analyze.b_p8x8=True", "analyze.b_p16x16=False", "analyze.b_b16x16=False", "analyze.weighted_pred=2", "analyze.weighted_bipred=True" , "analyze.direct_mv_pred=1", "analyze.chroma_offset=0", "analyze.me_method=4", "analyze.me_range=16", "analyze.mv_range=-1", "analyze.mv_range_thread=-1", "analyze.subpel_refine=9", "analyze.chroma_me=True" , "analyze.mixed_references=True", "analyze.trellis=1", "analyze.psy_rd=1.000000", "analyze.psy_trellis=0.000000", "analyze.fast_pskip=True", "analyze.dct_decimate=True", "analyze.noise_reduction=0", "analyze.psy=True" , "analyze.intra_luma=11", "analyze.inter_luma=21", "ratecontrol.rc_method=0", "ratecontrol.qp_constant=0", "ratecontrol.qp_min=10", "ratecontrol.qp_max=51", "ratecontrol.qp_step=4", "ratecontrol.bitrate=0" , "ratecontrol.rate_tolerance=1.000000", "ratecontrol.vbv_max_bitrate=0", "ratecontrol.vbv_buffer_size=0", "ratecontrol.vbv_buffer_init=1", "ratecontrol.ip_factor=1.400000", "ratecontrol.pb_factor=1.300000" , "ratecontrol.aq_mode=1", "ratecontrol.aq_strength=1.000000", "ratecontrol.mb_tree=True", "ratecontrol.lookahead=40") adm.audioClearTracks() adm.setSourceTrackLanguage(0,"und") if adm.audioTotalTracksCount() <= 0: raise("Cannot add audio track 0, total tracks: " + str (adm.audioTotalTracksCount())) adm.audioAddTrack(0) adm.audioCodec(0, "copy") adm.audioSetDrc2(0, 0, 1, 0.001, 0.2, 1, 2, -12) adm.audioSetEq(0, 0, 0, 0, 0, 880, 5000) adm.audioSetChannelGains(0, 0, 0, 0, 0, 0, 0, 0, 0, 0) adm.audioSetChannelDelays(0, 0, 0, 0, 0, 0, 0, 0, 0, 0) adm.audioSetChannelRemap(0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8) adm.audioSetShift(0, 0, 0) adm.setContainer("MP4", "muxerType=0", "optimize=1", "forceAspectRatio=False", "aspectRatio=1", "displayWidth=1280", "rotation=0", "clockfreq=0") |