38 lines
1001 B
TypeScript
38 lines
1001 B
TypeScript
import { Component, NgZone } from '@angular/core';
|
|
import { WebView } from '@ionic-native/ionic-webview/ngx';
|
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
|
|
declare const capture: any;
|
|
|
|
@Component({
|
|
selector: 'app-home',
|
|
templateUrl: 'home.page.html',
|
|
styleUrls: ['home.page.scss'],
|
|
})
|
|
export class HomePage {
|
|
data: any = {};
|
|
video: any = {
|
|
ready: false,
|
|
};
|
|
|
|
constructor(private ngZone: NgZone, private webView: WebView, private sanitizer: DomSanitizer) { }
|
|
|
|
record() {
|
|
capture.capture('',
|
|
(rst: any) => {
|
|
this.ngZone.run(() => {
|
|
this.data = rst;
|
|
if (!rst.cancelled) {
|
|
this.video.url = this.sanitizer.bypassSecurityTrustResourceUrl(this.webView.convertFileSrc(rst));
|
|
// this.video.thumbnail = this.webView.convertFileSrc(rst.thumbnail);
|
|
this.video.ready = true;
|
|
}
|
|
});
|
|
},
|
|
(err: any) => {
|
|
console.log(err);
|
|
alert(JSON.stringify(err));
|
|
});
|
|
}
|
|
}
|