Skip to content

Commit

Permalink
fix: Fix h264 videoCodec type for RecordVideoOptions (#1808)
Browse files Browse the repository at this point in the history
  • Loading branch information
iketiunn authored Sep 17, 2023
1 parent 3cf42a0 commit 18c7034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/src/VideoFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface RecordVideoOptions {
* - `h264`: Widely supported, but might be less efficient, especially with larger sizes or framerates.
* - `h265`: The HEVC (High-Efficient-Video-Codec) for higher efficient video recordings.
*/
videoCodec?: 'h265' | 'h265';
videoCodec?: 'h264' | 'h265';
}

/**
Expand Down

1 comment on commit 18c7034

@vercel
Copy link

@vercel vercel bot commented on 18c7034 Sep 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.