This
is no quicker to complete than
(same core number).
And the second command runs slower until the first has completed.
Both suggest that -processor= is not working. That both conversions are running on the the same processor (core).
This is a four-core CPU running Windows 7 64-bit Pro.
Can anyone suggest the cause, and a remedy? I want to do parallel conversions from a batch file.
Thank you.
Code:
start "" CoreConverter.exe -infile=\temp\1.wma -outfile=\temp\1.wav -processor="0" -convert_to="Wave" CoreConverter.exe -infile=\temp\2.wma -outfile=\temp\2.wav -processor="1" -convert_to="Wave"
Code:
start "" CoreConverter.exe -infile=\temp\1.wma -outfile=\temp\1.wav -processor="0" -convert_to="Wave" CoreConverter.exe -infile=\temp\2.wma -outfile=\temp\2.wav -processor="0" -convert_to="Wave"
And the second command runs slower until the first has completed.
Both suggest that -processor= is not working. That both conversions are running on the the same processor (core).
This is a four-core CPU running Windows 7 64-bit Pro.
Can anyone suggest the cause, and a remedy? I want to do parallel conversions from a batch file.
Thank you.
Comment