audioread() sampled data type conversion
6 次查看(过去 30 天)
显示 更早的评论
Hi,
I have double data returned from audio read file using audioread(). I need to get bit vector(numeric value includes 1s and 0s). Could you read an audio file using audioread() or audioread('native') ? How do you get bit array (1,0,1,0,0,0...) from sampled data you get from audioread() or audioread('native')? And then how do you get double data back from bit array ?
Thanks!
0 个评论
回答(1 个)
Walter Roberson
2021-12-5
audioread() with 'native' will only return an integer data type if the data is stored as integer internally. That is not always the case.
typecast() the returned data to 'uint8' and then convert the uint8 to bit vectors.
Hint: non-zero uint8 can be used as indices into a list of bits for the byte...
5 个评论
Walter Roberson
2021-12-6
You are back to asking about the fastest conversion method. That requires testing, not theory. And fastest is the topic of your other post and so should be discussed there. Really this present Question is a duplicate, since you asked the same thing as part of the other question, but since it was more narrowly focused on the question of datatype, I allowed it instead of closing it as Duplicate. The "fastest" part, however, is squarely the topic of the other question so I am not going to respond here. (Do not open multiple questions on the same topic in hopes that you might get a faster response.)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio and Video Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!