News:

--

Main Menu

Recent posts

#1
That's understandable.  Just spit-balling an idea.  I'm not as savvy a user as many here, so I have to research tweaking settings when I veer from default(s).  Anyway, new nightly version is awesome.  Thanks again to all those who work  hard on the application.  Peace  :)
#2
Main version 2.6 / Re: Rotation Video
Last post by Drakon66 - Today at 09:16:28 PM
My problem is i have some videos upside down 180 recorded. I hope option with reencoding not reduce quality. Its just coding frame problem.
#3
Main version 2.6 / Re: Rotation Video
Last post by Drakon66 - Today at 06:35:26 PM
Quote from: eumagga0x2a on May 01, 2024, 04:31:07 PMAn enhancement to Avidemux to allow user to rotate video preview is possible

how to set that

Quote from: eumagga0x2a on May 01, 2024, 04:31:07 PMPlease make sure that "Post-Processing" is disabled in Avidemux
Quote from: eumagga0x2a on May 01, 2024, 04:31:07 PMlease also consider using a lossless codec (Ut Video or (FF)HuffYUV) for intermediate steps.

Where check this

#4
Avidemux-French / Re: Échantillonnage différent ...
Last post by eumagga0x2a - Today at 12:41:43 PM
Bonjour,

L'ajout d'une vérification de compatibilité pour les pistes audio est très souhaité. Peut-être un jour...
#5
Main version 2.6 / Re: Why am I getting a Warning...
Last post by eumagga0x2a - Today at 12:36:39 PM
Quote from: tropolite on May 03, 2024, 09:23:30 AMWhat's possibly affected the playback is my update to a 27" 2560x1440 screen.

This matters only if you use the unaccelerated "Qt" ("RGB") video display mode in Avidemux. You should use it only if all other options fail.
#6
Main version 2.6 / Re: Feature request: moving th...
Last post by szlldm - Today at 11:35:45 AM
do you mean the navigation slider? you can drag it with the mouse when playing
#7
Main version 2.6 / Feature request: moving the pr...
Last post by duckduck - Today at 05:53:39 AM
now we can move the progress bar when playing video by keyboard only.
it will be very helpful if mouse is also allowed, thanks
#8
Avidemux-French / Re: Échantillonnage différent ...
Last post by Dagobert_78 - May 03, 2024, 03:10:41 PM
En attendant une solution qui m'éviterais un post-traitement, et en me servant du Script de Simonalain21, je me suis fait un scrip afin de convertir tous les audios au bon échantillonnage.

Mais je dois toujours, manuellement, rechercher les vidéos qui n'ont pas le bon échantillonnage.

#PY  <- Needed to identify #
adm = Avidemux()
gui = Gui()
# --------  extension recherchée  --------
ext = "mkv"
# ----------------
sep = "\\"

def processVideo(vidin, outdir):
    if not adm.loadVideo(vidin):
        return 0

# -------- Audio Config  AC3 stéréo +3 db--------       
    adm.audioClearTracks()
    if adm.audioTotalTracksCount() <= 0:
        return 0
    adm.audioAddTrack(0)
    adm.audioCodec(0, "LavAC3", "bitrate=640")
    adm.audioSetResample(0, 48000)
    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)

# -------- Video Config --------
# --------   COPY  --------
    adm.videoCodec("Copy")
# --------  --------
    adm.setContainer("MKV", "forceAspectRatio=False", "displayWidth=1280", "displayAspectRatio=2", "addColourInfo=False", "colMatrixCoeff=2", "colRange=0", "colTransfer=2", "colPrimaries=2")
    return adm.save(outdir + sep + basename(vidin))

# --------  Choix du dossier source  --------
inputFolder = gui.dirSelect("Select source folder")
if inputFolder is None:
    gui.displayError("Error", "No source folder selected")
    return 0

# -------- read content --------
vidlist = get_folder_content(inputFolder, ext)
if vidlist is None:
    gui.displayError("Error", "No " + ext + " files found in \"" + inputFolder + "\"")
    return 0

# --------  Choix de la destination  --------
outputFolder = gui.dirSelect("Select output folder")
if outputFolder is None:
    gui.displayError("Error", "No output folder selected")
    return 0

if(inputFolder == outputFolder):
    gui.displayError("Error","Output folder cannot be the same as the input one")
    return 0

success = 0

for video in vidlist:
    success += processVideo(video, outputFolder)

if not success:
    gui.displayInfo("Warning", "No video files processed")
elif success == 1:
    gui.displayInfo("Finished", "One video out of " + str(len(vidlist)) + " processed")
else:
    gui.displayInfo("Finished", str(success) + " videos out of " + str(len(vidlist)) + " processed")

return success
#9
Main version 2.6 / Re: Why am I getting a Warning...
Last post by tropolite - May 03, 2024, 09:23:30 AM
Okay - thank you...

I was just concerned as I've used Avidemux for well over a decade now and it was just a couple months ago that I noticed this warning come up.

Is there a way to decrease the default Avidemux window to View Zoom 1:2.
What's possibly affected the playback is my update to a 27" 2560x1440 screen.

I don't need the Avidemux window being fullsize when editing/converting clips.
Any suggestions on this?
#10
User interface and Usability / Re: Hover Feature Like VLC?
Last post by eumagga0x2a - May 01, 2024, 05:24:55 PM
Writing short and meaningful text for tooltips is a pain ;D
Watching them popping up every time you have left your mouse at a wrong place is another.