mirror of
https://github.com/MillironX/vimeo-bitrate-chooser.git
synced 2024-12-28 02:11:42 -05:00
17 lines
No EOL
551 B
Matlab
17 lines
No EOL
551 B
Matlab
function DiCodecDisplay(frameHeight, frameWidth, frameRate, blnMac)
|
|
clc
|
|
|
|
% Check if the user has a Mac computer or not
|
|
if blnMac == 1
|
|
strDi = 'ProRes Proxy';
|
|
else
|
|
strDi = 'Cineform, Low-Quality';
|
|
end
|
|
|
|
% Display the results
|
|
disp('Render your video with the following settings:')
|
|
disp(['Codec: ' strDi])
|
|
disp(['Frame Height: ' num2str(round(frameHeight)) ' px'])
|
|
disp(['Frame Width: ' num2str(round(frameWidth)) ' px'])
|
|
disp(['Framerate: ' num2str(frameRate) 'fps'])
|
|
end |