1. ホーム
  2. Web制作
  3. html5

recorder.js Html5ベースの録画機能実装

2022-01-12 12:49:43

レコーダー.js

マイクのHTML5ベースの録音機能で、出力形式はmp3ファイルです。

プリアンブル

H5ネイティブAPIに全面的に依存
関係するAPI WebRTC、AudioContext、Worker、Video/Audio API、Blob、URL

互換性

    {について Chrome、FF、Edge、QQ、360(注:現在IEとSafariのフルバージョンは非対応です) {を使用します。 {について Chrome 47+とQQブラウザはHTTPSのサポートが必要です。 {を使用します。 {を使用します。 FF、Edge、360などのブラウザで体験していただくか、localhost経由でローカルにプロジェクトをダウンロードしてください。 

使用方法

//Initialize the UIView
UIView *mView = [[UIView alloc] init];
//position of the UIView
mView.frame = CGRectMake(0, 0, 100, 100);
//the background color of the UIView
mView.backgroundColor = [UIColor redColor];
//add subview
[self.view addSubview: mView];

API

//start the animation
[UIView beginAnimations: nil context: nil];
//set the animation delay
[UIView setAnimationDelay: 2];
//set the animation time
[UIView setAnimationDuration: 5];
//modify the x value of mView
CGRect newFlame = mView.frame;
newFlame.origin.x = 200;
mView.frame = newFlame;
// commit the animation
[UIView commitAnimations];

この記事はHtml5録画機能に基づいてrecorder.jsについて紹介されています、より関連するHtml5録画機能の内容は、スクリプトハウスの過去の記事を検索してくださいまたは以下の関連記事を参照してください、私はあなたが将来的にもっとスクリプトハウスをサポートして願っています!。