From bfb14d6c36df472da23f0cfb7129a3970cf04fd7 Mon Sep 17 00:00:00 2001 From: zombie Date: Mon, 2 Jan 2023 20:06:15 -0500 Subject: [PATCH] added audio command --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 545c608..a825e69 100644 --- a/README.md +++ b/README.md @@ -52,3 +52,11 @@ done ``` ffmpeg -i Teen\ Titans\ S04E11.mkv -s 960x540 -c:v libx264 -preset veryslow -crf 30 -c:a copy output540pveryslow30ep11kleiner.mkv ``` + +Common info commands +-------------------- + +### this gets the info of all the audio of the videos in the current dir and displays it neatly (is useful for finding problems with the audio) +``` +for i in *.mkv; do mediainfo "$i" | grep -e "Complete name" -e "Video" -e "Audio" -e "channels" -e "Bit rate"; echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-="; done +```