公司情况
仁圣同实业有限公司有十五年的经验,专门做校园家具。公司有自己很大的生产车间,从设计到安装都能自己做。这些年来,公司为上千所学校提供了家具,包括中小学和大学。产品种类很多,像上下铺铁床、学生课桌椅、食堂餐桌椅这些都做。车间里用加厚的冷轧钢管做床架,桌椅的板材也选用环保的材料。常规尺寸的家具仓库里都有现货,不用等很久就能发货。

联系方式
公司名:{仁圣同校具} 联系人:{关先生} 电话:{18939522550} 地址:{四川巴中经济开发区} 本地仓储就近配货,支持配送巴中市全域:巴州、恩阳、通江、南江、平昌
生产与库存
车间里有专门的生产线,可以自己冲压钢制床架。桌椅的板材用的是E0级的,没什么刺鼻的味道。仓库里常年放着很多做好的床架和桌椅,常用的规格都有货。接到订单后,当天或者第二天就能安排装车发货。如果需要特别的尺寸或者颜色,也可以按客户给的图纸来做。
配套文件
产品出厂时会带着原厂的合格证。第三方做的环保板材检测报告也会一起给。这些资料都是正规的,学校拿去给教育局看,验收的时候用得上。除了这些,公司也能提供招投标需要的全套资质文件。客户把场地尺寸发过来,还能免费帮忙出一份教室或者宿舍的家具摆放--- title: How to make a video from a sequence of images date: 2023-10-12 21:00:00 +0530 categories: [Tips & Tricks, How to] tags: [ffmpeg, video, image]
I used this command to create a video from a sequence of images, using ffmpeg:
ffmpeg -framerate 1 -pattern_type glob -i '*.jpg' -c:v libx264 -pix_fmt yuv420p output.mp4

Here's a breakdown of the command:
-framerate 1: Sets the frame rate to 1 frame per second. This means each image will be displayed for 1 second in the video. You can adjust this value to change the speed of the video.-pattern_type glob -i '*.jpg': Uses a glob pattern to match all.jpgfiles in the current directory as input. You can change the pattern to match your specific image files.-c:v libx264: Specifies the video codec to use.libx264is a widely supported codec that produces good quality videos.-pix_fmt yuv420p: Sets the pixel format toyuv420p, which is compatible with most video players and devices.output.mp4: The name of the output video file. You can change this to whatever you like.
You can also adjust the frame rate, codec, and other settings to suit your needs. For example, to create a video with a frame rate of 24 frames per second, you would use -framerate 24.
Here are some additional tips for creating videos from images:
- Make sure all of your images are the same size. If they are not, ffmpeg will resize them to fit the first image, which may result in distorted images.
- If you want to add audio to your video, you can use the
-ioption to specify an audio file. For example,ffmpeg -framerate 1 -pattern_type glob -i '*.jpg' -i audio.mp3 -c:v libx264 -c:a aac -pix_fmt yuv420p output.mp4. - You can also use ffmpeg to add text, watermarks, and other effects to your video. See the ffmpeg documentation for more information.
I hope this helps! Let me know if you have any other questions.




