News:

--

Main Menu

About Starting Up

Started by Jay123210599, December 20, 2025, 01:37:54 PM

Previous topic - Next topic

Jay123210599

Whenever I open up Avidemux, I want all audio tracks to be disabled when input a video and the default output format to be MP4. How do I do that?

eumagga0x2a

To set default muxer (output format) to MP4, choose it in Avidemux GUI and press CTRL+ALT+D ("Save current setting as default").

Number of audio tracks is meaningless as long as no video is loaded, therefore the original request is flawed. However, you can create a file e.g. as "clear-all-audio-tracks.py" in %appdata%\avidemux\custom directory with the following content

adm = Avidemux()
adm.audioClearTracks()

and manually call it from the "Custom" menu after you have loaded a video. There is no way to do it automatically when a video is loaded though (adding adm.audioClearTracks() command to defaultSettings.py file won't update the GUI to reflect the new count of audio tracks and won't survive the next press of CTRL+ALT+D).