-
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.
- Loading branch information
1 parent
b23269c
commit 48ef90c
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# ~/.config/ffscreencast/ffscreencastrc | ||
|
||
# Default video container extension | ||
# Alternatively: 'mp4' or 'avi' | ||
OUTPUT_EXT="mp4" | ||
|
||
# Default audio output codec | ||
# Alternatively: 'pcm_s16le' | ||
OUTPUT_ACODEC="aac" | ||
|
||
# Default video output codec | ||
# Alternatively: 'libx265' | ||
OUTPUT_VCODEC="libx264" | ||
|
||
# Default Screen recording arguments | ||
S_ARGS="" | ||
|
||
# Default audio recording arguments | ||
A_ARGS="-ac 2" | ||
|
||
# Default camera recording arguments | ||
C_ARGS="" | ||
|
||
# Default misc output arguments | ||
O_ARGS="-crf 0 -preset ultrafast" | ||
|
||
# Default recording behavior | ||
RECORD_S="yes" | ||
RECORD_A="no" | ||
RECORD_C="no" | ||
|
||
# What listed device number has been chosen to record? | ||
CHOSEN_S_NUM="" | ||
CHOSEN_A_NUM="" | ||
CHOSEN_C_NUM="" | ||
|