Skip to content

Commit

Permalink
docs: remove useless video from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
OrbisK committed Nov 26, 2024
1 parent 63007da commit 9678e65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/basic-example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const {
pause,
resume,
state,
} = useMediaRecorder({ constraints: { audio: true, video: true } })
} = useMediaRecorder({ constraints: { audio: true } })
const length = computed(() => {
return data.value.length ?? 0
Expand Down
2 changes: 1 addition & 1 deletion docs/timeslice-example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const {
pause,
resume,
state,
} = useMediaRecorder({ constraints: { audio: true, video: true } })
} = useMediaRecorder({ constraints: { audio: true } })
const timeslice = ref(1000)
Expand Down

0 comments on commit 9678e65

Please sign in to comment.