forked from coolstar/RecordMyScreen
-
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.
Add Settings Bundle, Use InAppSettingsKit as a submodule, Add support…
… for multiple video recordings. Fix crash on 2nd recording.
- Loading branch information
Showing
9 changed files
with
298 additions
and
17 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,3 @@ | ||
[submodule "InAppSettingsKit"] | ||
path = InAppSettingsKit | ||
url = https://github.com/futuretap/InAppSettingsKit.git |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,113 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>PreferenceSpecifiers</key> | ||
<array> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSGroupSpecifier</string> | ||
<key>Title</key> | ||
<string>Recording Settings</string> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSMultiValueSpecifier</string> | ||
<key>Title</key> | ||
<string>Record</string> | ||
<key>Key</key> | ||
<string>record</string> | ||
<key>DefaultValue</key> | ||
<integer>0</integer> | ||
<key>Titles</key> | ||
<array> | ||
<string>Screen Only</string> | ||
</array> | ||
<key>Values</key> | ||
<array> | ||
<integer>0</integer> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSGroupSpecifier</string> | ||
<key>Title</key> | ||
<string>Video Settings</string> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSMultiValueSpecifier</string> | ||
<key>Title</key> | ||
<string>Video Size</string> | ||
<key>Key</key> | ||
<string>vidsize</string> | ||
<key>DefaultValue</key> | ||
<integer>1</integer> | ||
<key>Titles</key> | ||
<array> | ||
<string>Native</string> | ||
<string>Half</string> | ||
</array> | ||
<key>Values</key> | ||
<array> | ||
<integer>1</integer> | ||
<integer>0</integer> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSGroupSpecifier</string> | ||
<key>Title</key> | ||
<string>Audio Settings</string> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSMultiValueSpecifier</string> | ||
<key>Title</key> | ||
<string>Sample Rate</string> | ||
<key>Key</key> | ||
<string>samplerate</string> | ||
<key>DefaultValue</key> | ||
<integer>44100</integer> | ||
<key>Titles</key> | ||
<array> | ||
<string>44100 Hz</string> | ||
<string>22050 Hz</string> | ||
<string>16000 Hz</string> | ||
<string>11025 Hz</string> | ||
<string>8000 Hz</string> | ||
</array> | ||
<key>Values</key> | ||
<array> | ||
<integer>44100</integer> | ||
<integer>22050</integer> | ||
<integer>16000</integer> | ||
<integer>11025</integer> | ||
<integer>8000</integer> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>Type</key> | ||
<string>PSMultiValueSpecifier</string> | ||
<key>Title</key> | ||
<string>Channels</string> | ||
<key>Key</key> | ||
<string>channels</string> | ||
<key>DefaultValue</key> | ||
<integer>2</integer> | ||
<key>Titles</key> | ||
<array> | ||
<string>Mono</string> | ||
<string>Stereo</string> | ||
</array> | ||
<key>Values</key> | ||
<array> | ||
<integer>1</integer> | ||
<integer>2</integer> | ||
</array> | ||
</dict> | ||
</array> | ||
<key>StringsTable</key> | ||
<string>Root</string> | ||
</dict> | ||
</plist> |
Binary file not shown.