Skip to content

Commit

Permalink
remove note about split webm in chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Oct 5, 2017
1 parent fb3a38c commit 46f2853
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,6 @@ include a `video` element:
<video id="myVideo" class="video-js vjs-default-skin"></video>
```

Note that recording both audio and video into a single WebM file is currently
only supported in Mozilla Firefox >= 29 and Chrome >= 49. In older versions of
the Chrome browser two separate Blob objects are created: one for audio and one
for video.

### Audio-only

![Audio-only screenshot](examples/assets/img/audio-only.png?raw=true "Audio-only screenshot")
Expand Down Expand Up @@ -306,10 +301,6 @@ player.on('finishRecord', function() {
});
```

Note that in the Chrome browser `player.recordedData` returns an object with
`audio` and `video` properties when recording both audio/video. In Firefox
it returns a single WebM Blob object containing both audio and video.

### Save data

Use the `saveAs` method to show a 'Save as' browser dialog where the user can
Expand Down
1 change: 0 additions & 1 deletion src/js/videojs.record.js
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,6 @@ class Record extends Plugin {
* Show save as dialog in browser so the user can store the recorded media
* locally.
*
* @private
* @param {object} name - Object with one or more names for the particular
* blob(s) you want to save. File extensions are added automatically.
* For example: {'video': 'name-of-video-file'}. Supported keys are
Expand Down

0 comments on commit 46f2853

Please sign in to comment.