I insert .mov clips, which are sometimes larger than the place where I show it, so I want to resize the clip. Tried with widthand height, but this only changes the area to display it; It does not resize the actual movie.
width
height
Can I resize a movie? If so, how?
Yes, you need an attribute scale:
scale
<embed src="sample.mov" width="200" height="240" scale="tofit">
There is a complete link for the QuickTime video attributes here .
Sometimes the scale attribute does not work. This will help to place the embed element in the object element.
<object height="240" width="200"><embed src="sample.mov" height="240" width="200"/></object>
, , embed.
Source: https://habr.com/ru/post/1733885/More articles:Why do I get different values ββwhen reading bytes from NSData depending on the order in which I get the bytes? - objective-cC # Get variable name in string - c #Can I create interfaces or abstract classes in C # that declare methods with a parameter of an unknown type? - inheritanceIRQL device driver and threaded / context switches - windowsPython ConfigParser: how to configure parameters specified in a specific section (and not by default) - pythonComparison of performance of ex stored procedure and new version - performanceHow to scroll around unrequited programs in windows? - c #Database partitioning in SQL Server 2005 - sqlReliable monitoring of current CPU usage - pythonThe "_getTable" method does not exist and did not fall into __call () - phpAll Articles