Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个jsp页面供用户上传视频。 我可以将上传的视频作为 blob 存储在数据存储中 ,但我也想从上传的视频中创建缩略图。 如何创建缩略图?
根据您在 Java 中用于操作 MIME 对象的类,您应该能够从视频中获取随机帧(例如BufferedImage),然后将其调整为所需的缩略图大小。