English 中文(简体)
谁能说抽样率和框架是如何实现的?
原标题:can anyone say how sampling rate and framesize is realted?
  • 时间:2011-02-01 10:15:53
  •  标签:
  • c
  • audio

谁能说抽样率和框架是如何相关的?

I decoded a spx file to wav, with sampling rate of 10 kHz and at 16 bit. The frame size applied during the decoding process was 640. The decoded file is playable in vlc. But I want to play that file in Flex.

灵活的支助率仅为44.1千赫、22.5千赫和11.2千赫。 我想在脱节过程中提高取样率。 我知道如何在守则中这样做,但我猜测,也应增加框架。 我不知道这两者之间的依赖性。 谁能帮助?

最佳回答

碎块大小和取样率一般都是奥果里概念。 除非具体格式要求,否则它们不必相互影响。

对于PCM .wav来说,框架规模永远是借方/渠道。 就你而言,有16个专栏,即32个字典。

此外,没有必要改变编码框架的大小,因为你后来申请了整顿。

问题回答

你将两项独立任务混为一谈:间谍脱节和转播。 上述框架规模应仅视为包含PCCM样本的缓冲。 这些内容分析样本请转至Amampler(例如:SSRC:)。

碎度取决于用来压缩原始数据的代码。 该表将包含综合样本数量(320例)。

如果我能正确思考原始音频,其基数等于样本大小。 然而,一些编码系统对一系列样本进行压缩。 通常,框架规模越大,压缩数据所需的记忆越多,但你可能实现的压缩。

在脱节期间,你可以提高取样率,但你可以重复密码的录音。 假设你实际上重新编码数据,将其发送给灵活性? 你们需要看一下你重新使用的代号。 你们使用哪一种规范?

irrespective of number of channels used, frame rate and sampling rate are same. because that is the purpose of TDM. New channels are introduced in the gap left between two consecutive samples. As the number of channels increase time allotted to each channel decrease there by time taken by each bit. but tame gap between consecutive samples of any channel will remain constant and it will equal to the total frame time. i.e. Time gap between samples = Frame time, hence Frame rate is equal to sample rate.





相关问题
Fastest method for running a binary search on a file in C?

For example, let s say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems like a real waste ...

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

Tips for debugging a made-for-linux application on windows?

I m trying to find the source of a bug I have found in an open-source application. I have managed to get a build up and running on my Windows machine, but I m having trouble finding the spot in the ...

Trying to split by two delimiters and it doesn t work - C

I wrote below code to readin line by line from stdin ex. city=Boston;city=New York;city=Chicago and then split each line by ; delimiter and print each record. Then in yet another loop I try to ...

Good, free, easy-to-use C graphics libraries? [closed]

I was wondering if there were any good free graphics libraries for C that are easy to use? It s for plotting 2d and 3d graphs and then saving to a file. It s on a Linux system and there s no gnuplot ...

Encoding, decoding an integer to a char array

Please note that this is not homework and i did search before starting this new thread. I got Store an int in a char array? I was looking for an answer but didn t get any satisfactory answer in the ...

热门标签