美文网首页
ionic 录制视频

ionic 录制视频

作者: 菠菜盼娣 | 来源:发表于2018-11-26 18:45 被阅读0次

    cordova-plugin-media-capture

    1 安装插件 

    cordova plugin add cordova-plugin-media-capture

    2 具体用法

    ```

    <div class="item item-text-wrap  text-center">

                <button class="button button-dark" ng-click="captureVideo()">captureVideo</button>

    </div>

    $scope.captureVideo = function () {

          var options = { limit: 1, duration: 15 };

          // limit录制次数

          $cordovaCapture.captureVideo(options).then(function (videoData) {

            // Success! Video data is here

            alert(videoData);

            $scope.message = videoData 

          }, function (err) {

            // An error occurred. Show a message to the user

          });

        }

    ```

    注: 需在 app.js中引入  $cordovaCapture

    相关文章

      网友评论

          本文标题:ionic 录制视频

          本文链接:https://www.haomeiwen.com/subject/ysciqqtx.html