- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个鼓应用程序,我必须在其中做两件事
最佳答案
两部分答案:
解决方案一 :想到的一个想法是,与其尝试录制生成的音频,不如录制他们按下的按钮,并在他们播放文件时重新创建序列。
所以你的“录音”文件会是这样的:
/* Create a .WAV file with a specified set of chirps */
#include<stdio.h>
#include<sys\stat.h>
#include<ctype.h>
/* length of one bit in 44100Hz units */
#define BIT_LEN 88.5
/* length of one half-cycle */
#define HALF_CYCLE (BIT_LEN/8)
/* samples per second */
#define SAMP_RATE 44100
/* seconds before chirps start */
#define LEAD_SILENCE 5
struct {
unsigned long ID; /* FILE ID "RIFF" */
unsigned long Len; /* file length (excluding 8-byte header) */
unsigned long DataType; /* Data type 'WAVE' (start of main file) */
} FileHeader;
struct {
unsigned long ID; /* chunk ID "DATA" */
unsigned long Len; /* chunk length */
} DataHeader;
struct {
unsigned long ID; /* chunk ID "FMT " */
unsigned long Len; /* chunk length */
short FormatTag; /* format (1 if uncompressed) */
unsigned short Channels; /* # of channels (mono, stereo, etc) */
unsigned long SampPerSec; /* # of samples per second */
unsigned long AvgBytesPerSec; /* # of bytes played per second */
unsigned short BlockAlign; /* Size of a 'frame' in bytes */
unsigned short BitsPerSamp; /* bits per sample */
} FormatHeader;
#define ID_RIFF 0x46464952 /* 'RIFF' (FFIR) */
#define ID_WAVE 0x45564157 /* 'WAVE' (EVAW) */
#define ID_DATA 0x61746164 /* 'data' (atad) */
#define ID_FMT 0x20746d66 /* 'fmt ' ( tmf)*/
/* count # of pos/negative parts done */
int pcount=0;
/* how many will fit on a normal line? */
#define PCOUNT_MAX 14
void disp_id( char * lbl, long ID )
{
union {
long l;
char c[6];
} u;
u.l = ID;
u.c[4] = 0;
printf( lbl, u.c );
}
/* note where the samples begin */
unsigned long SampleStart; /* where do samples begin? */
/* one-second chirp segment */
short NewChirp[SAMP_RATE], /* 1-second block with chirp */
Silence[SAMP_RATE]; /* 1-second silence */
/* insert a byte into the chirp */
/* location is specified in bit time units */
void insert_byte( int location, int value )
{
int i, j;
int data; /* value to write to item */
int dloc; /* where we are within the byte */
int cycle;
printf("Inserting byte %d", value);
/* insert bits in little-endian order */
data = (value<<2) + 2; /* add "10" to the number */
/* round cycle low/high times to 11 samples low, 11 samples high */
/* use BIT_LEN to put it in the proper place */
for( i=0; i<10; i++ )
if ( data & (1<<i) )
{
printf(" %d: ", i );
/* have a 1-bit to insert, where should it be? */
/* insert 4 cycles */
for( cycle=0; cycle<4; cycle++ )
{
/* note: this may leave 0 samples between cycles or bits */
dloc = (int)(location + i*BIT_LEN + cycle*(BIT_LEN/4) + 0.5);
printf(" %d", dloc );
/* insert 11 low samples */
for( j=0; j<11; j++ )
{
NewChirp[ dloc+j ] = -30000;
}
/* insert 11 high samples */
for( j=11; j<22; j++ )
{
NewChirp[ dloc+j ] = 30000;
}
}
}
printf("\n");
} /* insert_byte */
/* insert a chirp with the given value */
void insert_chirp( FILE *f, float speed, float incline )
{
int i, i_speed, i_incline, i_chksum;
/* convert values to integers */
i_speed = (int)( speed*10 + 0.5 );
i_incline = (int)( incline*10 + 0.5 );
i_chksum = (i_speed + i_incline) & 0x0ff;
/* set everything to 0 in advance */
memset( NewChirp, 0, SAMP_RATE );
/* start inserting chirp parts */
insert_byte( 0, i_speed );
insert_byte( (int)(10*BIT_LEN+0.5), i_incline );
insert_byte( (int)(20*BIT_LEN+0.5), i_chksum );
insert_byte( (int)(40*BIT_LEN+0.5), i_speed );
insert_byte( (int)(50*BIT_LEN+0.5), i_incline );
insert_byte( (int)(60*BIT_LEN+0.5), i_chksum );
/* write the chirp */
fwrite( NewChirp, 1, SAMP_RATE, f );
} /* insert_chirp */
/* maximum # of chirps per file we will permit */
#define CHIRP_MAX 50
int main(int argc, char *argv[])
{
FILE *f; /* workout information file */
FILE *audio; /* output WAV file */
/* hold information about the chirps */
struct {
int second_count; /* where does this occur in seconds */
float speed; /* speed to use */
float incline; /* treadmill incline */
} chirp_list[CHIRP_MAX+1];
int chirp_count; /* # of chirps in the current workout */
int cur_chirp; /* which chirp are we working on? */
int cur_time; /* current time we are writing */
char wname[100]; /* workout name from the file */
int len;
char dbuf[100]; /* one chirp line from the file */
/* for reading one chirp */
int sec;
int seqno;
float speed, incline;
int sec_length; /* length of workout in seconds */
printf("initializaing\n");
/* build our 1 second of silence */
memset( Silence, 0, SAMP_RATE );
printf("opening input file %s\n", argv[1] );
/* open the description file */
fopen_s( &f, argv[1], "r" );
if ( f == NULL )
{
printf("Unable to open file %s\n", argv[1] );
return 1;
}
/* read one workout from the file */
while( 1==1 )
{
printf("reading one line from the workout\n");
/* at end of file? */
if ( feof(f) )
{
return 0;
}
/* get the header line */
fgets( wname, 90, f );
/* did we now detect end of file? */
if ( feof(f) )
{
return 0;
}
/* read the workout stages */
chirp_count = 0;
sec_length = 45; /* account for lead and trail time */
while( 1==1) {
fgets( dbuf, 90, f );
printf("read line %s", dbuf );
/* did we now detect end of file? - Shouldn't happen, but check */
if ( feof(f) || strlen(dbuf)<3 )
{
break;
}
if ( ! isdigit( dbuf[0] ) )
{
/* should have only numbers here */
return 3;
}
/* extract the information */
sscanf_s( dbuf, "%d %f %f %d", &seqno, &speed, &incline, &sec );
printf("speed=%3.1f, incline=%3.1f, time=%d\n", speed, incline, sec );
/* save it for later */
chirp_list[chirp_count].second_count = sec;
sec_length += sec;
chirp_list[chirp_count].speed = speed;
chirp_list[chirp_count].incline = incline;
/* move to next chirp */
chirp_count++;
}
/* replace ".txt" with ".wav" for the output filename */
if ( strlen( argv[1] ) > 90 )
{
printf("Error: path/filename too long\n");
exit(1);
}
strcpy( wname, argv[1] );
strcpy( wname+strlen(wname)-3, "wav" );
/* start creating our WAV file */
printf("Creating output file %s\n", wname );
fopen_s( &audio, wname, "wb" );
printf("Overall length: %d seconds\n", sec_length );
/* create header */
FileHeader.ID = ID_RIFF;
FileHeader.DataType = ID_WAVE;
/* create our format header */
FormatHeader.ID = ID_FMT;
FormatHeader.Len = 16; /* chunk length */
FormatHeader.FormatTag = 1; /* format (1 if uncompressed) */
FormatHeader.Channels = 1; /* # of channels */
FormatHeader.SampPerSec = SAMP_RATE; /* # of samples per second */
FormatHeader.AvgBytesPerSec = SAMP_RATE*2; /* # of bytes played per second */
FormatHeader.BlockAlign = 1; /* Size of a 'frame' in bytes */
FormatHeader.BitsPerSamp = 16; /* bits per sample */
/* create our data header */
DataHeader.ID = ID_DATA;
DataHeader.Len = (sec_length+LEAD_SILENCE) * SAMP_RATE;
/* update overall length, account for various headers except main RIFF part */
/* -- include 'WAVE' part of main header */
FileHeader.Len = DataHeader.Len + 4 +
+ sizeof(FormatHeader) + sizeof( DataHeader );
/* write it to the file */
fwrite( &FileHeader, sizeof(FileHeader), 1, audio );
/* write it to the file */
fwrite( &FormatHeader, sizeof(FormatHeader), 1, audio );
/* write it to the file */
fwrite( &DataHeader, sizeof(DataHeader), 1, audio );
/* start with silence */
printf("Writing lead-in\n" );
for( cur_time = 0; cur_time < LEAD_SILENCE; cur_time++ )
{
fwrite( &Silence, 1, SAMP_RATE, audio );
}
/* now do the chirps */
for( cur_chirp=0; cur_chirp < chirp_count; cur_chirp++ )
{
printf("Chirp #%d, time=%d, speed=%4.1f, incline=%4.1f\n",
cur_chirp+1, chirp_list[cur_chirp].second_count,
chirp_list[cur_chirp].speed, chirp_list[cur_chirp].incline );
/* add the chirp */
insert_chirp( audio, chirp_list[cur_chirp].speed,
chirp_list[cur_chirp].incline );
/* add enough silence between this chirp and the next */
for( cur_time = 1;
cur_time < chirp_list[cur_chirp].second_count; cur_time++ )
{
/* add another second of silence */
fwrite( &Silence, 1, SAMP_RATE, audio );
}
}
/* add the stop chirp */
printf("Stop chirp\n");
insert_chirp( audio, 25.2, 25.2 );
/* end with 30 seconds of silence */
printf("Writing 30 seconds lead-out\n" );
for( cur_time = 1; cur_time < 30; cur_time++ )
{
fwrite( &Silence, 1, SAMP_RATE, audio );
}
/* done with this workout */
fclose( audio );
} /* while reading workouts */
}
关于android - 如何从 Android 中的多个声音 block 创建单个声音文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31920890/
我的 blockly.js 文件中有以下代码 Blockly.Blocks['account_number'] = { // Other type. init: function() {
首先抱歉我的英语不好,我正在开发 Image Splitter 应用程序并且已经完成,但是现在的要求是当图像被分割(分成几 block /chunks)那么图像 block 的每一 block (ch
#value: 消息的返回值,当发送到一个 block 时,是该 block 中最后一句话的值。所以 [ 1 + 2. 3 + 4. ] value 计算结果为 7。我发现有时很难使用。有没有办法显式
我想构建一个包含 3 div 的响应式导航栏相同的 width和 height . 我申请了 inline-block到每个 block ,我得到一个我不理解的行为。 问题是,第三 block 由 2
我希望使用 Blockly 来允许非技术人员用户指定测试脚本。 它的一部分需要一个文件选择器,但是,我看不到 Blockly 有一个。是吗? 实际上,我找不到完整的标准 block 列表。谁有网址?
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
我想创建一个具有不同背景颜色 block 和不同悬停颜色 block 的导航栏 block 。我可以分别创建不同的悬停颜色 block 或不同的背景颜色 block ,但不能一起创建。所以请告诉我如何
我正在使用看到的代码 here定期执行代码: #define DELAY_IN_MS 1000 __block dispatch_time_t next = dispatch_time(DISPATC
为什么 block 必须被复制而不是保留?两者在引擎盖下有什么区别?在什么情况下不需要复制 block (如果有)? 最佳答案 通常,当您分配一个类的实例时,它会进入堆并一直存在,直到它被释放。但是,
我想弄清楚我这样做是否正确: 如果我有一个 block ,我会这样做: __weak MyClass *weakSelf = self; [self performBlock:^{
我想制作一个 4 block 导航菜单,虽然我已经显示了一个 block ,然后单击打开第二个 block ,从第二个开始选择并再次单击出现第三个 block ,第四个 block 相同...这是我的
例如,这样更好吗? try { synchronized (bean) { // Write something } } catch (Int
我想让一只乌龟检查前方小块的颜色并决定移动到哪里。如果前面的补丁不是白色的,那么乌龟向左或向右旋转并移动。我的 If 决策结构中出现错误,显示“此处应为 TRUE?FALSE,而不是 block 列表
我想创建一个 block 对角矩阵,其中对角 block 重复一定次数,非对角 block 都是零矩阵。例如,假设我们从一个矩阵开始: > diag.matrix [,1] [,2] [
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我创建了一个等距环境,全部使用 Javascript 和 HTML5 (2D Canvas),大部分情况下工作正常。我面临的问题是使用不同高度的图 block ,然后对图 block 上的对象索引进行
这是令我困惑的代码: public Integer getInteger(BlockingQueue queue) { boolean interrupted = false; try
我有一个基于 TPL 数据流的应用程序,它仅使用批处理 block 和操作 block 就可以正常工作。 我已经添加了一个 TransformBlock 以尝试在发布到批处理 block 之前从源中转
我是一名优秀的程序员,十分优秀!