EasyCVRオーディオの基本、セキュリティビデオ監視システム用のビデオクラウドソリューションの概要

EasyCVRはTSINGSEE Qingxi Videoによって開発されたビデオクラウドゲートウェイです。デバイスにはパブリックIPがあり、Haikang SDK、Onvif / RTSP、GB28181、ehomeプロトコルを介してEasyCVRに接続できます。デバイスには、GB28181を介してアクセスできるパブリックIPがありません、EhomeプロトコルはEasyCVRに接続されています。また、EasyNTS機器を内部ネットワークにインストールして、パブリックネットワークとの伝送チャネルを確立し、Haikang SDK、Onvif / RTSPを介してEasyCVRに接続することもできます。

EasyCVR.png

この記事では、R&Dやコンパイルで使用されるEasyCVRのオーディオについての知識をお伝えします。

1. ffplayはpcm、g771を再生します

> ffplay -i test.pcm -f s16le -ac 1 -ar 8000 
> ffplay -i test.g711a -f alaw -ac 1 -ar 8000 
> ffplay -i test.g711u -f mulaw -ac 1 -ar 8000 

注:ACチャネルのARサンプリングレートの設定

-i再生するファイルを指定
-fエンコード形式
-acチャネル番号
-arサンプリングレート

2.オーディオデータサイズの計算

サンプリングレート16KHZ、ビット幅16ビット、デュアルチャネル、1分のデータサイズ
16000 2 2 60/1024/1024
サンプリングレート16KHZ、ビット幅32ビット、デュアルチャネル、1分のデータサイズ
16000
4 2 60/1024 / 1024
サンプリングレート16KHZ、ビット幅16ビット、モノ、1分のデータサイズ
16000 2 1 60/1024/1024
サンプリングレート16KHZ、ビット幅8ビット、モノ、1分のデータサイズ
16000
1 1 60 / 1024/1024

3.サンプリングレート

例:16000Hzは、1秒の連続信号で16000回の集録を意味し、毎回サンプリングポイントと呼ばれます

4.サンプリング深度

例:16ビットは、各サンプリングポイントが2バイトのデータ、つまり2バイトを収集することを意味します

5. pcm形式のオーディオストレージ形式

200.png

6. pcm形式とg711形式の間で変換する

#define BIAS        (0x84)      /* Bias for linear code. */  
  
/* 
 * linear2ulaw() - Convert a linear PCM value to u-law 
 * 
 * In order to simplify the encoding process, the original linear magnitude 
 * is biased by adding 33 which shifts the encoding range from (0 - 8158) to 
 * (33 - 8191). The result can be seen in the following encoding table: 
 * 
 *  Biased Linear Input Code    Compressed Code 
 *  ------------------------    --------------- 
 *  00000001wxyza           000wxyz 
 *  0000001wxyzab           001wxyz 
 *  000001wxyzabc           010wxyz 
 *  00001wxyzabcd           011wxyz 
 *  0001wxyzabcde           100wxyz 
 *  001wxyzabcdef           101wxyz 
 *  01wxyzabcdefg           110wxyz 
 *  1wxyzabcdefgh           111wxyz 
 * 
 * Each biased linear code has a leading 1 which identifies the segment 
 * number. The value of the segment number is equal to 7 minus the number 
 * of leading 0's. The quantization interval is directly available as the 
 * four bits wxyz.  * The trailing bits (a - h) are ignored. 
 * 
 * Ordinarily the complement of the resulting code word is used for 
 * transmission, and so the code word is complemented before it is returned. 
 * 
 * For further information see John C. Bellamy's Digital Telephony, 1982, 
 * John Wiley & Sons, pps 98-111 and 472-476. 
 */  
unsigned char  
linear2ulaw(  
    int     pcm_val)    /* 2's complement (16-bit range) */  
{  
    int     mask;  
    int     seg;  
    unsigned char   uval;  
  
    /* Get the sign and the magnitude of the value. */  
    if (pcm_val < 0) {  
        pcm_val = BIAS - pcm_val;  
        mask = 0x7F;  
    } else {  
        pcm_val += BIAS;  
        mask = 0xFF;  
    }  
  
    /* Convert the scaled magnitude to segment number. */  
    seg = search(pcm_val, seg_end, 8);  
  
    /* 
     * Combine the sign, segment, quantization bits; 
     * and complement the code word. 
     */  
    if (seg >= 8)        /* out of range, return maximum value. */  
        return (0x7F ^ mask);  
    else {  
        uval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0xF);  
        return (uval ^ mask);  
    }  
  
}  
  
/* 
 * ulaw2linear() - Convert a u-law value to 16-bit linear PCM 
 * 
 * First, a biased linear code is derived from the code word. An unbiased 
 * output can then be obtained by subtracting 33 from the biased code. 
 * 
 * Note that this function expects to be passed the complement of the 
 * original code word. This is in keeping with ISDN conventions. 
 */  
int  
ulaw2linear(  
    unsigned char   u_val)  
{  
    int     t;  
  
    /* Complement to obtain normal u-law value. */  
    u_val = ~u_val;  
  
    /* 
     * Extract and bias the quantization bits. Then 
     * shift up by the segment number and subtract out the bias. 
     */  
    t = ((u_val & QUANT_MASK) << 3) + BIAS;  
    t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;  
  
    return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS));  
}  
  
/* A-law to u-law conversion */  
unsigned char  
alaw2ulaw(  
    unsigned char   aval)  
{  
    aval &= 0xff;  
    return ((aval & 0x80) ? (0xFF ^ _a2u[aval ^ 0xD5]) :  
        (0x7F ^ _a2u[aval ^ 0x55]));  
}  
  
/* u-law to A-law conversion */  
unsigned char  
ulaw2alaw(  
    unsigned char   uval)  
{  
    uval &= 0xff;  
    return ((uval & 0x80) ? (0xD5 ^ (_u2a[0xFF ^ uval] - 1)) :  
        (0x55 ^ (_u2a[0x7F ^ uval] - 1)));  
}  

EasyCVR再生インターフェース

EasyCVR.png

EasyCVRは、Alibaba Cloud、Tencent Cloud、Huawei Cloud、Qiniu Cloudなどをサポートし、S3およびSwiftインターフェイスオブジェクトストレージサービス、シンプルな構成、より効率的な展開をサポートし、従来のネットワークカメラ、NVR、エ​​ンコーダー、SDKおよびその他の機器を最大限にサポートしますハードウェアデバイスの互換性を改善しました。

ビデオ関連のソリューションはすべてTSINGSEE Qingxiビデオアクセスできます。デモプログラムや直感的な体験を得るために私たちに連絡するか、自分でダウンロードしてテストすることができます

おすすめ

転載: blog.csdn.net/EasyNVS/article/details/108635318