HTML视频中是否有一个标记以使高度和宽度最小?我想知道是否有可能。预先感谢。
答案 0 :(得分:0)
您可以像这样设置视频标签的宽度和高度:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
答案 1 :(得分:0)
您可以在尺寸范围内使用百分比。例如:
import time
import matplotlib.pyplot as plt
import numpy
fig = plt.figure()
for i in range(10):
x = numpy.random.rand(100000)
y = numpy.random.rand(100000)
plt.plot(x, y, '.')
t = time.time()
fig.savefig('ZZZZ%d.jpg' % i)
elapsed = time.time() - t
print("%.2fs" % elapsed)