Hi.
I have 100s of video files.
I'd like to have a tool that shows me (in a list for example) the number of audio tracks (or the specific audio tracks) of all the video files at the same time.
Any ideas how I can accomplish that?
+ Reply to Thread
Results 1 to 7 of 7
-
-
Some GUIs can do it also, including probably MediaInfo.
-
-
If I understand you correctly, this works for me. You can also list other audio data by adding other %%{items}%%. You just need to drag one item and drop on this .CMD file in order to clear the Tracks.txt file automatically instead of manually clearing or deleting the file.
Yields the following quick and dirty:Code:::echo off chcp 1252 set SDL_AUDIODRIVER=directsound for %%a in ("%~dpnx1") Do ( cd %%~dpa @echo. > "%%~dpa_Tracks.txt" ) for %%a in (*.mp4,*.mpg,*.flv) Do ( echo %%~dpnxa >> "%%~dpa_Tracks.txt" MediaInfo.exe "--Output=Audio;%%Channel(s)%%" "%%~dpnxa" >> "%%~dpa_Tracks.txt" @echo. >> "%%~dpa_Tracks.txt" )
C:\Users\Bud\Desktop\20SecXInstagram.mp4
2
C:\Users\Bud\Desktop\Wham_Last Christmas.mp4
2 -
Yet another way: use ffastrans. Your Workflow would look like this (i opened the settings of the "Generate Text File Node" so you see how i set this:
[Attachment 59022 - Click to enlarge]
Of course the "monitor Folder" Component is set up to watch the subfolder structure where your videos are.
In the generated text file you see this:
C:\temp\Sony_MXF.mxf;Tracks: 4; Channels: [2,2,2,2]
C:\temp\PXL_20210514_111131810.mp4;Tracks: 1; Channels: [2]
-
Thanks everyone for their support & effort.
I believe Mediainfo is a good solution if I set the view to Sheet! : )
[Attachment 59046 - Click to enlarge]
Similar Threads
-
Audio Stream Language Metadata - List
By daigo99 in forum Video ConversionReplies: 3Last Post: 26th Nov 2021, 18:07 -
Get a list of Youtube video titles from a list of URLs
By abolibibelot in forum Video Streaming DownloadingReplies: 3Last Post: 12th Oct 2020, 05:42 -
youtubedl list only audio for stream ?
By PowerFalcon in forum Video Streaming DownloadingReplies: 21Last Post: 30th Sep 2018, 21:58 -
Seeking to list video and audio information for thousands of videos
By ProxyCell in forum Newbie / General discussionsReplies: 9Last Post: 13th Dec 2017, 01:16 -
Is there a way to list all subtitle tracks for all my episodes?
By zephyr22 in forum SubtitleReplies: 4Last Post: 3rd Jun 2016, 08:01


Quote
