I’m working on a powershell script to create a list of all of my mp3 and m4a files, complete with bitrate. I have a really large amount of music files, but some of them are at low bitrates (like 128k). And there are a lot of duplicates. In the case of duplicates, I want to be able to pick out the one with the best bitrate.
I found some code online which would do the job, but it was a bit slow. Finding the bitrate for 80k files took about 31 minutes.
Read more
I found some code online which would do the job, but it was a bit slow. Finding the bitrate for 80k files took about 31 minutes.
Code:
$s = Get-Date
del files3.ps1.txt...
Read more