HYP Blog

Thinking will not overcome fear but action will.

Wwise101 Certification

Basic learning process

Introduction Last month I got the certification of Wwise101, sharing my experienxes here helps me make record. Info This test is not diffcicult, to be honest, I am not sure if this certification...

How to make a simple song

Sound/Logic

Introduction Using Logic to make a simple song is very basic, I share the process and some feelings during arrangement. By the way I learn it from youtube, if you are interested in it, please goog...

Audio Basic

common concepts

Introduction After having got my acoustic master degree, I fould some common were often used in work, so I wrote down some basic info for sharing and marking. Main Body 采样频率 即取样频率, 指每秒钟取得声音样本的次...

Coding sharing summary4

matlab/python

Matlab 1.取整函数有: fix, floor, ceil, round.具体应用方法如下: fix:朝零方向取整,如fix(-1.3)=-1; fix(1.3)=1; floor:顾名思义,就是地板,所以是取比它小的整数,即朝负无穷方向取整 floor(-1.3)=-2; floor(1.3)=1;floor(-1.8)=-2,floor(1.8)=1 ceil:与floor相...

Coding sharing summary3

C/Audio

coding issues 错误总结 变量名写错 C语言容易出现内存泄露:比如加载了wav文件,有两个track,track是柔性数组,但是如果想:track[3]=track[1],不好这样操作,以为track是在loadwac的时候就读取文件,分配特定好的track,虽然track数组指针可以往后增加,但是前提是内存分配有的情况下,否则就会写入其他的内存区域,导...

Coding sharing summary 2

C/Audio

1.main函数参数argc,argv说明 C/C++语言中的main函数,经常带有参数argc,argv,如下: int main(int argc, char** argv) int main(int argc, char* argv[]) 这两个参数的作用: argc 是指命令行输入参数的个数(以空白符分隔) argv存储了所有的命令行参数 假如你的程序是hello.exe,...

Coding sharing summary 1

C/Audio

1.结构体编码的运算符区别 在对结构体进行相应的编码时,时而发现是用点运算符(.),时而是用箭头运算符(->) 相同点:两者都是二元操作符,而且右边的操作数都是成员的名称; 不同点: 点运算符(.)的左边操作数是一个结果为结构的表达式; 箭头运算符(->)的左边的操作数是一个指向结构体的指针; 例如:访问数据操作如下: data.age = 24; // ...

HEXO 模板使用

本文首次发布于 HYP Blog, 转载请保留原文链接. 前言 更换HEXO模板,找了一些资料 使用hexo模板 可以参考如下地址: https://blog.csdn.net/zhaokaiqiang1992/article/details/41349819 https://github.com/guodongxiaren/README/blob/master/emoji.m...

The first post

Hello World, hello you

Before blogging This blog is mainly used for sharing experiences. Tow parts were included in this bolg, I will write down some experiences about coding what I learned form work, just a few tip...