-
I don't see a way to get the bits per sample for the specified audio track. Bitrate and Samplerate are provided, however. Is there a way to get this info or is it not supported? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
A - B - |
Beta Was this translation helpful? Give feedback.
-
BIt depth (bits per sample) is now directly accessible through |
Beta Was this translation helpful? Give feedback.
Track
doesn't give you bits per sample directly, but you can calculate it with any of these two methods :A -
1000 * Track.Bitrate / Track.SampleRate
B -
8 * Track.TechnicalInfo.AudioDataSize / (Track.Duration * Track.SampleRate)