Avidemux is versatile open-source video editing software for simple cutting, filtering, and encoding tasks. It supports a wide range of video formats, including AVI, DVD-compatible MPEG files, MP4, and ASF, using various codecs. Avidemux also features task automation using projects, job queues, and scripting capabilities. It is handy for users who need to perform quick edits without delving into more complex video editing software.
On Ubuntu 24.04, 22.04, or 20.04, Avidemux can be installed via the xtradeb-/apps Launchpad PPA, which provides access to the latest versions with recent features and improvements. Alternatively, it can be installed via Flatpak with Flathub, offering a sandboxed environment with potentially the latest build depending on the Flathub repository updates. This guide will walk you through both methods to ensure you have Avidemux set up to meet your video editing needs.
Method 1: Install Avidemux via Terminal Command and APT
Update Ubuntu Before Avidemux Installation
Updating your Ubuntu system before installing Avidemux ensures a smooth installation process and prevents potential conflicts. This can be done by running the following command:
sudo apt update
This command will update the package list and ensure all installed packages are up-to-date. You may see some messages indicating which packages are being updated.
If there are any updates available, you can upgrade them using the following command:
sudo apt upgrade
This will upgrade any outdated packages to their latest versions. It may take a few minutes to complete, depending on the number of packages that need to be upgraded.
Import Xtradeb PPA For Avidemux
To install Avidemux on your Ubuntu system, it is recommended to use the xtradeb launchpad PPA, which has maintained the most up-to-date version of Avidemux for several years. Follow the instructions below to import the xtradeb launchpad PPA, update your system, and install Avidemux.
Open a terminal window and enter the following command to add the xtradeb launchpad PPA to your system:
sudo add-apt-repository ppa:xtradeb/apps -y
Finalize Installation of Avidemux via APT Command
Before proceeding with the installation, update the package list to reflect the newly imported PPA by running the following command:
sudo apt update
Initiate the installation of Avidemux, along with its required dependencies, by executing the following command:
sudo apt install avidemux-qt avidemux-cli
This will install Avidemux and all its dependencies on your system. Once the installation is complete, you can launch Avidemux and edit your videos.
Method 2: Install Avidemux via Flatpak and Flathub
Flatpak is a software utility that allows applications to run on any Linux distribution using sandbox technology for security and compatibility. Flathub is a repository for Flatpak applications, making it easy to find and install software like Avidemux. This combination simplifies Linux software management, offering a flexible and secure installation option.
Integrating the Flathub Repository for Avidemux
The first step to installing Avidemux via Flatpak begins by integrating the Flathub repository. Doing so provides your system with a doorway to many Flatpak applications.
To merge the Flathub repository with your system’s architecture, input the following command into your terminal:
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
If the above command does not work, ensure Flatpak is installed with the following command:
sudo apt install flatpak
I would suggest rebooting or logging out of your current desktop session after installing Flatpak for the first time.
Install Avidemux via Flatpak Command
After successfully merging the Flathub repository, the next phase involves deploying Avidemux. This is achieved using the flatpak install command. Specifically, the Avidemux installation can be commenced with the following:
flatpak install flathub org.kde.avidemux -y
Launching Avidemux via GUI or CLI
After installing it on your Ubuntu system, several ways exist to launch Avidemux, such as utilizing CLI or GUI.
CLI Commands to Launch Avidemux
To launch Avidemux using the terminal, follow these steps:
avidemux
Alternatively, Flatpak installations of Avidemux need to run the following command:
flatpak run org.avidemux.Avidemux
GUI Method to Launch Avidemux UI
For desktop users, launching Avidemux is even easier. Follow these steps:
- Click on the Activities button on the top-left corner of your screen.
- Click on Show Applications.
- Scroll down and find Avidemux, then click on it.
Additional Avidemux Commands
Update Avidemux
For desktop users, Avidemux should update itself with your system packages using the APT package manager. However, if you want to check for updates manually, you can use the following command in your terminal:
sudo apt update && sudo apt upgrade
This command will update your system packages and any available Avidemux updates. It is essential to keep your Avidemux software updated to ensure that you have access to the latest features and bug fixes.
For installations that were done via Flatpak for Avidemux, just run the following command that will blanket update all Flatpak installations if any are available:
flatpak update
Remove Avidemux
APT Method to Remove Avidemux
If you no longer wish to have Avidemux on your Ubuntu system and want to remove it, follow these steps:
sudo apt remove avidemux-qt avidemux-cli
This command will remove Avidemux and all associated unused dependencies and any saved data created by the software for complete removal.
To remove the repository, use the following command:
sudo add-apt-repository --remove ppa:xtradeb/apps -y
Flatpak Method to Remove Avidemux
For installations of Avidemux, initially installed via Flatpak, run the following command to remove the application:
flatpak uninstall org.kde.avidemux
Conclusion
With Avidemux installed on your Ubuntu system, you gain a powerful tool for quick and efficient video editing tasks. Whether you opt for the xtradeb-/apps PPA for access to the latest updates or the flexibility of Flatpak with Flathub, each method ensures you have the latest features and stability improvements. Regularly updating Avidemux, especially through the PPA, will keep your software current, allowing you to leverage its full potential for video editing on Ubuntu. Enjoy the ease and efficiency that Avidemux brings to your video editing workflow.
Well, let me explain for those who are interested. It turns out that the jokers at Canonical have done it again. The version downloaded via terminal, flatpack I think they call it, does not give an image. But reading the responses to my previous post, a silly thing occurred to me, which I had not thought of. You have to download the appimage variant and on the desktop, ACTIVATE EXECUTABLE AS A PROGRAM in properties, because by default, it comes deactivated. It works for me now, but they removed this at the time and have changed it again, which I do not quite understand. IF SOMETHING WORKS, DON’T TOUCH IT! Take care of fixing what is wrong. In my case, I preferred the other version, it was more practical. This one takes up less space and you don’t have to mess around with the terminal, which can be a disaster if you don’t do things right. Anyway, that’s all, I hope it helps someone. What awaits us in the next Ubuntu? Who knows! Not for a couple of years, I’m afraid…
Thanks Andrej,
I believe this all has to do with the namespacing security feature introduced in Ubuntu 24.04. This feature is causing complications for many users, including those using Avidemux, as it requires user namespaces to be enabled. Similar issues have been observed with other Electron-based applications that rely on sandboxing.
To temporarily resolve the issue with Avidemux, you can disable these security restrictions by executing the following commands in your Terminal:
sudo sysctl -w kernel.apparmor_restrict_unprivileged_unconfined=0
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
You’ll need to enter your root password when prompted. Once done, close the Terminal and try running Avidemux again. This fix will not only address the Avidemux issue but also resolve namespace-related problems with other software. However, be aware that this workaround reduces your system’s security, and you’ll need to reapply it after each reboot.
For a more permanent solution, you can edit the sysctl.conf file located in /etc/. Add the following lines at the end of the file:
kernel.apparmor_restrict_unprivileged_unconfined=0
kernel.apparmor_restrict_unprivileged_userns=0
Alternatively, you can automate this process by running the following command in the Terminal, which will append the necessary lines to the sysctl.conf file for you:
sudo sed -i '$ a\kernel.apparmor_restrict_unprivileged_unconfined=0\nkernel.apparmor_restrict_unprivileged_userns=0' /etc/sysctl.conf
After saving the changes (whether manually or via the command), double-check that they were applied correctly, then run:
sudo service procps restart
This will make the changes persist between system boots, but it also represents a greater security risk.
While these steps will enable you to continue using Avidemux, it’s crucial to understand that disabling these security features could leave your system vulnerable to potential threats. Use this solution at your discretion, as it disables a feature that many did not request in the first place.
Good morning. Avidemux 2.8.1 is heard but not seen on Ubuntu 24.04 LTS. I await a response. Thank you.
Hello Andrej,
Which method did you use to install Avidemux 2.8.1? Was it via Flatpak or the PPA by xtradeb/applications?
I just tested the installation on a fresh Ubuntu 20.04.6 setup, and Avidemux launched perfectly. Could you provide more details about your issue? Your original message mentioned that you can hear but not see anything, but it didn’t provide further specifics.
Thanks.
Good morning. I reinstalled it through PPA, since any other installation does not work for me. The problem is basically that, you can’t see the video, although there is sound and the program launches perfectly. All functions are operational. There is simply no image. I know firsthand that it works in 20.04 and 22.04, I have been using it until now that I have updated to 24.04. For me it is important because I use it for my work, which is a major inconvenience for me. Is there any other video editing program for Ubuntu that works decently? Above all, it allows me to cut the videos efficiently. Thanks for answering. I will be careful.
Hi Andrej,
I’ll test this further on my end this weekend and also look into the manual download and compile method. Since Ubuntu 24.04 is still new, it might be a bug or something else. The compile method could be better in the long term, given that Avidemux doesn’t have frequent releases.
Ok. Thanks. In case it helps, this appears in the terminal:
Directory /home/Andrej/.avidemux6/ exists.Good.
Using /home/Andrej/.avidemux6/ as base directory for prefs, jobs, etc.
*************************
Avidemux v2.8.1
*************************
http://www.avidemux.org
Code : Mean, JSC, Grant Pedersen,eumagga0x2a
GFX : Nestor Di, nestordi@augcyl.org
Design : Jakub Misak
FreeBSD : Anish Mistry, amistry@am-productions.biz
Audio : Mihail Zenkov
Mac OS X : Kuisathaverat, Harry van der Wolf
Win32 : Grant Pedersen
Compiler: GCC 13.2.0
Build Target: Linux (x86-64)
User Interface: Qt (5.15.13)
Large file available: 1 offset
Time: Fri Aug 2 21:43:45 2024
0: avidemux3_qt5
Initialising prefs
[load] 19:43:45-897 Loading prefs from /home/Andrej/.avidemux6/config3
[load] 19:43:45-897 Preferences found and loaded
[CpuCaps] Checking CPU capabilities
MMX detected
MMXEXT detected
SSE detected
SSE2 detected
SSE3 detected
SSSE3 detected
SSE4 detected
SSE42 detected
AVX detected
AVX2 detected
[init] 19:43:45-897 [CpuCaps] End of CPU capabilities check (cpuCaps: 0x00003de6, cpuMask: 0xffffffff)
[setMask] 19:43:45-897 [CpuCaps] Setting mask to 0x00003de6
[setMask] 19:43:45-897 [CpuCaps] Forcing lav cpu flags 0x0000c3db
[UI_Init] 19:43:45-897 Starting Qt5 GUI…
QSocketNotifier: Can only be used with threads started with QThread
[loadTranslator] 19:43:45-994 Using system language
[loadTranslator] 19:43:45-994 Initializing language es_ES
[loadTranslator] 19:43:45-994 Translation folder is
[loadTranslation] 19:43:45-994 [Locale] Loading language file /usr/share/avidemux6/qt5/i18n/qtbase_es_ES [loadTranslation] 19:43:45-994 succeeded
[loadTranslation] 19:43:45-994 [Locale] Loading language file /usr/share/avidemux6/qt5/i18n/avidemux_es_ES [loadTranslation] 19:43:45-994 succeeded
[loadTranslator] 19:43:45-994 Updating translations…
[loadTranslator] 19:43:45-994 [Locale] Test: &Edit -> &Editar
Initializing Dithering tables
[COREUI] Compiled with 01.00.00
[COREUI] Linked with 01.00.00
[CoreUI] Compiled with patch version 0, using 0
[UI Toolkit] Running version 02:00
[Script] Scanning directory /usr/lib/ADM_plugins6/scriptEngines
[Script] Tinypy INFO – Registering group addons
[Script] Tinypy INFO – Registering: help
[Script] Tinypy INFO – Registering: get_folder_content
[Script] Tinypy INFO – Registering: get_file_size
[Script] Tinypy INFO – Registering: basename
[Script] Tinypy INFO – Registering: dirname
[Script] Tinypy INFO – Registering: splitext
[Script] Tinypy INFO – Registering class: Avidemux
[Script] Tinypy INFO – Registering class: Editor
[Script] Tinypy INFO – Registering class: Gui
[Script] Tinypy INFO – Registering class: DFToggle
[Script] Tinypy INFO – Registering class: DFInteger
[Script] Tinypy INFO – Registering class: DFMenu
[Script] Tinypy INFO – Registering class: DFTimeStamp
[Script] Tinypy INFO – Registering class: DialogFactory
[Script] Tinypy INFO – Registering group test
[Script] Tinypy INFO – Registering: testAssert
[Script] Tinypy INFO – Registering: testCrash
[Script] Tinypy INFO – Registering: testSub
[Script] Tinypy INFO – Registering static class os
[Script] Tinypy INFO – Registering: environ
[Script] Tinypy INFO – Python initialised
[Script] loaded /usr/lib/ADM_plugins6/scriptEngines/libADM_script_tinyPy.so
[Script] Scanning directory /usr/lib/ADM_plugins6/scriptEngines/qt5
[Script] Cannot open plugin directory
Directory /home/ktxondobicht/.avidemux6/custom/ exists.Good.
[initGUI] 19:43:46-014 OpenGL enabled at build time, checking whether we should run it… yes.
The screen seems to be 3840 x 2160 px
[destroy] 19:43:46-050 Destroying preview
[renderDisplayResize] 19:43:46-050 Render to 0x0 zoom=1,0000, old one =0 x 0, zoom=1,0000, renderer=(nil)
[UI_resize] 19:43:46-051 Resizing the main window to 247×199 px
[RDR] Resizing to 0 x 0
[initGUI] 19:43:46-053 OpenGL activated, initializing…
[UI_Qt4InitGl] 19:43:46-053 Creating openGl dummy widget
[UI_Qt4InitGl] 19:43:46-053 Dummy Widget created
[initializeGL] 19:43:46-058 Initializing dummy openGl widget
[paintGL] 19:43:46-058 Painting dummy openGl widget
[UI_Qt4InitGl] 19:43:46-058 Probing openGl extension
[UI_Qt4InitGl] 19:43:46-058 Extension glActiveTexture found
[UI_Qt4InitGl] 19:43:46-058 Extension glBindBufferARB found
[UI_Qt4InitGl] 19:43:46-058 Extension glGenBuffers found
[UI_Qt4InitGl] 19:43:46-058 Extension glDeleteBuffers found
[UI_Qt4InitGl] 19:43:46-058 Extension glMapBufferARB found
[UI_Qt4InitGl] 19:43:46-058 Extension glUnmapBufferARB found
[UI_Qt4InitGl] 19:43:46-058 Extension glBufferDataARB found
[UI_Qt4InitGl] 19:43:46-058 Probing done
[UI_Qt4InitGl] 19:43:46-058 openGL ARB activated
[GL Render] OpenGL Vendor: AMD
[GL Render] OpenGL Renderer: AMD Radeon Graphics (radeonsi, renoir, LLVM 17.0.6, DRM 3.57, 6.8.0-39-generic)
[GL Render] OpenGL Version: OpenGL ES 3.2 Mesa 24.0.9-0ubuntu0.1
[GL Render] OpenGL Extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_NV_conditional_render GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_NV_pack_subimage GL_NV_texture_barrier GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_OES_viewport_array GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_APPLE_sync GL_EXT_draw_buffers GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_NV_generate_mipmap_sRGB GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_debug_label GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_group_vote GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_ANDROID_extension_pack_es31a GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_copy_image GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_gpu_shader5 GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box GL_EXT_render_snorm GL_EXT_shader_io_blocks GL_EXT_texture_border_clamp GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_texture_norm16 GL_EXT_texture_view GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_robust_buffer_access_behavior GL_NV_image_formats GL_NV_shader_noperspective_interpolation GL_OES_copy_image GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_gpu_shader5 GL_OES_primitive_bounding_box GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_io_blocks GL_OES_shader_multisample_interpolation GL_OES_tessellation_point_size GL_OES_tessellation_shader GL_OES_texture_border_clamp GL_OES_texture_buffer GL_OES_texture_cube_map_array GL_OES_texture_stencil8 GL_OES_texture_storage_multisample_2d_array GL_OES_texture_view GL_EXT_blend_func_extended GL_EXT_buffer_storage GL_EXT_float_blend GL_EXT_geometry_point_size GL_EXT_geometry_shader GL_EXT_shader_samples_identical GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_OES_EGL_image_external_essl3 GL_OES_geometry_point_size GL_OES_geometry_shader GL_OES_shader_image_atomic GL_EXT_clear_texture GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_EXT_window_rectangles GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_NV_alpha_to_coverage_dither_control GL_AMD_framebuffer_multisample_advanced GL_EXT_EGL_image_storage GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_NV_compute_shader_derivatives GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_sampler_objects GL_MESA_bgra GL_MESA_texture_const_bandwidth
Probing for VDPAU…
Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
VDPAU not available
Probing for LIBVA…
[libvaProbe] 19:43:46-059 Probing for libVA support…
[init] 19:43:46-059 [LIBVA] Initializing LibVA library …
libva info: VA-API version 1.20.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/radeonsi_drv_video.so
libva info: Found init function __vaDriverInit_1_20
libva info: va_openDriver() returns 0
[init] 19:43:46-099 VA 1.20, Vendor = Mesa Gallium driver 24.0.9-0ubuntu0.1 for AMD Radeon Graphics (radeonsi, renoir, LLVM 17.0.6, DRM 3.57, 6.8.0-39-generic)
[setupConfig] 19:43:46-099 Max config = 25
[setupConfig] 19:43:46-099 Found 14 config
[setupConfig] 19:43:46-099 H264 high profile found
[checkProfile] 19:43:46-099 –Probing Mpeg 2 Main …
[checkProfile] 19:43:46-099 RT Format =0x1
[checkProfile] 19:43:46-099 YUV420 supported
[checkProfile] 19:43:46-099 Config created Mpeg 2 Main
[checkProfile] 19:43:46-099 –Probing H264 Hight …
[checkProfile] 19:43:46-099 RT Format =0x1
[checkProfile] 19:43:46-099 YUV420 supported
[checkProfile] 19:43:46-099 Config created H264 Hight
[checkProfile] 19:43:46-099 –Probing VC1 …
[checkProfile] 19:43:46-099 RT Format =0x1
[checkProfile] 19:43:46-099 YUV420 supported
[checkProfile] 19:43:46-099 Config created VC1
[checkProfile] 19:43:46-099 –Probing HEVC Main …
[checkProfile] 19:43:46-099 RT Format =0x1
[checkProfile] 19:43:46-099 YUV420 supported
[checkProfile] 19:43:46-099 Config created HEVC Main
[checkProfile] 19:43:46-099 –Probing H265 10Bits …
[checkProfile] 19:43:46-099 RT Format =0x101
[checkProfile] 19:43:46-099 YUV420 supported
[checkProfile] 19:43:46-099 YUV420_10BPP supported
[checkProfile] 19:43:46-099 Config created H265 10Bits
[checkProfile] 19:43:46-099 –Probing VP9 …
[checkProfile] 19:43:46-099 RT Format =0x80000000
[displayXError] 19:43:46-099 LibVA Error :
12 =
[checkProfile] 19:43:46-099 Cannot create config VP9
[setupEncodingConfig] 19:43:46-099 Found 2 entry points
[setupEncodingConfig] 19:43:46-099 0 is a 1
[setupEncodingConfig] 19:43:46-099 1 is a 6
[setupEncodingConfig] 19:43:46-099 YUV420 supported
[setupEncodingConfig] 19:43:46-099 VA_RC_VBR is supported
[displayXError] 19:43:46-099 LibVA Error :
25 =
[init] 19:43:46-099 VA: Encoding not supported
[allocateImage] 19:43:46-105 No transfer supported
[checkSupportedFunctionsAndImageFormat] 19:43:46-105 –Trying direct operations —
[tryDirect] 19:43:46-107 Direct operation works
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 — Trying indirect (YV12) —
SKIPPED
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 — Trying indirect (NV12) —
SKIPPED
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 Direct : 1
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 Indirect NV12 : 0
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 Indirect YV12 : 0
[checkSupportedFunctionsAndImageFormat] 19:43:46-107 LibVA: All ok
[ADM_initLibVAEncoder] 19:43:46-107 initializing VA encoder
[ADM_initLibVAEncoder] 19:43:46-107 HEVC Main is supported
[ADM_initLibVAEncoder] 19:43:46-107 H264 High is supported
[ADM_initLibVAEncoder] 19:43:46-107 Support VAConfigAttribEncPackedHeaders
[ADM_initLibVAEncoder] 19:43:46-107 VA_ENC_PACKED_HEADER_SEQUENCE is supported
[ADM_initLibVAEncoder] 19:43:46-107 Max ref frame is p0:1/p1:0
[ADM_initLibVAEncoder] 19:43:46-107 /initializing VA encoder
[libvaProbe] 19:43:46-107 LIBVA HW encoder is working
LIBVA available
[ADM_ad_loadPlugins] 19:43:46-108 Scanning directory /usr/lib/ADM_plugins6/audioDecoder
[tryLoadingAudioPlugin] 19:43:46-108 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_Mad.so, desc: LibMad decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-108 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_a52.so, desc: LibAC3 decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-108 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_alaw.so, desc: A-law decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-108 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_dca.so, desc: libDca decoder plugin for avidemux (c) Mean/Gruntster
[tryLoadingAudioPlugin] 19:43:46-108 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_ima_adpcm.so, desc: IMA ADPCM decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-109 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_lav.so, desc: Lavcodec decoder plugin for avidemux (c) Mean/Gruntster
[tryLoadingAudioPlugin] 19:43:46-109 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_ms_adpcm.so, desc: Ulaw decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-109 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_opus.so, desc: libOpus decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-109 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_ulaw.so, desc: Ulaw decoder plugin for avidemux (c) Mean
[tryLoadingAudioPlugin] 19:43:46-109 [ADM_ad_plugin] Plugin loaded version 0.0.1, name libADM_ad_vorbis.so, desc: libVorbis decoder plugin for avidemux (c) Mean
[ADM_ad_loadPlugins] 19:43:46-109 Scanning done, found 10 audio decoders
[ADM_av_loadPlugins] 19:43:46-109 [ADM_av_plugin] Scanning directory /usr/lib/ADM_plugins6/audioDevices
[ADM_AudioDevices] 19:43:46-110 Name :AlsaDmix ApiVersion :2
[tryLoadingFilterPlugin] 19:43:46-110 [Filters] Registered filter /usr/lib/ADM_plugins6/audioDevices/libADM_av_alsaDMix.so as Alsa Audio Device (dmix) (c) Mean 2008
[ADM_AudioDevices] 19:43:46-110 Name :AlsaDefault ApiVersion :2
[tryLoadingFilterPlugin] 19:43:46-110 [Filters] Registered filter /usr/lib/ADM_plugins6/audioDevices/libADM_av_alsaDefault.so as Alsa Audio Device (default) (c) Mean 2009
[ADM_AudioDevices] 19:43:46-110 Name :AlsaHw0 ApiVersion :2
[tryLoadingFilterPlugin] 19:43:46-110 [Filters] Registered filter /usr/lib/ADM_plugins6/audioDevices/libADM_av_alsaHw.so as Alsa Audio Device (hw:0) (c) Mean 2008
[ADM_AudioDevices] 19:43:46-110 Name :Oss ApiVersion :2
[tryLoadingFilterPlugin] 19:43:46-110 [Filters] Registered filter /usr/lib/ADM_plugins6/audioDevices/libADM_av_oss.so as Oss audio device (c) mean
[ADM_AudioDevices] 19:43:46-112 Name :PulseAudio ApiVersion :2
[tryLoadingFilterPlugin] 19:43:46-112 [Filters] Registered filter /usr/lib/ADM_plugins6/audioDevices/libADM_av_pulseAudio.so as PulseAudio audio device (c) mean
[ADM_av_loadPlugins] 19:43:46-112 [ADM_av_plugin] Scanning done
[ADM_ae_plugin] Scanning directory /usr/lib/ADM_plugins6/audioEncoders
[AudioEncoder] Loaded Aften version 01.00.00 wavTag :0x2000
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_aften.so as Aften AC3 encoder plugin Mean/Gruntster 2008
[AudioEncoder] Loaded Faac version 01.00.00 wavTag :0xff
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_faac.so as Faac AAC encoder plugin Mean 2008
[AudioEncoder] Loaded FDK_AAC version 01.00.00 wavTag :0xff
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_fdk_aac.so as FDK AAC encoder plugin Mean 2016
[AudioEncoder] Loaded Lame version 01.00.00 wavTag :0x55
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_lame.so as Lame MP3 encoder plugin Mean 2009
[AudioEncoder] Loaded LavAAC version 01.00.00 wavTag :0xff
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_lav_aac.so as AAC LavCodec encoder plugin Mean 2008/2016
[AudioEncoder] Loaded LavAC3 version 01.00.00 wavTag :0x2000
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_lav_ac3.so as AC3 LavCodec encoder plugin Mean 2008/2009
[AudioEncoder] Loaded LavMP2 version 01.00.00 wavTag :0x50
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_lav_mp2.so as MP2 LavCodec encoder plugin Mean 2008/2009
[AudioEncoder] Loaded Opus version 01.00.00 wavTag :0x26ae
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_opus.so as Opus encoder plugin Mean 2017
[AudioEncoder] Loaded PCM version 01.00.00 wavTag :0x1
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_pcm.so as PCM encoder plugin Mean 2008
[AudioEncoder] Loaded Vorbis version 01.00.00 wavTag :0x676f
[AudioEncoder] Registered filter /usr/lib/ADM_plugins6/audioEncoders/libADM_ae_vorbis.so as Vorbis encoder plugin Mean 2008
[ADM_ae_plugin] Scanning done
[ADM_dm_loadPlugins] 19:43:46-113 Scanning directory /usr/lib/ADM_plugins6/demuxers
[Demuxer]Name :asf ApiVersion :3 Description :asf/wmv demuxer plugin (c) Mean 2007/2009
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_asf.so as asf/wmv demuxer plugin (c) Mean 2007/2009
[Demuxer]Name :avs ApiVersion :3 Description :avsProxy demuxer plugin (c) Mean 2007/2010
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_avsproxy.so as avsProxy demuxer plugin (c) Mean 2007/2010
[Demuxer]Name :flv ApiVersion :3 Description :flash demuxer plugin (c) Mean 2007/2007
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_flv.so as flash demuxer plugin (c) Mean 2007/2007
[Demuxer]Name :mkv ApiVersion :3 Description :Matroska demuxer plugin (c) Mean 2007/2008
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_matroska.so as Matroska demuxer plugin (c) Mean 2007/2008
[Demuxer]Name :mp4 ApiVersion :3 Description :Mp4/Mov/3GP demuxer plugin (c) Mean 2007/2008
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_mp4.so as Mp4/Mov/3GP demuxer plugin (c) Mean 2007/2008
[Demuxer]Name :MXF ApiVersion :3 Description :MXF demuxer plugin (c) Mean 2010
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_mxf.so as MXF demuxer plugin (c) Mean 2010
[Demuxer]Name :openDml ApiVersion :3 Description :AVI/OpenDML demuxer plugin (c) Mean 2007/2007
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_opendml.so as AVI/OpenDML demuxer plugin (c) Mean 2007/2007
[Demuxer]Name :picture ApiVersion :3 Description :Picture demuxer plugin (c) Mean 2007/2008
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_pic.so as Picture demuxer plugin (c) Mean 2007/2008
[Demuxer]Name :ps ApiVersion :3 Description :mpeg ps demuxer plugin (c) Mean 2007/2008
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_ps.so as mpeg ps demuxer plugin (c) Mean 2007/2008
[Demuxer]Name :ts ApiVersion :3 Description :mpeg ts demuxer plugin (c) Mean 2007/2009
[Demuxers] Registered filter /usr/lib/ADM_plugins6/demuxers/libADM_dm_ts.so as mpeg ts demuxer plugin (c) Mean 2007/2009
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : ts, priority :90
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : avs, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : flv, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : mkv, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : mp4, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : MXF, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : openDml, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : picture, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : asf, priority :50
[ADM_dm_loadPlugins] 19:43:46-116 Demuxer plugin : ps, priority :10
[ADM_dm_loadPlugins] 19:43:46-116 Scanning done, 10 demuxers found
[ADM_mx_loadPlugins] 19:43:46-116 Scanning directory /usr/lib/ADM_plugins6/muxers
[Muxer]Name :AVI ApiVersion :9 Description :AVI muxer plugin (c) Mean 2008
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_avi.so as AVI muxer plugin (c) Mean 2008
[Muxer]Name :dummy ApiVersion :9 Description :dummy2 muxer plugin (c) Mean 2008
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_dummy.so as dummy2 muxer plugin (c) Mean 2008
[Muxer]Name :ffPS ApiVersion :9 Description :ffMpeg PS muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_ffPS.so as ffMpeg PS muxer plugin (c) Mean 2009
[Muxer]Name :ffTS ApiVersion :9 Description :ffMpeg TS muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_ffTS.so as ffMpeg TS muxer plugin (c) Mean 2009
[Muxer]Name :FLV ApiVersion :9 Description :FLV muxer plugin (c) Mean 2008
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_flv.so as FLV muxer plugin (c) Mean 2008
[Muxer]Name :MKV ApiVersion :9 Description :Matroska muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_mkv.so as Matroska muxer plugin (c) Mean 2009
[Muxer]Name :MOV ApiVersion :9 Description :MOV muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_mov.so as MOV muxer plugin (c) Mean 2009
[Muxer]Name :MP4 ApiVersion :9 Description :MP4 muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_mp4.so as MP4 muxer plugin (c) Mean 2009
[Muxer]Name :MP4V2 ApiVersion :9 Description :MP4V2 muxer plugin (c) Mean 2011
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_mp4v2.so as MP4V2 muxer plugin (c) Mean 2011
[Muxer]Name :RAW ApiVersion :9 Description :RAW muxer plugin (c) Mean 2008
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_raw.so as RAW muxer plugin (c) Mean 2008
[Muxer]Name :WEBM ApiVersion :9 Description :WebM muxer plugin (c) Mean 2009
[Muxers] Registered filter /usr/lib/ADM_plugins6/muxers/libADM_mx_webm.so as WebM muxer plugin (c) Mean 2009
[ADM_mx_plugin] Scanning done
[ADM_mx_loadPlugins] 19:43:46-118 Scanning done, 11 muxers found
[ADM_vd6_plugin] Scanning directory /usr/lib/ADM_plugins6/videoDecoders
[videoDecoder6]Name :aom ApiVersion :1 Description :Decoder using libaom (c) mean 2010 / eumagga0x2a 2019
[VideoDecoder6] Registered filter /usr/lib/ADM_plugins6/videoDecoders/libADM_vd_aom.so as Decoder using libaom (c) mean 2010 / eumagga0x2a 2019
[ADM_vd6_plugin] Scanning done
[ADM_ve6_plugin] Scanning directory /usr/lib/ADM_plugins6/videoEncoders
[videoEncoder6]Name :ffDv ApiVersion :7 Description :Simple ffmpeg based DV Encoder (c) 2013 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffDv.so as Simple ffmpeg based DV Encoder (c) 2013 Mean
[videoEncoder6]Name :ffFlv1 ApiVersion :7 Description :Simple ffmpeg based Flv1 Encoder (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffFlv1.so as Simple ffmpeg based Flv1 Encoder (c) 2009 Mean
[videoEncoder6]Name :ffMpeg2 ApiVersion :7 Description :Simple ffmpeg based Mpeg2 Encoder (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffMpeg2.so as Simple ffmpeg based Mpeg2 Encoder (c) 2009 Mean
[videoEncoder6]Name :ffMpeg4 ApiVersion :7 Description :Simple ffmpeg based mpeg4 Encoder (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffMpeg4.so as Simple ffmpeg based mpeg4 Encoder (c) 2009 Mean
[videoEncoder6]Name :ffNvEncH264 ApiVersion :7 Description :Nvidia hw encoder
Unable to load [libcuda.so]: libcuda.so: cannot open shared object file: File or directory does not exist
[nvCheckDll] 19:43:46-119 checking libcuda.so-> 0
[nvEncProbe] 19:43:46-119 Cannot load cuda dll
/usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffNvencH264.so:ProbingFailed
[videoEncoder6]Name :ffNvEncHEVC ApiVersion :7 Description :Nvidia hw encoder
Unable to load [libcuda.so]: libcuda.so: cannot open object file: The file or directory does not exist
[nvCheckDll] 19:43:46-119 checking libcuda.so-> 0
[nvEncProbe] 19:43:46-119 Cannot load cuda dll
/usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffNvencHEVC.so:ProbingFailed
[videoEncoder6]Name :ffVAEncH264 ApiVersion :7 Description :Intel hw encoder
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffVaEncH264.so as Intel hw encoder
[videoEncoder6]Name :ffVAEncHEVC ApiVersion :7 Description :Intel hw encoder
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffVaEncHEVC.so as Intel hw encoder
[videoEncoder6]Name :FFV1 ApiVersion :7 Description :FFV1 (c) 2021 szlldm
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_ffv1.so as FFV1 (c) 2021 szlldm
[videoEncoder6]Name :HUFFYUV ApiVersion :7 Description :FF Huffyuv (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_huff.so as FF Huffyuv (c) 2009 Mean
[videoEncoder6]Name :Mjpeg ApiVersion :7 Description :Simple jpeg Encoder (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_jpeg.so as Simple jpeg Encoder (c) 2009 Mean
[videoEncoder6]Name :LibVaEncoder (HW) ApiVersion :7 Description :Simple Libva Encoder (c) 2018 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_libva.so as Simple Libva Encoder (c) 2018 Mean
[videoEncoder6]Name :null ApiVersion :7 Description :Null Encoder (c) 2010 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_null.so as Null Encoder (c) 2010 Mean
[videoEncoder6]Name :utvideo ApiVersion :7 Description :Ut Video (c) 2020 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_utvideo.so as Ut Video (c) 2020 Mean
[videoEncoder6]Name :vp9 ApiVersion :7 Description :libvpx based VP9 Encoder
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_vp9.so as libvpx based VP9 Encoder
[videoEncoder6]Name :x264 ApiVersion :7 Description :x264 based mpeg4 AVC Encoder (c) 2010 Mean/Gruntster
/usr/lib/ADM_plugins6/videoEncoders/libADM_ve_x264_other.so:WrongUI
[videoEncoder6]Name :x265 ApiVersion :7 Description :x265 based HEVC Encoder (c) 2014 Mean/Gruntster
/usr/lib/ADM_plugins6/videoEncoders/libADM_ve_x265_other.so:WrongUI
[videoEncoder6]Name :xvid4 ApiVersion :7 Description :Xvid4 based mpeg4 Encoder (c) 2010 Mean/Gruntster
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_xvid4.so as Xvid4 based mpeg4 Encoder (c) 2010 Mean/Gruntster
[videoEncoder6]Name :YV12Encoder ApiVersion :7 Description :Simple YV12 Encoder (c) 2009 Mean
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/libADM_ve_yv12.so as Simple YV12 Encoder (c) 2009 Mean
[ADM_ve6_plugin] Scanning done
[ADM_ve6_plugin] Scanning directory /usr/lib/ADM_plugins6/videoEncoders/qt5
[videoEncoder6]Name :x264 ApiVersion :7 Description :x264 based mpeg4 AVC Encoder (c) 2010 Mean/Gruntster
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x264_QT5.so as x264 based mpeg4 AVC Encoder (c) 2010 Mean/Gruntster
[videoEncoder6]Name :x265 ApiVersion :7 Description :x265 based HEVC Encoder (c) 2014 Mean/Gruntster
[VideoEncoder6] Registered filter /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x265_QT5.so as x265 based HEVC Encoder (c) 2014 Mean/Gruntster
[ADM_ve6_plugin] Scanning done
[ADM_vf_plugin] Scanning directory /usr/lib/ADM_plugins6/videoFilters
[parseOneFolder] 19:43:46-123 Feature Mask = 0xc0
[ADM_vf_plugin] Plugin loaded version 1.0.0, name dgbob/dgbob
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fluxsmooth/FluxSmooth
[ADM_vf_plugin] Plugin loaded version 1.0.0, name aarotate/Arbitrary Rotate
[ADM_vf_plugin] Plugin loaded version 1.0.0, name addBorder/Añadir bordes
[ADM_vf_plugin] Plugin loaded version 1.0.0, name admIvtc/ivtc de ADM.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name AsciiView/Vista Ascii
Terminate class is calling in start
[ADM_vf_plugin] Plugin loaded version 0.0.12, name avsfilter/avsfilter
[ADM_vf_plugin] Plugin loaded version 1.0.0, name black/Negro
[ADM_vf_plugin] Plugin loaded version 1.0.0, name blend/Blend Frames
[ADM_vf_plugin] Plugin loaded version 1.0.0, name changeFps/Cambiar los FPS
[ADM_vf_plugin] Plugin loaded version 1.0.0, name colorYuv/Filtro de color de Avisynth.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name decimateFrame/Decimate
[ADM_vf_plugin] Plugin loaded version 1.0.0, name MplayerDenoise3D/Denoise 3D de MPlayer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name MplayerDenoise3DHQ/Denoise 3D HQ de MPlayer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name dummy/Nulo
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeTo/Fundido
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeToBlack/Fundido a negro
[ADM_vf_plugin] Plugin loaded version 1.0.0, name Gaussian/Circunvolución gausiana.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name hzstackfield/Apilado horizontal de los campos
[ADM_vf_plugin] Plugin loaded version 1.0.0, name ivtcRemover/Eliminar los duplicados de IVTC.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name kerndelDeint/Kernel Deint.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name largeMedian/Mediana grande (5×5 px).
[ADM_vf_plugin] Plugin loaded version 1.0.0, name lavdeint/Desentrelazadores de Libavdec
[ADM_vf_plugin] Plugin loaded version 1.0.0, name lumaonly/Escala de grises
[ADM_vf_plugin] Plugin loaded version 1.0.0, name Mean/Circunvolución media.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name Median/Circunvolución mediana.
[ADM_vf_plugin] Plugin loaded version 1.0.0, name mergefields/Mezclar campos
[ADM_vf_plugin] Plugin loaded version 1.0.0, name invplane/Negative
[ADM_vf_plugin] Plugin loaded version 1.0.0, name printInfo/Imprimir información
[ADM_vf_plugin] Plugin loaded version 1.0.0, name rplane/Eliminar el plano
[ADM_vf_plugin] Plugin loaded version 1.0.0, name resampleFps/Remuestrear los FPS
[ADM_vf_plugin] Plugin loaded version 1.0.0, name rotate/Rotar
[ADM_vf_plugin] Plugin loaded version 1.0.0, name SeparateFields/Separar campos
[ADM_vf_plugin] Plugin loaded version 1.0.0, name Sharpen/Circunvolución de agudizado.
[ADM_vf_plugin] Plugin loaded version 1.0.1, name ssa/SSA/ASS/SRT
[ADM_vf_plugin] Plugin loaded version 1.0.0, name stackField/Apilar campos
[ADM_vf_plugin] Plugin loaded version 1.0.0, name stillimage/Imagen fija
[ADM_vf_plugin] Plugin loaded version 1.0.0, name swapUV/Intercambiar UV
[ADM_vf_plugin] Plugin loaded version 1.0.0, name telecide/Decomb telecide
[ADM_vf_plugin] Plugin loaded version 1.0.0, name unstackField/Desapilar campos
[ADM_vf_plugin] Plugin loaded version 1.0.0, name vaapiResize/VA-API Redimensionar
[ADM_vf_plugin] Plugin loaded version 1.0.0, name vaapiDeint/VA-API Deinterlacer
[tryLoadingVideoFilterPlugin] 19:43:46-130 [ADM_vf_plugin] vdpau: Redimensionar needs features that are not active
[tryLoadingVideoFilterPlugin] 19:43:46-130 [ADM_vf_plugin] vdpauDeint needs features that are not active
[ADM_vf_plugin] Plugin loaded version 1.0.0, name yadif/Yadif
[ADM_vf_plugin] Scanning done, found 43 video filters so far
[parseOneFolder] 19:43:46-130 Feature Mask = 0xc0
[ADM_vf_plugin] Plugin loaded version 1.0.0, name hue/Hue de Mplayer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name analyzer/Analyzer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artCartoon/Cartoon
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artCharcoal/Charcoal / Chalkboard
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artChromaHold/Chroma Hold
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artChromaKey/Chroma Key
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artColorEffect/Color Effect
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artDynThreshold/Dynamic Threshold
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artGrid/Grid
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artMirror/Mirror
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artPixelize/Pixelize
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artPosterize/Posterize
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artVHS/VHS
[ADM_vf_plugin] Plugin loaded version 1.0.0, name artVignette/Vignette
[ADM_vf_plugin] Plugin loaded version 1.0.0, name asharp/Asharp
[ADM_vf_plugin] Plugin loaded version 1.0.0, name blackenBorder/Oscurecer los bordes
[ADM_vf_plugin] Plugin loaded version 1.0.0, name blur/Blur
[ADM_vf_plugin] Plugin loaded version 1.0.0, name chromashift/CromaShift
[ADM_vf_plugin] Plugin loaded version 1.0.0, name colorBalance/Color balance
[ADM_vf_plugin] Plugin loaded version 1.0.0, name colorTemp/Color temperature
[ADM_vf_plugin] Plugin loaded version 1.0.0, name contrast/Contraste
[ADM_vf_plugin] Plugin loaded version 1.0.0, name crop/Recortar
[ADM_vf_plugin] Plugin loaded version 1.0.0, name cubicLUT/3D LUT
[ADM_vf_plugin] Plugin loaded version 1.0.0, name deband/Deband
[ADM_vf_plugin] Plugin loaded version 1.0.0, name delogoHQ/DelogoHQ
[ADM_vf_plugin] Plugin loaded version 1.0.0, name eq2/eq2 de MPlayer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeFromImage/Fade from first image
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeIn/Fade in
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeOut/Fade out
[ADM_vf_plugin] Plugin loaded version 1.0.0, name fadeThrough/Fade through
[ADM_vf_plugin] Plugin loaded version 1.0.1, name fitToSize/Fit to size
[ADM_vf_plugin] Plugin loaded version 1.0.0, name flip/Flip
[ADM_vf_plugin] Plugin loaded version 1.0.0, name glBenchmark/Prueba de rendimiendo de relectura de OpenGl
[ADM_vf_plugin] Plugin loaded version 1.0.0, name glResize/Redimensionado OpenGl
[ADM_vf_plugin] Plugin loaded version 1.0.0, name imageStab/Image stabilizer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name addLogo/Añadir logo
[ADM_vf_plugin] Plugin loaded version 1.0.0, name lumaStab/Luma stabilizer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name mpdelogo2/delogo2 de MPlayer
[ADM_vf_plugin] Plugin loaded version 1.0.0, name msharpen/Msharpen
[ADM_vf_plugin] Plugin loaded version 1.0.0, name quadTrans/Quadrilateral transformation
[ADM_vf_plugin] Plugin loaded version 1.0.0, name glRotate/Rotación OpenGl
[ADM_vf_plugin] Plugin loaded version 1.0.0, name glsampleFragment2/Muestra2 de sombreador de fragmento OpenGl
[ADM_vf_plugin] Plugin loaded version 1.0.0, name glSampleDistort/Onda OpenGl
[ADM_vf_plugin] Plugin loaded version 1.0.0, name shaderLoader/Cargador de sombreadores
[ADM_vf_plugin] Plugin loaded version 1.0.1, name swscale/swsResize
[ADM_vf_plugin] Plugin loaded version 1.0.0, name waveletDenoise/Wavelet denoiser
[ADM_vf_plugin] Plugin loaded version 1.0.0, name waveletSharp/Wavelet sharpener
[ADM_vf_plugin] Plugin loaded version 1.0.0, name zoom/Zoom
[ADM_vf_plugin] Scanning done, found 91 video filters so far
[initLIBVADecoder] 19:43:46-145 Registering LIBVA hw decoder
Found 18 video encoder(s)
Found 11 audio encoder(s)
Found 11 format(s)
[UI_RunApp] 19:43:46-145 Load default settings if any…
[setContainer] 19:43:46-145 setting container as index 3
[UI_RunApp] 19:43:46-146 [autoUpdate]Current date 2891 , last check = 2891
[postInit] 19:43:46-184 myQApplication exec
[postInit] 19:43:46-184 Checking for crash…
ignored: QtSettings.ini
ignored: custom
ignored: config3
0 : /home/Andrej/.avidemux6//lastEdit.py
No crash file (/home/Andrej/.avidemux6/crash.py)
Close event!
[HandleAction] 19:43:50-490 ************ EXIT **************
[HandleAction] 19:43:50-490 Closing ui
[UI_RunApp] 19:43:50-502 OpenGL: Cleaning up
[renderDestroy] 19:43:50-503 Cleaning up Render
[Qvideo]Destroying QVideo
[ADM_clearQtShellHistory] 19:43:50-516 Clearing script shell history (0 entries)
[~myQApplication] 19:43:50-516 Cleaning render…
[renderDestroy] 19:43:50-516 Cleaning up Render
[~myQApplication] 19:43:50-516 Cleaning preview…
[destroy] 19:43:50-516 Destroying preview
Cleaning up
[destroy] 19:43:50-516 Destroying preview
[ADM_vf_clearFilters] 19:43:50-516 clear filters
[deleteAll] 19:43:50-516 [Editor] Deleting all videos
[deleteAll] 19:43:50-516 [Editor] Deleting all videos
[Script] Tinypy INFO – Closing Python
[admLibVa_exitCleanup] 19:43:50-516 VA cleanup begin
[cleanup] 19:43:50-516 [LIBVA] De-Initializing LibVA library …
[admLibVa_exitCleanup] 19:43:50-519 VA cleanup end
[ADM_ad_cleanup] 19:43:50-519 Purging audio decoder
[ADM_vf_cleanup] 19:43:50-520 Destroying video filter list
21:43:50 Call terminate!!!
–End of cleanup–
Images stat:
___________
Max memory consumed (MB) : 0
Current memory consumed (MB) : 0
Max image used : 3
Cur image used : 0
[ADM_ExitCleanup] 19:43:50-524
Goodbye…
[~myQApplication] 19:43:50-524 cleaning VDPAU…
[~myQApplication] 19:43:50-524 Exiting app
[save] 19:43:50-531 Saving prefs to /home/Andrej/.avidemux6/config3.tmp
[destroy] 19:43:50-532 Destroying preview
Normal exit
[uninstallSigHandler] 19:43:50-532 Removing signal handler
[abortExitHandler] 19:43:50-532 already done, nothing to do