platypush/platypush/backend/http/static/js/plugins/camera.ffmpeg/index.js

16 lines
296 B
JavaScript
Raw Normal View History

2020-09-27 03:09:14 +02:00
Vue.component('camera-ffmpeg', {
template: '#tmpl-camera-ffmpeg',
mixins: [cameraMixin],
methods: {
startStreaming: function() {
this._startStreaming('ffmpeg');
},
capture: function() {
this._capture('ffmpeg');
},
},
});