-
I would like to get the bit depth of an audio file but there does not seem to be a property for that, is there a way to get it? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
Could your question be a duplicate of #119 by any chance? |
Beta Was this translation helpful? Give feedback.
-
I tried to calculate bit depth using that method but got wrong values. I tried with a file with a bit depth of 24. 1000 * Track.Bitrate / Track.SampleRate => 1000 * 2117 * 44100 = 48.004535147392289 ATL.Track audioInfo = new Track(pathToFile); I also needed to change 1000 to 1024 otherwise I get 31 instead of 32 on 32 bit tracks. |
Beta Was this translation helpful? Give feedback.
-
BIt depth is now accessible through |
Beta Was this translation helpful? Give feedback.
BIt depth is now accessible through
Track.BitDepth
in today's v4.15