forked from ammen99/wf-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use VP8+Vorbis on WebM for recordings (ammen99#202)
This is commonly supported across a wide variety of social media services and is also the default in other screen recording tools on Linux (e.g. GNOME's built-in screen recording software).
- Loading branch information
1 parent
459c4e2
commit a40f9ad
Showing
4 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
option('default_codec', type: 'string', value: 'libvpx-vp9', description: 'Codec that will be used by default') | ||
option('default_codec', type: 'string', value: 'libvpx', description: 'Codec that will be used by default') | ||
option('default_framerate', type: 'integer', value: 60, description: 'Video framerate that will be used by default') | ||
option('default_audio_codec', type: 'string', value: 'libopus', description: 'Audio codec that will be used by default') | ||
option('default_audio_codec', type: 'string', value: 'libvorbis', description: 'Audio codec that will be used by default') | ||
option('default_audio_sample_rate', type: 'integer', value: 48000, description: 'Audio sample rate that will be used by default') | ||
option('default_container_format', type: 'string', value: 'mkv', description: 'Container file format that will be used by default') | ||
option('default_container_format', type: 'string', value: 'webm', description: 'Container file format that will be used by default') | ||
option('fallback_audio_sample_fmt', type: 'string', value: 's16', description: 'Fallback audio sample format that will be used if wf-recorder cannot determine the sample formats supported by a codec') | ||
option('pulse', type: 'feature', value: 'auto', description: 'Enable Pulseaudio') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters