-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from patrickenfuego/binary-updates-pwsh-73
Binary & PowerShell 7.3 Updates
- Loading branch information
Showing
20 changed files
with
227 additions
and
118 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,40 @@ | ||
# These are required. | ||
# If only name is specified, it will look in your system PATH variable, which includes the current directory on Windows. | ||
# Setup instructions: https://github.com/pcroland/deew#setup-system-path-variable | ||
# If full path is specified, that will be used. | ||
ffmpeg_path = 'ffmpeg' | ||
ffprobe_path = 'ffprobe' | ||
dee_path = 'dee' | ||
temp_path = '' | ||
# empty: next to the script | ||
# relative path: from your current directory | ||
# you can also use fullpath | ||
# in any case will be created automatically if it doesn't exist already | ||
wsl = false # set this to true if you run the script in Linux but use the Windows version of DEE | ||
logo = 0 # set between 1 and 10, use the -pl/--printlogos option to see the available logos, set to 0 to disable logo | ||
show_summary = true | ||
threads = 6 # You can overwrite this with -t/--threads. The threads number will be clamped between 1 and cpu_count() - 2. | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# If this is empty, the default OS temporary directory will be used (or `temp` next to the script if you use the exe). | ||
# You can also specify an absolute path or a path relative to the current directory. | ||
temp_path = '' | ||
|
||
# Set between 1 and 10, use the -pl/--print-logos option to see the available logos, set to 0 to disable logo. | ||
logo = 0 | ||
|
||
# Specifies how many encodes can run at the same time. | ||
# It can be a number or a % compared to your number of threads (so '50%' means 4 on an 8 thread cpu). | ||
# One DEE can use 2 threads so setting '50%' can utilize all threads. | ||
# You can override this setting with -in/--instances. | ||
# The number will be clamped between 1 and cpu_count(). | ||
# With the Windows version of DEE the max will be cpu_count() - 2 or 6 due to a limitation. | ||
# examples: 1, 4, '50%' | ||
max_instances = '50%' | ||
|
||
[default_bitrates] | ||
dd_1_0 = 128 | ||
dd_2_0 = 256 | ||
dd_5_1 = 640 | ||
ddp_1_0 = 128 | ||
ddp_2_0 = 256 | ||
ddp_5_1 = 1024 | ||
ddp_7_1 = 1536 | ||
|
||
# You can toggle what sections you would like to see in the encoding summary | ||
[summary_sections] | ||
deew_info = false | ||
binaries = false | ||
input_info = false | ||
output_info = false | ||
other = false |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,29 +1,40 @@ | ||
# These are required. | ||
# If only name is specified, it will look in your system PATH variable, which includes the current directory on Windows. | ||
# Setup instructions: https://github.com/pcroland/deew#setup-system-path-variable | ||
# If full path is specified, that will be used. | ||
ffmpeg_path = 'ffmpeg' | ||
ffprobe_path = 'ffprobe' | ||
dee_path = 'dee' | ||
temp_path = '' | ||
# empty: next to the script | ||
# relative path: from your current directory | ||
# you can also use fullpath | ||
# in any case will be created automatically if it doesn't exist already | ||
wsl = false # set this to true if you run the script in Linux but use the Windows version of DEE | ||
logo = 0 # set between 1 and 10, use the -pl/--printlogos option to see the available logos, set to 0 to disable logo | ||
show_summary = true | ||
threads = 6 # You can overwrite this with -t/--threads. The threads number will be clamped between 1 and cpu_count() - 2. | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# If this is empty, the default OS temporary directory will be used (or `temp` next to the script if you use the exe). | ||
# You can also specify an absolute path or a path relative to the current directory. | ||
temp_path = '' | ||
|
||
# Set between 1 and 10, use the -pl/--print-logos option to see the available logos, set to 0 to disable logo. | ||
logo = 0 | ||
|
||
# Specifies how many encodes can run at the same time. | ||
# It can be a number or a % compared to your number of threads (so '50%' means 4 on an 8 thread cpu). | ||
# One DEE can use 2 threads so setting '50%' can utilize all threads. | ||
# You can override this setting with -in/--instances. | ||
# The number will be clamped between 1 and cpu_count(). | ||
# With the Windows version of DEE the max will be cpu_count() - 2 or 6 due to a limitation. | ||
# examples: 1, 4, '50%' | ||
max_instances = '50%' | ||
|
||
[default_bitrates] | ||
dd_1_0 = 128 | ||
dd_2_0 = 256 | ||
dd_5_1 = 640 | ||
ddp_1_0 = 128 | ||
ddp_2_0 = 256 | ||
ddp_5_1 = 1024 | ||
ddp_7_1 = 1536 | ||
|
||
# You can toggle what sections you would like to see in the encoding summary | ||
[summary_sections] | ||
deew_info = false | ||
binaries = false | ||
input_info = false | ||
output_info = false | ||
other = false |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,59 +1,40 @@ | ||
# These are required. | ||
# If only name is specified, it will look in your system PATH variable, which includes the current directory on Windows. | ||
# Setup instructions: https://github.com/pcroland/deew#setup-system-path-variable | ||
# If full path is specified, that will be used. | ||
ffmpeg_path = 'ffmpeg' | ||
ffprobe_path = 'ffprobe' | ||
dee_path = 'dee' | ||
temp_path = '' | ||
# empty: next to the script | ||
# relative path: from your current directory | ||
# you can also use fullpath | ||
# in any case will be created automatically if it doesn't exist already | ||
wsl = false # set this to true if you run the script in Linux but use the Windows version of DEE | ||
logo = 0 # set between 1 and 10, use the -pl/--printlogos option to see the available logos, set to 0 to disable logo | ||
show_summary = true | ||
threads = 6 # You can overwrite this with -t/--threads. The threads number will be clamped between 1 and cpu_count() - 2. | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# If this is empty, the default OS temporary directory will be used (or `temp` next to the script if you use the exe). | ||
# You can also specify an absolute path or a path relative to the current directory. | ||
temp_path = '' | ||
|
||
# Set between 1 and 10, use the -pl/--print-logos option to see the available logos, set to 0 to disable logo. | ||
logo = 0 | ||
|
||
# Specifies how many encodes can run at the same time. | ||
# It can be a number or a % compared to your number of threads (so '50%' means 4 on an 8 thread cpu). | ||
# One DEE can use 2 threads so setting '50%' can utilize all threads. | ||
# You can override this setting with -in/--instances. | ||
# The number will be clamped between 1 and cpu_count(). | ||
# With the Windows version of DEE the max will be cpu_count() - 2 or 6 due to a limitation. | ||
# examples: 1, 4, '50%' | ||
max_instances = '50%' | ||
|
||
[default_bitrates] | ||
dd_1_0 = 128 | ||
dd_2_0 = 256 | ||
dd_5_1 = 640 | ||
ddp_1_0 = 128 | ||
ddp_2_0 = 256 | ||
ddp_5_1 = 1024 | ||
ddp_7_1 = 1536 | ||
|
||
# You can toggle what sections you would like to see in the encoding summary | ||
[summary_sections] | ||
deew_info = false | ||
binaries = false | ||
input_info = false | ||
output_info = false | ||
other = false |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
Oops, something went wrong.