Where I can find bitrate info for audio file?
I just upgrade to OS X 10.9.2 and I can't find bitrate informations for audio file in Finder's info window. Is there someone with the same problem?
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
I just upgrade to OS X 10.9.2 and I can't find bitrate informations for audio file in Finder's info window. Is there someone with the same problem?
Can't believe.. Apple has made my job slower for no apparent reason
Can't believe.. Apple has made my job slower for no apparent reason
I was only able to quickly test this with an AIFF and WAV file but presumably the same will apply to other formats.
Select a music file in the Finder, chose Get Info. In the Get Info window look for the 'More Info:' option and open the triangle. For me for AIFF and WAV it then shows - Sample rate, Bits per sample, Duration and Channels but does not show bitrate per second which I believe is what you want.
I do know this information is available in iTunes if you add the tracks to it and then select Get Info in iTunes.
Here's an Automator Service that wil give you a pop-up:
(Highlight the audio file, right click and select the service name)
Open Automator, Select Service.
The Service is:
The Run Shell Script Action is:
echo $(( $(mdls -raw -name kMDItemTotalBitRate "$1" ) /1000 )) \(File: "${1##*/}"\)
The AppleScript is:
on run {input, parameters}
display dialog "Total bit rate: " & inputbuttons {"OK"} default button 1
return input
end run
Right-Click -> Get Info
Is that what you wanted, or is the sample rate not the same thing?
Is the "More Info" triangle pointing down on your display?
Is the bitrate data actually encoded in the file you are looking at (I know nothing about .wav file encoding, so I'm just throwing out thoughts).
Side comment. Anytime you switch to a different interface, it is a pain because all your old habits and shortcuts no longer work. The people that find the Mac better may also have years of habits and shortcuts tailored to the Mac and do not think about it any longer. But you are going to have to develop those all over again.
These forums can be very helpful, but since we are just unpaid users that do it for fun, it helps if you approach us without swearing in your posts. That tends to makes regular uses defensive and sometimes hostile when they reply. I'm not trying to pick on you, just suggesting you can get more out of these forums without starting a post with swear words.
-- bitrate.applescript
-- Display all audio and music files in a Finder window whose bitrate is larger than 192Kbps.
use framework "Cocoa"
use AppleScript version "2.4" -- Yosemite or later (won't work in Mavericks - noticed after the post)
use scripting additions
-- find the Spotlight kMDItemTotalBitRate value for all audio and music categories
-- also the QuickTime Player's Data rate value
set query to "(kind:audio AND kind:music) bitrate:>192000"
-- pop a Finder window showing the files matching the query results as if entered into the Finder search panel
set result_code to (current application'sNSWorkspace'ssharedWorkspace)'s showSearchResultsForQueryString:query
if result_code = 0 then return
return
From Finder's Open With QuickTime Player on one of the resultant files:
Good service , but not really handy!
Ed Lqt wrote:
Good service , but not really handy!
Why not? You can assign a Hotkey to it.
(then it will be as handy as ⌘I, but without excess information, and more info can be added to the service if needed)
Thanks Tony, very handy!
As an alternative you may use Quicktime's "Inspector"-window to display more detailed info on audio (or video) files. This requires you opening the file(s) in Quicktime first though. I recommend using Quicktime when inspecting larger numbers of files for bitrate information.
Hi folks,
I just switched to Mac recently, as I do a lot of audio and video stuff. What a F$%^%^&-up!?! I love the idea of Mac, but boy, when you're used to working on a Windows system (with all its faults), Mac is such a muck! So, I simply want to know the sample rate and bitrate of a wave file. That's it...no rocket science or anything...could anyone tell me how, please?
On Windows, it was simple: right-click on the file, then click on details - voila! I am told that on Mac I should also right-click and then get info, then "more info". Yet, at that location it only shows the name and extension of the file. Am I still doing something wrong? Tryin my best to learn the intricacies of Mac :-)
Just what I've been looking for. Very helpful!
Where I can find bitrate info for audio file?