VideoHelp Forum
+ Reply to Thread
Results 1 to 2 of 2
Thread
  1. how can we use powershell to get media info?
    lets say i have a folder E:\Video
    inside video folder there is bunch of video file.

    i need to print this following info in powershell

    using mediainfo.exe we can have this:

    %FileName% %colour_range%

    file1 Color_Range:Limited
    file2 Color_Range:Limited
    file3 Color_Range:Limited
    file4 Color_Range:Limited
    file4 Color_Range:Limited

    any help please?
    Last edited by iKron; 6th May 2022 at 02:04.
    Quote Quote  
  2. here is the script, in case if anyone need.
    Code:
    get-childitem E:\Folder\*.mkv -recurse | Select-Object -Property @{n='Resolution';expression={C:\MediaInfo.exe $_.FullName --inform="Video;%Width%x%Height%"}},name
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!