Resize video
From UBot Studio
(Difference between revisions)
(Created page with "This command is a Video Command in the UBot Extended Library. This command will resize the video according to the specified width and height. '''Input vi...") |
|||
Line 7: | Line 7: | ||
'''Output video file:''' The resulting resized video(ex. resized.mp4) | '''Output video file:''' The resulting resized video(ex. resized.mp4) | ||
− | '''New width:''' | + | '''New width:''' The width of the video |
− | '''New Height:''' | + | '''New Height:''' The height of the video |
== Example == | == Example == | ||
<pre> | <pre> | ||
+ | resize video("C:\\Users\\Downloads\\marcelx3.mp4","C:\\Users\\Downloads\\resized_marcelx3.mp4",320,240) | ||
</pre> | </pre> | ||
+ | |||
Running the script will produce the resized video at the specified width and height. | Running the script will produce the resized video at the specified width and height. |
Revision as of 18:01, 20 April 2017
This command is a Video Command in the UBot Extended Library.
This command will resize the video according to the specified width and height.
Input video file: The video being resized
Output video file: The resulting resized video(ex. resized.mp4)
New width: The width of the video
New Height: The height of the video
Example
resize video("C:\\Users\\Downloads\\marcelx3.mp4","C:\\Users\\Downloads\\resized_marcelx3.mp4",320,240)
Running the script will produce the resized video at the specified width and height.