adm.videoCodec("x265", "useAdvancedConfiguration=True", "general.params=2PASSBITRATE=400", "general.poolThreads=99", "general.frameThreads=0", "general.output_bit_depth=0", "general.preset=veryslow", "general.tuning=none"
, "general.profile=main", "level=-1", "vui.sar_idc=0", "vui.sar_width=1", "vui.sar_height=1", "vui.fullrange=False", "vui.color_primaries=2", "vui.transfer_characteristics=2", "vui.matrix_coeffs=2", "MaxRefFrames=3"
, "MinIdr=25", "MaxIdr=250", "i_scenecut_threshold=40", "MaxBFrame=16", "i_bframe_adaptive=2", "i_bframe_bias=0", "i_bframe_pyramid=1", "b_deblocking_filter=True", "b_open_gop=True", "interlaced_mode=0"
, "constrained_intra=False", "b_intra=True", "lookahead=60", "weighted_pred=2", "weighted_bipred=True", "rect_inter=True", "amp_inter=True", "limit_modes=False", "cb_chroma_offset=0", "cr_chroma_offset=0"
, "me_method=3", "me_range=64", "subpel_refine=6", "limit_refs=3", "rd_level=3", "psy_rd=1.000000", "rdoq_level=0", "psy_rdoq=0.000000", "fast_pskip=False", "dct_decimate=True", "noise_reduction_intra=0"
, "noise_reduction_inter=0", "strong_intra_smoothing=True", "ratecontrol.rc_method=0", "ratecontrol.qp_constant=0", "ratecontrol.qp_step=4", "ratecontrol.bitrate=0", "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=2", "ratecontrol.aq_strength=1.000000", "ratecontrol.cu_tree=True", "ratecontrol.strict_cbr=False"
)
Quote from: sark on December 24, 2025, 11:56:25 AMI notice the cross compiled Windows Avidemux has not been updated since Dec 24. The VC++ version May 25.
Can I assume from this that cross compiled versions are no longer being supported.
Quote from: eumagga0x2a on December 24, 2025, 01:00:24 PMIt is somewhat complicated. There is no supply of official cross-compiled nightly builds, but whoever bothers to build it from source following the how-to, will find such builds as fully supported as Avidemux builds can be. On the other hand, while native, VC++-compiled official builds may be provided in the future, they are definitely worse supported as I cannot produce such builds myself.
Quote from: ReggieNJ on January 05, 2026, 11:05:49 PM4 years later... any update on when a new version might be released?or at least a win64 version not bound to vc++ installer?
# -------- select input directory --------
inputFolder = ui.dirSelect("Select source folder")
if inputFolder is None:
ui.displayError("Oops", "No source folder selected")
return
# -------- read content --------
list = get_folder_content(inputFolder, ext)
if list is None:
ui.displayError("Oops", "No " + ext + " files found in \"" + inputFolder + "\"")
return
# -------- select output directory --------
outputFolder = ui.dirSelect("Select output folder")
if outputFolder is None:
ui.displayError("Oops", "No output folder selected")
return
if(inputFolder == outputFolder):
ui.displayError("Error","Output folder cannot be the same as the input one")
returnfilein = basename(filein)