Skip to content

Commit

Permalink
packages/record_screen: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 18, 2025
1 parent 27c5168 commit f3c7820
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/record_screen/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ writeShellApplication {
}
trap OnExit EXIT
# Set umask so tmp files are only acessible to the user
# Set umask so tmp files are only accessible to the user
umask 177
if [ "$1" = "area" ]; then
Expand Down Expand Up @@ -89,13 +89,13 @@ writeShellApplication {
# Append .gif to the SavePath if it's missing
#[[ $SavePath =~ \.gif$ ]] || SavePath+='.gif'
# Produce a pallete from the video file
# Produce a palette from the video file
#ffmpeg -i "$TmpRecordPath" -filter_complex "palettegen=stats_mode=full" "$TmpPalettePath" -y || exit
# Return umask to default
umask 022
# Use pallete to produce a gif from the video file
# Use palette to produce a gif from the video file
# ffmpeg -i "$TmpRecordPath" -i "$TmpPalettePath" -filter_complex "paletteuse=dither=sierra2_4a" "$SavePath" -y || exit
'';
}

0 comments on commit f3c7820

Please sign in to comment.